:root {
            --hot-pink: #e61e80; 
            --jet-black: #0b0b0b;
            --card-bg: #161616;
            --text-gray: #b0b0b0;
        }

        body {
            margin: 0;
            font-family: 'Montserrat', sans-serif;
            background-color: var(--jet-black);
            color: white;
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        /* Slim Navigation */
        nav {
            padding: 5px 20px;
            background: rgba(0,0,0,0.95);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--hot-pink);
            display: flex;
            justify-content: center;
            align-items: center;
            height: 60px;
        }

        .nav-logo { max-height: 50px; width: auto; filter: drop-shadow(0 0 5px var(--hot-pink)); }

        /* Hero Section */
        .hero {
            height: 75vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            /* Added a solid background color backup for mobile */
            background-color: #1a020d; 
            background: linear-gradient(to bottom, rgba(0,0,0,0.5), var(--jet-black)), 
                        url('cheer-hero.jpeg'); 
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        /* MOBILE FIX: Disables 'fixed' background which breaks on iOS/Android */
        @media (max-width: 768px) {
            .hero {
                background-attachment: scroll !important;
                height: 60vh; /* Slightly shorter for better mobile framing */
            }
        }

        /* Flash Animation for "Enchanted" */
        @keyframes flash {
            0%, 100% { color: white; text-shadow: 0 0 10px #fff; }
            50% { color: var(--hot-pink); text-shadow: 0 0 20px var(--hot-pink), 0 0 40px var(--hot-pink); }
        }

        .cursive {
    font-family: 'Pacifico', cursive;
    text-transform: none;
    font-size: clamp(3.5rem, 12vw, 7rem);
    display: block;
    line-height: 1.1;
    margin-bottom: -10px;
    animation: flash 3s infinite ease-in-out;
    /* ADD THESE TWO LINES */
    text-shadow: 2px 2px 15px rgba(0,0,0,0.8), 0 0 20px rgba(230, 30, 128, 0.5);
    letter-spacing: 2px; /* Adds a tiny bit of breathing room between letters */
}

        .pink-solid {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2rem, 8vw, 5rem);
            color: var(--hot-pink);
            text-shadow: 0 0 15px rgba(230, 30, 128, 0.8);
            letter-spacing: 3px;
        }

        /* Membership Section Styles */
        .main-subscription {
            max-width: 850px;
            margin: 0 auto 60px;
            background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
            border: 1px solid #333;
            border-left: 6px solid var(--hot-pink);
            padding: 50px;
            border-radius: 0 30px 30px 0;
            box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
        }

        @media (max-width: 600px) {
            .main-subscription { padding: 30px; border-radius: 0; }
            .price-tag { font-size: 3.5rem !important; }
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 25px 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            text-align: left;
        }

        .feature-list li {
            position: relative;
            padding-left: 30px;
            font-weight: 500;
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--hot-pink);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .price-tag { font-size: 5rem; font-family: 'Oswald', sans-serif; color: var(--hot-pink); line-height: 1; }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto 80px;
            padding: 0 20px;
        }

        .dark-card { 
            background: rgba(255, 255, 255, 0.03); 
            padding: 35px; 
            border-radius: 20px; 
            border: 1px solid #222;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .dark-card:hover { border-color: var(--hot-pink); transform: translateY(-5px); background: rgba(230, 30, 128, 0.05); }
        .dark-card h3 { color: var(--hot-pink); font-family: 'Oswald', sans-serif; margin-top: 0; font-size: 1.5rem; letter-spacing: 1px; }

        /* Global Glow & Title Styles */
        .section-title { text-align: center; font-family: 'Oswald', sans-serif; font-size: 2.5rem; margin: 40px 0; text-transform: uppercase; }
        .pink-glow { color: var(--hot-pink); text-shadow: 0 0 15px rgba(230, 30, 128, 0.7); }

        /* Form Sections */
        .form-section { padding: 80px 20px; text-align: center; }
        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background: #fff;
            padding: 10px;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            overflow: hidden;
        }
        .appointment-box { min-height: 850px; }

        /* Primary Buttons */
        .btn-main {
            background: var(--hot-pink);
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            border-radius: 5px;
            display: inline-block;
            margin: 10px;
            transition: 0.3s;
        }
        .btn-main:hover { background: white; color: var(--hot-pink); }

        /* Contact Section */
        .contact-section { padding: 80px 20px; background: linear-gradient(to top, #000, var(--card-bg)); text-align: center; border-top: 1px solid #111; }
        .contact-card { max-width: 600px; margin: 0 auto; padding: 40px; border-radius: 20px; border: 1px solid var(--hot-pink); background: rgba(255, 255, 255, 0.02); }
        .btn-text { background: white; color: black; padding: 18px 45px; text-decoration: none; font-family: 'Oswald', sans-serif; font-size: 1.3rem; border-radius: 50px; display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; transition: 0.3s; }
        .btn-text:hover { background: var(--hot-pink); color: white; transform: scale(1.05); }

        footer { text-align: center; padding: 60px; color: #444; border-top: 1px solid #111; }
    