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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #000;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Language Dropdown in Menu */
        .language-dropdown {
            position: relative;
            display: inline-block;
        }

        .language-trigger {
            color: white;
            text-decoration: none;
            padding: 15px 25px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            border-bottom: 3px solid transparent;
            cursor: pointer;
        }

        .language-trigger:hover {
            background: rgba(0, 0, 0, 0.2);
            border-bottom-color: transparent;
        }

        .language-trigger .language-icon {
            margin-right: 8px;
            width: 20px;
            height: 20px;
            fill: currentColor;
            transition: all 0.3s ease;
            margin-top: 2px;
        }

        .language-trigger:hover .language-icon {
            opacity: 0.8;
        }

        .language-dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            top: 100%;
            background: rgba(0, 0, 0, 0.95);
            min-width: 200px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            border: 2px solid #dc2626;
            z-index: 1001;
            backdrop-filter: blur(10px);
        }

        .language-dropdown:hover .language-dropdown-content {
            display: block;
        }

        .language-dropdown-content a {
            color: white;
            padding: 15px 20px;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s;
            border-bottom: 1px solid rgba(220, 38, 38, 0.3);
        }

        .language-dropdown-content a:last-child {
            border-bottom: none;
            border-radius: 0 0 6px 6px;
        }

        .language-dropdown-content a:first-child {
            border-radius: 6px 6px 0 0;
        }

        .language-dropdown-content a:hover {
            background: rgba(220, 38, 38, 0.8);
            transform: translateX(5px);
        }

        .language-dropdown-content a.active {
            background: rgba(220, 38, 38, 0.6);
            border-left: 4px solid #fff;
        }

        .language-dropdown-content .flag {
            margin-right: 12px;
            font-size: 1.3rem;
        }

        .language-dropdown-content .lang-info {
            display: flex;
            flex-direction: column;
        }

        .language-dropdown-content .lang-code {
            font-weight: bold;
            font-size: 0.9rem;
        }

        .language-dropdown-content .lang-name {
            font-size: 0.8rem;
            color: #fca5a5;
            font-weight: normal;
        }

        /* Remove old language switcher */
        .language-switcher {
            display: none;
        }

        /* Header styled like Manchester United */
        header {
            background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
            color: white;
            padding: 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        /* Configuration option to hide header */
        header.hidden {
            display: none;
        }

        /* Top Header Bar - Desktop Only */
        .header-top {
            background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
            color: white;
            padding: 4px 0;
            font-size: 0.8rem;
            border-bottom: 1px solid rgba(220, 38, 38, 0.3);
            display: block;
            transition: transform 0.3s ease;
            position: relative;
            z-index: 1001;
        }

        .header-top.hidden {
            transform: translateY(-100%);
        }

        .header-top .container {
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }

        .header-top-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .header-top-left a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
            padding: 8px 12px;
        }

        .header-top-left a:hover {
            color: #dc2626;
        }

        .header-top-right {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-left: auto;
        }

        .header-separator {
            width: 1px;
            height: 16px;
            background: rgba(255, 255, 255, 0.3);
            margin: 0 4px;
        }

        /* Desktop Language Selector */
        .language-dropdown.desktop-only {
            position: relative;
        }

        .language-dropdown.desktop-only .language-trigger {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 4px 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #cccccc;
            text-decoration: none;
            font-weight: 500;
        }

        .language-dropdown.desktop-only .language-trigger:hover {
            color: #dc2626;
        }

        .language-dropdown.desktop-only .language-icon {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }

        .language-dropdown.desktop-only .language-text {
            font-size: 0.85rem;
            font-weight: 500;
        }

        .language-dropdown.desktop-only .dropdown-arrow {
            width: 12px;
            height: 12px;
            fill: currentColor;
            transition: transform 0.3s ease;
        }

        .language-dropdown.desktop-only.open .dropdown-arrow {
            transform: rotate(180deg);
        }

        .language-dropdown.desktop-only .language-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(0, 0, 0, 0.95);
            border: 1px solid rgba(220, 38, 38, 0.3);
            border-radius: 6px;
            padding: 8px 0;
            min-width: 180px;
            display: none;
            z-index: 1002;
            backdrop-filter: blur(10px);
            margin-top: 4px;
        }

        .language-dropdown.desktop-only.open .language-dropdown-menu {
            display: block;
        }

        .language-dropdown.desktop-only .language-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 16px;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .language-dropdown.desktop-only .language-option:hover {
            background: rgba(220, 38, 38, 0.2);
        }

        .language-dropdown.desktop-only .language-option .flag {
            font-size: 1.2rem;
        }

        .language-dropdown.desktop-only .language-option .lang-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .language-dropdown.desktop-only .language-option .lang-code {
            font-weight: 600;
            font-size: 0.85rem;
        }

        .language-dropdown.desktop-only .language-option .lang-name {
            font-size: 0.75rem;
            color: #cccccc;
        }

        /* Sign In Button */
        .sign-in-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 4px 8px;
            color: #cccccc;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }

        .sign-in-btn:hover {
            color: #dc2626;
        }

        .sign-in-btn .person-icon {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* Hide top header on mobile */
        /* Mobile Hamburger Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            margin-right: 15px;
        }

        .hamburger-icon {
            width: 24px;
            height: 24px;
            fill: white;
            transition: all 0.3s ease;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            z-index: 3000;
            backdrop-filter: blur(10px);
            transform: translateX(-100%);
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .mobile-menu.show {
            transform: translateX(0);
        }

        .mobile-menu-content {
            padding: 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 1;
        }

        /* Hide mobile language elements when menu is open */
        body.mobile-menu-open .mobile-language-btn,
        body.mobile-menu-open .mobile-language-dropdown {
            visibility: hidden !important;
            opacity: 0 !important;
            pointer-events: none !important;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-title {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .mobile-menu-close {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .mobile-menu-close:hover {
            background: rgba(220, 38, 38, 0.2);
            color: #dc2626;
        }

        .mobile-menu-close svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        /* Overlay for clicking outside */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .mobile-menu-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-item {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 12px;
            padding: 12px 16px;
            color: white;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin-top: 0;
        }

        .mobile-menu-item:hover {
            color: #dc2626;
            background: rgba(220, 38, 38, 0.1);
        }

        .mobile-menu-icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        @media (max-width: 768px) {
            .header-top {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            nav {
                padding: 15px 0; /* Back to original padding */
                min-height: 60px; /* Ensure consistent minimum height */
            }

            nav .container {
                justify-content: flex-start; /* Left align on mobile */
                gap: 8px; /* Smaller space between hamburger and logo */
            }

            .mobile-menu-toggle {
                margin-right: 0; /* Remove extra margin */
            }

            .logo {
                flex: 1;
                text-align: left; /* Left align the logo */
                display: flex;
                align-items: center; /* Center vertically in banner */
            }

            .logo > div:last-child {
                display: none; /* Hide text on mobile */
            }

            .logo > div:last-child {
                line-height: 1; /* Tighter line spacing */
            }

            .logo > div:last-child > div:first-child {
                margin-bottom: 0; /* Remove margin between title lines */
                line-height: 1;
            }

            .logo > div:last-child > div:last-child {
                margin-top: -2px; /* Pull subtitle closer to title */
                line-height: 1;
            }

            .nav-links {
                /* Language selector stays on the right */
            }
        }

        nav {
            padding: 5px 0;
            position: sticky;
            top: 0;
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* When header is hidden, make nav fixed to top */
        nav.header-hidden {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: bold;
            color: #fff;
        }

        .logo .emblem {
            width: 50px;
            height: 50px;
            background: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            border: 2px solid #fff;
            overflow: hidden;
        }

        .logo .emblem img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Tight spacing for logo text on desktop */
        .logo > div:last-child {
            line-height: 1; /* Tighter line spacing */
        }

        .logo > div:last-child > div:first-child {
            margin-bottom: 0; /* Remove margin between title lines */
            line-height: 1;
        }

        .logo > div:last-child > div:last-child {
            margin-top: -2px; /* Pull subtitle closer to title */
            line-height: 1;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 0;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            padding: 15px 25px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            display: block;
            border-bottom: 3px solid transparent;
        }

        .nav-links a:hover {
            background: rgba(0, 0, 0, 0.2);
            border-bottom-color: #fff;
        }

        main {
            background: #fff;
        }

        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect width="1200" height="600" fill="%23dc2626"/><circle cx="600" cy="300" r="200" fill="%23000" opacity="0.3"/></svg>');
            background-size: cover;
            background-position: center;
            color: white;
            height: 100vh;
            text-align: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            scroll-margin-top: 160px; /* Account for fixed header height */
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            opacity: 1;
            transition: opacity 2s ease-out;
        }

        .hero-video.fade-out {
            opacity: 0;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
        }

        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            font-weight: 900;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: 2px;
        }


        .hero-content .subtitle {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            color: rgba(255, 255, 255, 0.8);
            cursor: pointer;
            transition: color 0.3s ease;
            z-index: 4;
        }

        .scroll-indicator:hover {
            color: #fff;
        }

        .scroll-arrow {
            width: 0;
            height: 0;
            border-left: 18px solid transparent;
            border-right: 18px solid transparent;
            border-top: 24px solid currentColor;
            margin-bottom: 5px;
            animation: bounce 2s infinite;
        }

        .scroll-text {
            font-size: 0.9rem;
            font-weight: 300;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        .cta-button {
            display: inline-block;
            background: #fff;
            color: #dc2626;
            padding: 18px 40px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: 2px solid #fff;
        }

        .cta-button:hover {
            background: transparent;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }

        .section {
            padding: 80px 0;
            background: #fff;
            scroll-margin-top: 160px; /* Account for fixed header height */
        }

        .section:nth-child(even) {
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 3rem;
            color: #dc2626;
            margin-bottom: 20px;
            font-weight: 900;
            position: relative;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #000;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 20px auto 0 auto;
        }

        /* Team History Section */
        .history-timeline {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-top: 40px;
        }

        .history-item {
            display: flex;
            align-items: center;
            gap: 30px;
            padding: 30px;
            background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
            border-radius: 15px;
            border-left: 6px solid #dc2626;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .history-image {
            width: 150px;
            height: 150px;
            border-radius: 15px;
            object-fit: cover;
            border: 3px solid #dc2626;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .history-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
        }

        .history-item:nth-child(even) {
            flex-direction: row-reverse;
            border-left: none;
            border-right: 6px solid #dc2626;
        }

        .history-year {
            font-size: 3rem;
            font-weight: 900;
            color: #dc2626;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            min-width: 120px;
        }

        .history-content {
            flex: 1;
        }

        .history-content h3 {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .history-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 10px;
        }

        .history-tagline {
            font-style: italic;
            color: #dc2626;
            font-size: 1rem;
            margin-top: 15px;
            line-height: 1.5;
            font-weight: 500;
            border-left: 3px solid #dc2626;
            padding-left: 15px;
        }

        @media (max-width: 768px) {
            .history-item {
                flex-direction: column !important;
                text-align: center;
                border-left: 6px solid #dc2626 !important;
                border-right: none !important;
            }

            .history-year {
                min-width: auto;
            }

            .history-image {
                width: 120px;
                height: 120px;
                order: -1;
            }

            .history-tagline {
                text-align: left !important;
            }
        }

        /* Membership Section Styles */
        .membership-form-container {
            max-width: 800px;
            margin: 0 auto;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .membership-form {
            padding: 40px;
        }

        .form-section {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px solid #f0f0f0;
        }

        .form-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .form-section h3 {
            color: #dc2626;
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .form-section h4 {
            color: #333;
            font-size: 1.2rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            color: #333;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .form-input, .form-select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #fff;
        }

        .form-input:focus, .form-select:focus {
            outline: none;
            border-color: #dc2626;
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
        }

        .form-input:required:valid {
            border-color: #22c55e;
        }

        .membership-options {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            margin-top: 20px;
        }

        .membership-option {
            background: #fff;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .membership-option:hover {
            border-color: #dc2626;
            box-shadow: 0 5px 15px rgba(220, 38, 38, 0.1);
        }

        .membership-label {
            display: block;
            padding: 20px;
            cursor: pointer;
        }

        .membership-checkbox {
            margin-right: 15px;
            transform: scale(1.2);
        }

        .membership-details h4 {
            color: #dc2626;
            margin-bottom: 10px;
        }

        .membership-details p {
            color: #666;
            margin-bottom: 15px;
        }

        .disclaimer {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 5px;
            padding: 10px;
            margin-top: 15px;
        }

        .disclaimer small {
            color: #856404;
            line-height: 1.4;
        }

        .agreement-links {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #e0e0e0;
        }

        .agreement-links a {
            color: #dc2626;
            text-decoration: none;
            font-weight: 600;
        }

        .agreement-links a:hover {
            text-decoration: underline;
        }

        .checkbox-label {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            cursor: pointer;
            font-weight: normal;
        }

        .checkbox-label input[type="checkbox"] {
            margin-right: 10px;
            transform: scale(1.1);
        }

        .agreement-checkbox:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .coming-soon-message {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            padding: 30px;
            margin-top: 20px;
            border: 2px solid #dc2626;
        }

        .coming-soon-content {
            text-align: center;
        }

        .coming-soon-content h3 {
            color: #dc2626;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .coming-soon-content p {
            color: #333;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .notification-signup {
            background: #fff;
            border-radius: 10px;
            padding: 20px;
            margin-top: 25px;
            border: 1px solid #e0e0e0;
        }

        .notification-signup a {
            color: #dc2626;
            text-decoration: none;
            font-weight: 600;
        }

        .notification-signup a:hover {
            text-decoration: underline;
        }

        .checkbox-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
            margin-top: 10px;
        }

        .form-submit {
            margin-top: 40px;
            text-align: center;
            padding-top: 30px;
            border-top: 2px solid #f0f0f0;
        }

        .submit-button {
            background: #dc2626;
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
        }

        .submit-button:hover:not(:disabled) {
            background: #991b1b;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
        }

        .submit-button:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        @media (max-width: 768px) {
            .membership-form {
                padding: 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .checkbox-grid {
                grid-template-columns: 1fr;
            }

            .membership-form-container {
                margin: 20px;
            }

            /* Responsive map image positioning for mobile */
            .world-map-image {
                object-position: left center;
            }
        }

        /* Initially hide form fields until location is selected */
        #membershipFields,
        #optionalFields,
        #submitSection {
            display: none;
        }

        /* Custom Map Section - Fixed */
        #map {
            height: 600px;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            border: 4px solid #dc2626;
            background: #000;
            position: relative;
            overflow: hidden;
        }

        .custom-world-map {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            overflow: hidden;
        }

        .world-map-image {
            height: 100%;
            width: auto;
            min-width: 100%;
            object-fit: cover;
            object-position: left center;
            position: absolute;
            left: 0;
            top: 0;
        }

        /* Hide continent shapes since we're using actual map image */
        .world-continents {
            display: none;
        }

        .map-marker {
            position: absolute;
            width: 20px;
            height: 20px;
            background: #dc2626;
            border: 3px solid #fff;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(220, 38, 38, 0.6);
            z-index: 10;
            transform: translate(-50%, -50%);
        }

        .map-marker:not(.mexico-city):hover {
            transform: translate(-50%, -50%) scale(1.5);
            box-shadow: 0 0 25px rgba(220, 38, 38, 0.8);
            z-index: 20;
        }

        .map-marker.mexico-city {
            z-index: 15 !important;
        }

        .map-marker.mexico-city:hover {
            transform: translate(-50%, -50%) scale(1.5);
            box-shadow: 0 0 25px rgba(220, 38, 38, 0.8);
            z-index: 20 !important;
        }

        .map-marker::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: #dc2626;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            70% {
                transform: translate(-50%, -50%) scale(2);
                opacity: 0;
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0;
            }
        }

        .map-tooltip {
            position: absolute;
            background: rgba(0, 0, 0, 0.9);
            color: white;
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: bold;
            border: 2px solid #dc2626;
            white-space: nowrap;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 20;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            top: -70px;
            left: 25px;
        }

        .map-tooltip.show {
            opacity: 1;
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .location-card {
            background: linear-gradient(135deg, #1f1f1f 0%, #2d1b1b 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            transition: all 0.3s;
            border: 3px solid #dc2626;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .location-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
        }

        .location-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #dc2626;
            font-weight: bold;
        }

        .location-card p {
            margin-bottom: 10px;
            line-height: 1.8;
        }

        .location-card strong {
            color: #fca5a5;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .scroll-indicator {
                bottom: 40px;
                /* Ensure it's visible above mobile UI elements */
            }

            .scroll-arrow {
                border-left: 16px solid transparent;
                border-right: 16px solid transparent;
                border-top: 20px solid currentColor;
                /* Make it bigger on mobile for better visibility */
            }

            .scroll-text {
                font-size: 0.8rem;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .locations-grid {
                grid-template-columns: 1fr;
            }

            /* Mobile language selector */
            .mobile-language-btn {
                display: flex !important;
                align-items: center;
                justify-content: center;
                gap: 8px;
                position: fixed;
                top: 10px;
                right: 20px;
                z-index: 9999;
                background: rgba(0, 0, 0, 0.9);
                color: white;
                border: 2px solid #dc2626;
                border-radius: 25px;
                padding: 10px 15px;
                font-size: 0.9rem;
                cursor: pointer;
                backdrop-filter: blur(10px);
            }

            .mobile-language-btn .language-icon {
                width: 16px;
                height: 16px;
                fill: currentColor;
            }

            .mobile-language-btn #mobile-lang-text {
                font-weight: bold;
            }

            .mobile-language-dropdown {
                display: none;
                position: fixed;
                top: 50px;
                right: 20px;
                z-index: 9998;
                background: rgba(0, 0, 0, 0.95);
                border: 2px solid #dc2626;
                border-radius: 8px;
                backdrop-filter: blur(10px);
            }

            .mobile-language-dropdown.show {
                display: block;
            }

            .mobile-language-dropdown a {
                display: flex;
                align-items: center;
                padding: 15px 20px;
                color: white;
                text-decoration: none;
                border-bottom: 1px solid rgba(220, 38, 38, 0.3);
            }

            .mobile-language-dropdown a:last-child {
                border-bottom: none;
            }

            .mobile-language-dropdown a:hover {
                background: rgba(220, 38, 38, 0.8);
            }
        }

        /* Hide mobile language elements on desktop only */
        @media (min-width: 769px) {
            .mobile-language-btn,
            .mobile-language-dropdown {
                display: none !important;
            }
        }

        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
            color: #ccc;
            padding: 40px 0 20px 0;
            text-align: center;
            border-top: 3px solid #dc2626;
            margin-top: 80px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-links {
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            margin: 0 15px;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #dc2626;
        }

        .footer-social {
            margin: 20px 0;
        }

        .footer-social h4 {
            color: #dc2626;
            font-size: 1rem;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .social-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.1);
        }

        .social-links a:hover {
            color: #fff;
            background: #dc2626;
            transform: translateY(-2px);
        }

        .social-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .footer-separator {
            border-top: 1px solid #333;
            margin: 30px 0 20px 0;
        }

        .footer-copyright {
            font-size: 0.8rem;
            color: #888;
            padding-top: 2px;
        }

        @media (max-width: 768px) {
            .footer {
                padding: 30px 0 15px 0;
            }

            .footer-links a {
                display: block;
                margin: 8px 0;
            }

            .social-links {
                flex-direction: row;
                justify-content: center;
                gap: 15px;
            }

            .social-links a {
                padding: 12px;
                min-width: 44px;
                justify-content: center;
            }

            .social-links a span {
                display: none;
            }

            .social-icon {
                width: 24px;
                height: 24px;
            }
        }