        :root {
            --dsa-red: #E02424;
            --dsa-dark-red: #B91C1C;
            --dark: #111827;
            --darker: #030712;
            --light: #F9FAFB;
            --gray: #4B5563;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            scroll-behavior: smooth; 
        }

        /* --- STICKY NAVIGATION --- */
        nav {
            background-color: var(--darker);
            color: white;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .nav-logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .nav-logo {
            height: 40px; 
            width: auto;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            margin-left: 2rem;
            font-weight: 700;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--dsa-red);
        }

        /* --- HERO SECTION --- */
        .hero {
            background-image: linear-gradient(rgba(17, 24, 39, 0.85), rgba(17, 24, 39, 0.85)), url('images/hero-bg.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 5%;
            text-align: center;
            min-height: 70vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero p {
            font-size: 1.25rem;
            max-width: 800px;
            margin-bottom: 2.5rem;
            color: #D1D5DB;
        }

        /* --- BUTTONS --- */
        .btn {
            display: inline-block;
            background: var(--dsa-red);
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 700;
            text-transform: uppercase;
            transition: transform 0.2s, background 0.3s;
        }

        .btn:hover {
            background: var(--dsa-dark-red);
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid white;
            margin-left: 1rem;
        }

        .btn-outline:hover {
            background: white;
            color: var(--dark);
        }

        /* --- MAIN CONTENT SECTIONS --- */
        .section {
            padding: 6rem 5%;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--darker);
        }

        /* --- TWO COLUMN ABOUT --- */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .about-image {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            border-bottom: 6px solid var(--dsa-red);
        }

        .lead-text {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dsa-red);
        }

        /* --- ACTION CARDS GRID --- */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            border-top: 4px solid var(--dsa-red);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        /* --- FOOTER --- */
        footer {
            background: var(--darker);
            color: white;
            text-align: center;
            padding: 4rem 5%;
        }

        footer p {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
        }

        footer a {
            color: var(--dsa-red);
            text-decoration: none;
            font-weight: 700;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* Mobile adjustments */
        @media (max-width: 768px) {
            .about-grid { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2.5rem; }
            .nav-links { display: none; } 
            .btn-outline { margin-left: 0; margin-top: 1rem; display: block; }
        }

        /* --- SPLASH MODAL STYLES --- */
.splash-overlay {
    display: none; 
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999; 
    justify-content: center;
    align-items: center;
}

.splash-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.splash-content img {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    cursor: pointer;
    transition: transform 0.2s;
}

.splash-content img:hover {
    transform: scale(1.02);
}

.close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #E62931; 
    color: white;
    font-size: 28px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
    transition: background 0.2s;
    z-index: 10000;
}

.close-btn:hover { 
    background: #A00000; 
}

/* ==========================================================================
   Horizontal Scrolling Video Carousel
   ========================================================================== */
.video-carousel {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 0 1rem 1.5rem 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

/* Individual Video Card Frame */
.video-item {
    flex: 0 0 auto;
    width: 85vw;          /* Leaves 15% of the screen peeking on mobile as a visual cue to swipe */
    max-width: 560px;     /* Locks standard YouTube dimensions on large desktop views */
    scroll-snap-align: center;
}

/* 16:9 Aspect Ratio Container */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Custom Scrollbar styling for desktop trackpads */
.video-carousel::-webkit-scrollbar {
    height: 8px;
}
.video-carousel::-webkit-scrollbar-track {
    background: #F3F4F6;
    border-radius: 10px;
}
.video-carousel::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 10px;
}
.video-carousel::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}

/* ==========================================================================
   Form & Action Network Styling
   ========================================================================== */

/* 1. Style the Labels */
#join form label {
    font-weight: 700;
    color: var(--dark);
    display: block;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

/* 2. Style the Input Text Boxes */
#join form input[type="text"],
#join form input[type="email"],
#join form input[type="tel"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #D1D5DB;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background-color: var(--light);
    color: var(--dark);
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* 3. Add the Red Glow on Click */
#join form input[type="text"]:focus,
#join form input[type="email"]:focus,
#join form input[type="tel"]:focus {
    outline: none;
    border-color: var(--dsa-red);
    box-shadow: 0 0 0 3px rgba(224, 36, 36, 0.2);
}

/* 4. Transform the Submit Button to Match Your Custom .btn Class */
#join form input[type="submit"],
#join form .can_button {
    background: var(--dsa-red);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
    width: 100%;
    margin-top: 2rem;
}

#join form input[type="submit"]:hover,
#join form .can_button:hover {
    background: var(--dsa-dark-red);
    transform: translateY(-2px);
}

/* 5. Hide Action Network's Default Title (So yours shines instead) */
#can_embed_form h2, 
#can_embed_form h4 {
    display: none !important;
}

/* ==========================================================================
   Action Network 'Thank You' Screen Styling
   ========================================================================== */

#can_thank_you {
    text-align: center;
    font-family: 'Inter', sans-serif;
    padding: 2rem 0;
    animation: fadeIn 0.5s ease-in-out;
}

/* Force the Thank You headers to display properly (overriding the form header hide) */
#can_thank_you h1,
#can_thank_you h2,
#can_thank_you h3,
#can_thank_you h4 {
    color: var(--darker);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 900;
    display: block !important; 
}

#can_thank_you p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Style any links or buttons on the Thank You page */
#can_thank_you a {
    color: var(--dsa-red);
    font-weight: 700;
    text-decoration: none;
}

#can_thank_you a:hover {
    text-decoration: underline;
}

/* Smooth fade-in effect for the transition */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}