@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    /* Smooth radial gradient matching the FIRST image */
    background-color: #0f0a14;
    background-image: 
        radial-gradient(circle at 35% 45%, rgba(131, 48, 158, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 65% 55%, rgba(65, 23, 90, 0.15) 0%, transparent 60%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden; 
}

.header {
    padding: 40px 60px;
    width: 100%;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.logo .pink, .title .pink {
    color: #ff52a3; /* Exact pink from the first image */
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    z-index: 1;
    animation: fadeIn 1s ease-out;
}

.title {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-title {
    /* Smooth left-to-right gradient exactly like the first image */
    background: linear-gradient(to right, #ffffff 15%, #ff52a3 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subtitle {
    font-size: 1.25rem;
    color: #a8a0b0;
    margin-bottom: 50px;
    line-height: 1.6;
    font-weight: 500;
    max-width: 650px;
}

.actions {
    display: flex;
    justify-content: center;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 45px rgba(124, 58, 237, 0.7);
    background: linear-gradient(135deg, #b366ff, #8a4bf5);
}

.button:active {
    transform: translateY(1px);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.btn-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.footer {
    padding: 20px 60px;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    letter-spacing: 1px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header {
        padding: 15px;
        text-align: center;
    }

    .logo {
        font-size: 1.2rem;
    }

    .title {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .subtitle {
        font-size: 0.85rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .button {
        padding: 10px 24px;
        font-size: 0.95rem;
    }

    .btn-icon {
        width: 22px;
        height: 22px;
    }

    .footer {
        padding: 15px;
        text-align: center;
        font-size: 0.75rem;
    }
}
