
        /* General Resets & Variables */
        :root {
            --primary-bg: #000000;
            --secondary-bg: #000000; /* Used for the "Promotion. Made For The Big Leagues." section */
            --text-color: #ffffff;
            --heading-color: #ffffff;
            --accent-color: #70aa2c;
            --light-text-color: #DDDDDD; /* Tertiary color from original */
            --padding-sm: 1rem;
            --padding-md: 2rem;
            --padding-lg: 4rem;
            --max-width: 1200px;
        }

        a {
            color: var(--text-color);
            text-decoration: none;
        }

        a:hover {
            color: var(--accent-color);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding-top: 100px;

        }
      
        /* Hero Section */
        .promo-hero-section {
            background-color: var(--primary-bg);
            padding: var(--padding-lg) 0;
            text-align: center;
        }

        .promo-hero-section .hero-content {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: var(--padding-lg);
        }

        .hero-text-area {
            flex: 1;
            text-align: right;
            padding-right: var(--padding-md);
            text-align: center;
        }

        .hero-text-area h2 {
            font-size: 2.5rem;
            color: var(--heading-color);
            margin-bottom: 0.5rem;
        }

        .hero-text-area h1 {
            font-size: 6rem;
            color: var(--accent-color);
            margin-bottom: var(--padding-md);
        }

        .hero-text-area p {
            color:white;
            font-size: 1.1rem;
            max-width: 500px;
            margin-left: auto;
            margin-bottom: var(--padding-md);
        }

        .app-download-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-bottom: var(--padding-md);
        }

        .app-download-buttons img {
            width: 250px;
            height: auto;
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            background-color: var(--accent-color);
            color: var(--heading-color);
            border-radius: 9999px;
            font-weight: bold;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .button:hover {
            background-color: #5c8f2b; /* Slightly darker green */
            color: white;
        }

        .button svg {
            margin-right: 10px;
            fill: var(--heading-color);
            width: 20px;
            height: 20px;
        }

        .promo-partner-button-mobile {
            display: none; /* Hidden on desktop */
        }

        .hero-image-area {
            flex: 1;
            text-align: left;
            position: relative; /* For aligning potential text/buttons over image */
        }

        .hero-image-area .mobile-image {
            display: none; /* Hide mobile image on desktop */
        }

        /* Large Promo Text Section */
        .large-promo-text-section {
            background-color: var(--secondary-bg);
            padding-bottom: var(--padding-lg);
            text-align: center;
        }

        .large-promo-text-section h3 {
            font-size: 3rem;
            color: var(--heading-color);
        }

        .large-promo-text-section .highlight-green {
            color: var(--accent-color);
        }

        /* Footer */
        .site-footer {
            background-color: var(--primary-bg);
            padding: var(--padding-lg) 0 var(--padding-md) 0;
            color: var(--light-text-color);
            font-size: 0.9rem;
        }

        .footer-top {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--padding-md);
            padding-bottom: var(--padding-md);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-col {
            padding: 0 var(--padding-sm);
        }

        .footer-col h6 {
            color: var(--heading-color);
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.5rem;
        }

        .footer-col ul li a {
            color: var(--light-text-color);
            transition: color 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: var(--accent-color);
        }

        .footer-logo img {
            height: 50px;
            width: auto;
            margin-bottom: 1rem;
        }

        .footer-about .footer-social-links {
            display: flex;
            gap: 15px;
            margin-top: 1rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: var(--padding-md);
        }

        .footer-bottom p {
            margin-bottom: 0.5rem;
            color: var(--light-text-color);
        }

        /* Responsive Design */
        /* Tablet styles (max-width 1024px) */
        @media (max-width: 1024px) {
            .container {
                padding: 0 var(--padding-sm);
            }
            .site-logo img {
                height: 50px;
            }
            .header-content {
                flex-wrap: wrap;
                position: relative;
            }
            .main-navigation {
                order: 3;
                flex-basis: 100%;
                text-align: left;
                padding-top: 1rem;
            }
            .menu-toggle {
                display: block;
                position: absolute;
                right: var(--padding-sm);
                top: calc(var(--padding-md) - 10px); /* Adjust based on button padding */
            }
            .site-logo {
                order: 1;
            }
            .social-links-header {
                display: none; /* Hide desktop social links on tablet */
            }
            .menu-items {
                flex-direction: column;
                display: none; /* Hidden by default */
                background-color: var(--primary-bg);
                width: 100%;
                padding: 1rem 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
                position: absolute;
                top: 100%;
                left: 0;
                z-index: 99;
            }
            .menu-items.active {
                display: flex; /* Show when active */
            }
            .menu-items li a {
                padding: 0.75rem var(--padding-sm);
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }
            .menu-items li:last-child a {
                border-bottom: none;
            }

            /* Hero Section Tablet adjustments */
            .promo-hero-section .hero-content {
                flex-direction: column;
                gap: var(--padding-md);
            }
            .hero-text-area {
                text-align: center;
                padding-right: 0;
            }
            .hero-text-area p {
                margin-left: auto;
                margin-right: auto;
            }
            .app-download-buttons {
                justify-content: center;
            }
            .hero-image-area {
                text-align: center;
            }
            .promo-partner-button-desktop {
                display: none;
            }
            .promo-partner-button-mobile {
                display: inline-flex;
                margin-top: var(--padding-md);
            }
            .hero-image-area .desktop-image {
                display: none; /* Hide desktop image */
            }
            .hero-image-area .mobile-image {
                display: block; /* Show mobile image */
            }

            .large-promo-text-section h3 {
                font-size: 2.5rem;
            }

            /* Footer Tablet Adjustments */
            .footer-top {
                grid-template-columns: repeat(2, 1fr); /* 2 columns for tablet */
                gap: var(--padding-md);
            }
            .footer-col {
                text-align: center;
                padding: var(--padding-sm);
            }
            .footer-about .footer-social-links {
                justify-content: center;
            }
        }

        /* Mobile styles (max-width 768px) */
        @media (max-width: 768px) {
            .site-logo img {
                height: 40px;
            }
            .hero-text-area h2 {
                font-size: 2rem;
                margin-top: 2rem;
            }
            .hero-text-area h1 {
                font-size: 3rem;
            }
            .hero-text-area p{
                font-size: 1rem;
            }
            .app-download-buttons {
                flex-direction: column;
                align-items: center;
            }
            .app-download-buttons img {
                width: 180px;
            }
            .large-promo-text-section h3 {
                font-size: 1.5rem;
                line-height: 1.3;
            }
            .button{
                padding: 0.5rem 1.5rem;
            }
            .footer-top {
                grid-template-columns: 1fr; /* Single column for mobile */
                text-align: center;
            }
            .footer-col {
                padding: var(--padding-sm) 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .footer-col:last-child {
                border-bottom: none;
            }
            .footer-col ul {
                padding-left: 0;
            }
            .footer-about .footer-social-links {
                justify-content: center;
            }
        }

        /* Smaller mobile devices (max-width 480px) */
        @media (max-width: 480px) {
            .site-logo img {
                height: 35px;
            }
            .hero-text-area h1 {
                font-size: 2.5rem;
            }
            .app-download-buttons img {
                width: 160px;
            }
        }
    