:root {
    --card-bg: #ffffff;
    --border-color: rgba(228, 228, 231, 0.8);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --radius-card: 24px;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;

    /* Base background */
    background-color: #f1f5f9;
    background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
    background-size: 28px 28px;
}

/* ================= SPOTLIGHT EFFECT ================= */
.spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darken the edges, keep the center bright */
    background: radial-gradient(circle at center, transparent 0%, rgba(241, 245, 249, 0.9) 70%, #e2e8f0 100%);
    pointer-events: none;
    z-index: 1;
}

/* ================= BACKGROUND CLOUDS ================= */
.clouds-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.cloud {
    position: absolute;
    color: #ffffff;
    /* Soft shadow for the clouds */
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
    opacity: 0.8;
    animation: drift linear infinite;
}

.cloud svg {
    width: 100%;
    height: auto;
    fill: currentColor;
}

/* Individual Cloud Styling & Animation */
.cloud-1 {
    width: 120px;
    top: 15%;
    left: -150px;
    animation-duration: 35s;
    animation-delay: 0s;
    opacity: 0.9;
}

.cloud-2 {
    width: 80px;
    top: 30%;
    left: -100px;
    animation-duration: 45s;
    animation-delay: 5s;
    opacity: 0.6;
}

.cloud-3 {
    width: 150px;
    top: 55%;
    left: -200px;
    animation-duration: 40s;
    animation-delay: 15s;
    opacity: 0.85;
}

.cloud-4 {
    width: 90px;
    top: 70%;
    left: -120px;
    animation-duration: 50s;
    animation-delay: 2s;
    opacity: 0.5;
}

.cloud-5 {
    width: 110px;
    top: 10%;
    left: -150px;
    animation-duration: 38s;
    animation-delay: 20s;
    opacity: 0.7;
}

@keyframes drift {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100vw + 200px));
    }
}

/* ================= MAIN CARD (SPOTLIGHTED) ================= */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    padding: 56px 40px;
    width: 100%;
    text-align: center;
    /* Stronger shadow to make it pop out of the background */
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 10px rgba(255, 255, 255, 0.4); /* subtle glowing border ring */
    backdrop-filter: blur(8px); /* Optional: if clouds pass behind, they blur slightly */
}

.icon-circle {
    width: 76px;
    height: 76px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: #334155;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

.description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 480px) {
    .card {
        padding: 40px 24px;
    }
    
    .title {
        font-size: 1.5rem;
    }
}

/* ================= FOOTER ================= */
.footer {
    position: relative;
    z-index: 10;
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    letter-spacing: 0.02em;
}

.footer strong {
    color: var(--text-primary);
    font-weight: 700;
}
