* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 600px;
}

.logo {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.logo span {
    color: #ff9a9e;
}

h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: white;
    outline: none;
    font-size: 1rem;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

button {
    background: #fff;
    color: #764ba2;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}

button:hover {
    transform: scale(1.05);
    background: #f0f0f0;
}

.social-links {
    margin-top: 50px;
}

.social-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    h2 { font-size: 2rem; }
    .subscribe-form {
        flex-direction: column;
        background: transparent;
        border: none;
    }
    input[type="email"] {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        margin-bottom: 10px;
    }
}