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

body {
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at center, #111111 0%, #000000 100%);
    color: #FFD700;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    text-align: center;
}

#dollars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.content-wrapper {
    z-index: 10;
    position: relative;
    padding: 20px;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.premium-glow {
    font-size: 5.5rem;
    color: #FFF275; 
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 900;
    text-shadow: 
        0 0 10px #FFEA00,
        0 0 20px #FFD700,
        0 0 40px #FFA500,
        0 0 80px #FF8C00,
        -40px 0 50px rgba(255, 215, 0, 0.8),
        40px 0 50px rgba(255, 215, 0, 0.8);
}

.tagline {
    font-size: 1.8rem;
    color: #E5C158;
    font-weight: 700;
    margin: 10px 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1);
}

.sub-text {
    font-size: 1.1rem;
    color: #cccccc;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    font-weight: 400;
    max-width: 550px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.cta-btn {
    background: linear-gradient(90deg, #DAA520, #FFDF73, #DAA520);
    background-size: 200%;
    border: none;
    padding: 20px 60px;
    font-size: 1.3rem;
    font-weight: 900;
    color: #111;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 223, 115, 0.4);
    background-position: right center;
}

.dollar {
    position: absolute;
    color: #FFD700;
    font-weight: bold;
    opacity: 0.25;
    text-shadow: 0 0 10px #DAA520;
    animation: fly linear infinite;
    z-index: 1;
}

@keyframes fly {
    0% { transform: translateY(-10vh) rotate(0deg); opacity: 0.8; }
    100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 0 15px;
    }
    
    .premium-glow {
        font-size: 3.2rem;
        letter-spacing: 2px;
        text-shadow: 
            0 0 10px #FFEA00,
            0 0 20px #FFD700,
            0 0 30px #FFA500,
            -20px 0 30px rgba(255, 215, 0, 0.8), 
            20px 0 30px rgba(255, 215, 0, 0.8);
    }
    
    .tagline {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .sub-text {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }
    
    .cta-btn {
        font-size: 1.1rem;
        padding: 16px 30px;
        width: 100%;
        max-width: 300px;
    }
}
