@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Custom Global Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: transparent;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary, #0a92d7);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--gradient-end, #00f2fe);
        }
        html {
            scrollbar-width: thin;
            scrollbar-color: var(--primary, #0a92d7) transparent;
        }
        
        :root {
            --bg-primary: #ffffff;
            --bg-secondary: #f8f9fc;
            --text-primary: #000000;
            --text-secondary: #666666;
            --border-color: rgba(0, 0, 0, 0.1);
            --card-bg: rgba(255, 255, 255, 0.8);
            --card-hover: rgba(255, 255, 255, 0.95);
            --nav-bg: rgba(255, 255, 255, 0.95);
            --gradient-start: #1D60AC;
            --gradient-end: #0A92D7;
            --modal-bg: #ffffff;
            --modal-border: rgba(0, 0, 0, 0.15);
            --input-bg: #f8f9fc;
            --input-border: rgba(0, 0, 0, 0.15);
        }
        
        body.dark-mode {
            --bg-primary: #000000;
            --bg-secondary: #0a0a0a;
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
            --border-color: rgba(255, 255, 255, 0.1);
            --card-bg: rgba(255, 255, 255, 0.03);
            --card-hover: rgba(255, 255, 255, 0.08);
            --nav-bg: rgba(0, 0, 0, 0.95);
            --modal-bg: rgba(20, 20, 20, 0.95);
            --modal-border: rgba(255, 255, 255, 0.1);
            --input-bg: rgba(255, 255, 255, 0.05);
            --input-border: rgba(255, 255, 255, 0.1);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            transition: background 0.3s ease, color 0.3s ease;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        
        nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container img {
    height: 50px;
    width: auto;
}

body.dark-mode .logo-container img {
    content: url('../images/logo white outline.png');
}

body:not(.dark-mode) .logo-container img {
    content: url('../images/logo.png');
}
        
        .footer-logo img {
            height: 50px;
            width: auto;
        }
        
        body.dark-mode .footer-logo img {
            content: url('../images/logo white outline.png');
        }
        
        body:not(.dark-mode) .footer-logo img {
            content: url('../images/logo.png');
        }
        
        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.dark-mode .logo-text {
            background: none;
            -webkit-text-fill-color: white;
            color: white;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .theme-toggle {
            background: transparent;
            border: 2px solid var(--text-primary);
            color: var(--text-primary);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .theme-toggle:hover {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: white;
            border-color: transparent;
            transform: rotate(180deg);
        }
        
        .nav-buttons {
            display: flex;
            gap: 1rem;
        }

        .nav-buttons .btn {
            height: 40px;
            min-height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            padding-top: 0 !important;
            padding-bottom: 0 !important;
        }

        .nav-tab-link {
            height: 40px;
            min-height: 40px;
            padding: 0 1.5rem;
            border-radius: 8px;
            border: 2px solid #89ceff;
            background: transparent;
            color: #89ceff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            line-height: 1;
            white-space: nowrap;
            cursor: pointer;
            transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
        }

        .nav-tab-link:hover,
        .nav-tab-link:focus-visible {
            transform: translateY(-2px);
            border-color: #89ceff;
            background: rgba(137, 206, 255, 0.1);
            color: #ffffff;
            box-shadow: 0 10px 30px rgba(10, 146, 215, 0.22);
            outline: none;
        }

        .nav-tab-link.is-home-target {
            background: rgba(137, 206, 255, 0.08);
        }

        .page-tab-panel[hidden] {
            display: none !important;
        }
        
        .btn {
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--text-primary);
        }
        
        .btn-outline:hover {
            background: var(--text-primary);
            color: var(--bg-primary);
            transform: translateY(-2px);
        }
        
        .btn-gradient {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: #fff;
            border: none;
        }
        
        .btn-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(10, 146, 215, 0.4);
        }
        
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            padding: 1.25rem;
            background:
                linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(2, 10, 18, 0.88)),
                repeating-linear-gradient(90deg, rgba(137, 206, 255, 0.045) 0 1px, transparent 1px 86px);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            overflow-y: auto;
            animation: fadeIn 0.3s ease;
        }

        .modal-overlay.active {
            display: flex !important;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { transform: translateY(30px) scale(0.97); opacity: 0; }
            to { transform: translateY(0) scale(1); opacity: 1; }
        }

        .modal-content {
            background:
                linear-gradient(155deg, rgba(6, 18, 32, 0.97), rgba(11, 28, 45, 0.98) 55%, rgba(2, 8, 15, 0.98));
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(137, 206, 255, 0.24);
            border-radius: 18px;
            padding: 2.25rem;
            max-width: 456px;
            width: min(100%, 456px);
            max-height: calc(100vh - 2.5rem);
            overflow: hidden auto;
            box-shadow:
                0 30px 90px rgba(0, 0, 0, 0.62),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset,
                0 0 42px rgba(10, 146, 215, 0.16);
            animation: slideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            isolation: isolate;
        }

        .modal-content::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            background:
                linear-gradient(90deg, transparent calc(50% - 1px), rgba(137, 206, 255, 0.16) calc(50% - 1px), rgba(137, 206, 255, 0.16) calc(50% + 1px), transparent calc(50% + 1px)),
                linear-gradient(0deg, transparent 48%, rgba(137, 206, 255, 0.07) 48%, rgba(137, 206, 255, 0.07) 52%, transparent 52%);
            opacity: 0.42;
            pointer-events: none;
        }

        .modal-content::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #1D60AC, #0A92D7, #89ceff);
            pointer-events: none;
            z-index: 2;
        }

        .modal-content > * {
            position: relative;
            z-index: 1;
        }

        .modal-close {
            position: absolute;
            top: 1.05rem;
            right: 1.05rem;
            width: 36px;
            height: 36px;
            border-radius: 10px;
            border: 1px solid rgba(137, 206, 255, 0.18);
            background: rgba(255, 255, 255, 0.055);
            color: rgba(255, 255, 255, 0.72);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            transition: all 0.2s ease;
            z-index: 10;
        }

        .modal-close:hover {
            background: rgba(239, 68, 68, 0.14);
            color: #ff8b8b;
            border-color: rgba(239, 68, 68, 0.36);
            transform: rotate(90deg);
        }

        html[dir="rtl"] .modal-close {
            right: auto;
            left: 1.05rem;
        }

        .modal-header {
            text-align: center;
            margin-bottom: 1.75rem;
        }

        .modal-header h2 {
            font-size: 1.85rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff, #89ceff 55%, #0A92D7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.4rem;
            letter-spacing: 0;
        }

        body.dark-mode .modal-header h2 {
            background: linear-gradient(135deg, #ffffff, #89ceff 55%, #13a6ea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .modal-header p {
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.95rem;
            line-height: 1.5;
            max-width: 28ch;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.15rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.86);
            font-weight: 600;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .modal-input-wrap {
            position: relative;
        }

        .modal-input-icon {
            position: absolute;
            top: 50%;
            left: 1rem;
            transform: translateY(-50%);
            color: #89ceff;
            font-size: 0.95rem;
            opacity: 0.82;
            pointer-events: none;
            z-index: 2;
        }

        html[dir="rtl"] .modal-input-icon {
            left: auto;
            right: 1rem;
        }

        .form-input {
            width: 100%;
            height: 48px;
            padding: 0 1rem;
            border: 1px solid rgba(137, 206, 255, 0.18);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.065);
            color: #ffffff;
            font-family: 'Inter', 'Roboto', sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
            outline: none;
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
        }

        .form-input.has-leading-icon {
            padding-left: 2.8rem;
        }

        .form-input.has-password-toggle {
            padding-right: 3.1rem;
        }

        html[dir="rtl"] .form-input.has-leading-icon {
            padding-left: 1rem;
            padding-right: 2.8rem;
        }

        html[dir="rtl"] .form-input.has-password-toggle {
            padding-left: 3.1rem;
        }

        .form-input:focus {
            border-color: #89ceff;
            background: rgba(255, 255, 255, 0.09);
            box-shadow: 0 0 0 3px rgba(10, 146, 215, 0.2), 0 12px 28px rgba(10, 146, 215, 0.11);
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.46);
            opacity: 1;
        }

        .password-toggle-football {
            position: absolute;
            top: 50%;
            right: 0.45rem;
            transform: translateY(-50%);
            width: 38px;
            height: 38px;
            border-radius: 10px;
            border: 1px solid transparent;
            background: transparent;
            color: rgba(255, 255, 255, 0.58);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.05rem;
            transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
            z-index: 3;
        }

        .password-toggle-football:hover,
        .password-toggle-football:focus-visible {
            color: #89ceff;
            background: rgba(137, 206, 255, 0.1);
            border-color: rgba(137, 206, 255, 0.18);
            outline: none;
        }

        .password-toggle-football i {
            transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.25s ease;
        }

        .password-toggle-football.is-visible {
            color: #34d399;
            background: rgba(52, 211, 153, 0.1);
            border-color: rgba(52, 211, 153, 0.22);
            box-shadow: 0 0 18px rgba(52, 211, 153, 0.16);
        }

        .password-toggle-football.is-visible i {
            transform: rotate(180deg) scale(1.08);
        }

        html[dir="rtl"] .password-toggle-football {
            right: auto;
            left: 0.45rem;
        }

        /* Football Checkbox */
        .football-theme-checkbox {
            display: flex;
            align-items: center;
            min-height: 42px;
            margin: 0.15rem 0 0.85rem;
            padding: 0.15rem 0;
        }

        .football-theme-checkbox input[type="checkbox"] {
            display: none;
        }

        .football-theme-checkbox label {
            position: relative;
            padding-left: 42px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            min-height: 32px;
            line-height: 1.35;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .football-theme-checkbox label:hover {
            color: var(--text-primary);
        }

        .football-theme-checkbox label::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background:
                radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.18), transparent 34%),
                rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(137, 206, 255, 0.22);
            transition: all 0.3s ease;
            box-sizing: border-box;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.22);
        }

        .football-theme-checkbox label::after {
            content: '\f1e3'; /* FontAwesome football icon */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 50%;
            width: 30px;
            text-align: center;
            transform: translateY(-50%) scale(0.82) rotate(-22deg);
            font-size: 14px;
            color: rgba(137, 206, 255, 0.55);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0.72;
        }

        .football-theme-checkbox input[type="checkbox"]:checked + label::before {
            border-color: #89ceff;
            background-color: rgba(10, 146, 215, 0.18);
            box-shadow: 0 0 16px rgba(10, 146, 215, 0.34), inset 0 2px 5px rgba(0,0,0,0.22);
        }

        .football-theme-checkbox input[type="checkbox"]:checked + label::after {
            transform: translateY(-50%) scale(1) rotate(0);
            opacity: 1;
            color: #ffffff;
        }

        html[dir="rtl"] .football-theme-checkbox label {
            padding-left: 0;
            padding-right: 42px;
        }

        html[dir="rtl"] .football-theme-checkbox label::before,
        html[dir="rtl"] .football-theme-checkbox label::after {
            left: auto;
            right: 0;
        }

        .forgot-password {
            text-align: center;
            margin: 0.25rem 0 1.25rem;
        }

        .forgot-password a {
            color: #89ceff;
            text-decoration: none;
            font-size: 0.86rem;
            font-weight: 700;
            transition: color 0.25s ease, text-shadow 0.25s ease;
        }

        .forgot-password a:hover,
        .forgot-password a:focus-visible {
            color: #ffffff;
            text-shadow: 0 0 18px rgba(137, 206, 255, 0.5);
            outline: none;
        }

        .modal-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 0.75rem;
        }

        .login-submit-btn {
            width: 100%;
            min-height: 48px;
            border-radius: 12px;
            justify-content: center;
            padding: 0.85rem 1rem;
            font-size: 0.95rem;
            box-shadow: 0 14px 32px rgba(10, 146, 215, 0.28);
        }

        #loginModal.modal-overlay {
            background:
                linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(2, 10, 18, 0.88)),
                repeating-linear-gradient(90deg, rgba(137, 206, 255, 0.045) 0 1px, transparent 1px 86px);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 1.25rem;
        }

        #loginModal .modal-content {
            background:
                linear-gradient(155deg, rgba(6, 18, 32, 0.97), rgba(11, 28, 45, 0.98) 55%, rgba(2, 8, 15, 0.98));
            border: 1px solid rgba(137, 206, 255, 0.24);
            border-radius: 18px;
            padding: 2rem 2.25rem;
            width: min(100%, 456px);
            max-width: 456px;
            max-height: calc(100vh - 2.5rem);
            overflow: hidden auto;
            box-shadow:
                0 30px 90px rgba(0, 0, 0, 0.62),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset,
                0 0 42px rgba(10, 146, 215, 0.16);
        }

        #loginModal .modal-content::before {
            opacity: 0.24;
        }

        #loginModal .modal-close {
            top: 1.05rem;
            right: 1.05rem;
            width: 36px;
            height: 36px;
            border-radius: 10px;
            border: 1px solid rgba(137, 206, 255, 0.18);
            background: rgba(255, 255, 255, 0.055);
            color: rgba(255, 255, 255, 0.72);
        }

        html[dir="rtl"] #loginModal .modal-close {
            right: auto;
            left: 1.05rem;
        }

        #loginModal .modal-header {
            padding: 0;
            margin-bottom: 1.45rem;
            text-align: center;
        }

        html[dir="rtl"] #loginModal .modal-header {
            padding: 0;
        }

        #loginModal .modal-header h2 {
            font-size: 1.85rem;
            font-weight: 800;
            margin-bottom: 0.4rem;
            letter-spacing: 0;
            background: linear-gradient(135deg, #ffffff, #89ceff 55%, #13a6ea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        #loginModal .modal-header p {
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.95rem;
            line-height: 1.5;
            max-width: 28ch;
            margin: 0 auto;
        }

        #loginModal .form-label {
            color: rgba(255, 255, 255, 0.86);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.04em;
        }

        #loginModal .form-input {
            height: 48px;
            padding: 0 1rem;
            border: 1px solid rgba(137, 206, 255, 0.18);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.065);
            color: #ffffff;
            font-size: 0.95rem;
            line-height: 1.2;
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
        }

        #loginModal .form-input.has-leading-icon {
            padding-left: 2.8rem;
        }

        #loginModal .form-input.has-password-toggle {
            padding-right: 3.1rem;
        }

        html[dir="rtl"] #loginModal .form-input.has-leading-icon {
            padding-left: 1rem;
            padding-right: 2.8rem;
        }

        html[dir="rtl"] #loginModal .form-input.has-password-toggle {
            padding-left: 3.1rem;
        }

        #loginModal .form-input:focus {
            border-color: #89ceff;
            background: rgba(255, 255, 255, 0.09);
            box-shadow: 0 0 0 3px rgba(10, 146, 215, 0.2), 0 12px 28px rgba(10, 146, 215, 0.11);
        }

        #loginModal .form-input::placeholder {
            color: rgba(255, 255, 255, 0.46);
        }

        #loginModal .modal-actions {
            display: flex;
            flex-direction: column;
            margin-top: 0.75rem;
        }

        #loginModal .login-submit-btn {
            width: 100%;
            min-height: 48px;
            border-radius: 12px;
            justify-content: center;
            padding: 0.85rem 1rem;
            font-size: 0.95rem;
            background: linear-gradient(135deg, #89ceff, #13a6ea);
            color: #00344d;
            box-shadow: 0 14px 32px rgba(10, 146, 215, 0.28);
        }

        
        
        
        
        
        
        
        
        
        
        
        
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 140px 5% 80px;
            background: var(--bg-primary);
        }
        
        body.dark-mode .hero {
            background: radial-gradient(ellipse at center, rgba(29, 96, 172, 0.15), transparent);
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(0deg, var(--border-color) 0px, transparent 1px, transparent 40px, var(--border-color) 41px),
                repeating-linear-gradient(90deg, var(--border-color) 0px, transparent 1px, transparent 40px, var(--border-color) 41px);
            opacity: 0.3;
            pointer-events: none;
        }
        
        .hero-content {
            text-align: center;
            z-index: 1;
            max-width: 1400px;
            width: 100%;
        }
        
        .hero h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero h1 .gradient-text {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 5rem;
        }
        
        .feature-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 0;
        }
        
        .feature-card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        body.dark-mode .feature-card {
            box-shadow: none;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            background: var(--card-hover);
            border-color: rgba(10, 146, 215, 0.5);
            box-shadow: 0 10px 30px rgba(10, 146, 215, 0.2);
        }
        
        .feature-card i {
            font-size: 3rem;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: var(--text-primary);
        }
        
        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        .stats-section {
            padding: 100px 5%;
            background: var(--bg-secondary);
            position: relative;
            margin-top: 0;
        }
        
        body.dark-mode .stats-section {
            background: linear-gradient(135deg, rgba(29, 96, 172, 0.1), rgba(10, 146, 215, 0.1));
        }
        
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gradient-end), transparent);
        }
        
        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 3rem;
            color: var(--text-primary);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .stat-card {
            text-align: center;
            padding: 2rem;
            background: var(--bg-primary);
            border-radius: 20px;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            border-color: var(--gradient-end);
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(10, 146, 215, 0.2);
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.2rem;
            color: var(--text-secondary);
            font-weight: 500;
        }
        
        .pros-section {
            padding: 100px 5%;
            background: var(--bg-primary);
            position: relative;
        }
        
        .pros-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 4rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .pros-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .pro-card {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        body.dark-mode .pro-card {
            box-shadow: none;
        }
        
        .pro-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .pro-card:hover::before {
            transform: scaleX(1);
        }
        
        .pro-card:hover {
            transform: translateY(-10px);
            background: var(--card-hover);
            border-color: rgba(10, 146, 215, 0.5);
            box-shadow: 0 15px 40px rgba(10, 146, 215, 0.2);
        }
        
        .pro-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .pro-card:hover .pro-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .pro-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .pro-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: var(--text-primary);
        }
        
        .pro-card p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 1.05rem;
        }
        
        .how-it-works {
            padding: 100px 5%;
            max-width: 1600px;
            margin: 0 auto;
            background: transparent;
        }
        
        body.dark-mode .how-it-works {
            background: var(--bg-primary);
        }
        
        .video-container {
            text-align: center;
            margin-top: 4rem;
        }
        
        .video-link {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 3rem;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(10, 146, 215, 0.3);
        }
        
        .video-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(10, 146, 215, 0.5);
        }
        
        .video-link i {
            font-size: 1.5rem;
        }
        
        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
            max-width: 1600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        @media (min-width: 1600px) {
            .steps-container {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .step-card {
            position: relative;
            padding: 2.5rem;
            background: var(--card-bg);
            border-radius: 20px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        body.dark-mode .step-card {
            box-shadow: none;
        }
        
        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(10, 146, 215, 0.15);
        }
        
        .step-number {
            position: absolute;
            top: -20px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            color: white;
        }
        
        .step-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            margin-top: 1rem;
            font-weight: 700;
            color: var(--text-primary);
        }
        
        .step-card p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 1.1rem;
        }
        
        .cta-section {
            padding: 100px 5%;
            text-align: center;
            background: var(--bg-secondary);
            margin-top: 50px;
        }
        
        body.dark-mode .cta-section {
            background: radial-gradient(ellipse at center, rgba(10, 146, 215, 0.2), transparent);
        }
        
        .cta-section h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }
        
        .cta-section p {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        footer {
            padding: 3rem 5%;
            background: var(--bg-primary);
            border-top: none;
            text-align: center;
            position: relative;
            z-index: 10;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .footer-logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        body.dark-mode .footer-logo-text {
            background: none;
            -webkit-text-fill-color: white;
            color: white;
        }
        
        footer p {
            color: var(--text-secondary);
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .footer-links a:hover {
            color: var(--gradient-end);
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .social-links a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #000000;
            border: 2px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-links a:hover {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: white;
            border-color: transparent;
            transform: translateY(-5px);
        }

        .about-section-stitch {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 7rem 1.5rem;
            background:
                linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(10, 146, 215, 0.08) 38%, rgba(0, 0, 0, 0)),
                var(--bg-primary);
        }

        .about-section-stitch::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(137, 206, 255, 0.6), transparent);
        }

        .about-section-stitch::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(to right, rgba(137, 206, 255, 0.06) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(137, 206, 255, 0.04) 1px, transparent 1px);
            background-size: 54px 54px;
            mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
            pointer-events: none;
            opacity: 0.55;
        }

        .about-shell {
            position: relative;
            z-index: 1;
            max-width: 1440px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }

        .about-hero-grid,
        .about-community-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
            gap: clamp(2rem, 5vw, 5rem);
            align-items: center;
        }

        .about-copy,
        .about-community-copy {
            text-align: start;
        }

        .about-kicker {
            display: inline-flex;
            align-items: center;
            min-height: 32px;
            padding: 0.35rem 0.7rem;
            border-radius: 8px;
            border: 1px solid rgba(137, 206, 255, 0.22);
            background: rgba(137, 206, 255, 0.08);
            color: var(--primary-light, #89ceff);
            font-size: 0.78rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0;
            margin-bottom: 1.4rem;
        }

        .about-copy h2,
        .about-community-copy h2 {
            color: var(--text-primary);
            font-size: clamp(2.45rem, 5vw, 5.2rem);
            line-height: 0.98;
            font-weight: 900;
            letter-spacing: 0;
            margin-bottom: 1.4rem;
        }

        .about-copy p,
        .about-community-copy p,
        .about-belief-panel p,
        .about-card p {
            color: var(--text-secondary);
            line-height: 1.75;
        }

        .about-copy p,
        .about-community-copy p {
            font-size: clamp(1rem, 1.4vw, 1.18rem);
            max-width: 760px;
            margin-bottom: 1rem;
        }

        .about-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 1.8rem;
        }

        .about-pills span {
            min-height: 42px;
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.6rem 0.85rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.045);
            color: var(--text-primary);
            font-size: 0.9rem;
            font-weight: 700;
        }

        .about-pills i,
        .about-community-list i {
            color: var(--primary-light, #89ceff);
        }

        .about-belief-panel,
        .about-card,
        .about-video-frame {
            background: rgba(35, 41, 60, 0.62);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
        }

        .about-belief-panel {
            border-radius: 24px;
            padding: clamp(1.5rem, 3vw, 2.4rem);
        }

        .about-panel-label {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            color: var(--primary-light, #89ceff);
            font-size: 0.85rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0;
            margin-bottom: 1.25rem;
        }

        .about-belief-panel h3 {
            color: var(--text-primary);
            font-size: clamp(1.7rem, 3vw, 2.45rem);
            line-height: 1.08;
            font-weight: 900;
            letter-spacing: 0;
            margin-bottom: 1rem;
        }

        .about-panel-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            margin-top: 1.7rem;
        }

        .about-panel-stats span {
            min-height: 72px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            border-radius: 8px;
            border: 1px solid rgba(137, 206, 255, 0.18);
            background: rgba(137, 206, 255, 0.08);
            color: var(--text-primary);
            font-size: 0.84rem;
            font-weight: 800;
            line-height: 1.25;
            padding: 0.7rem;
        }

        .about-card-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1rem;
        }

        .about-card {
            border-radius: 18px;
            padding: 1.5rem;
            transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
        }

        .about-card:hover {
            transform: translateY(-8px);
            border-color: rgba(137, 206, 255, 0.32);
            background: rgba(35, 41, 60, 0.78);
            box-shadow: 0 28px 70px rgba(10, 146, 215, 0.16);
        }

        .about-card-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            margin-bottom: 1.15rem;
            box-shadow: 0 12px 26px rgba(10, 146, 215, 0.24);
        }

        .about-card h3 {
            color: var(--text-primary);
            font-size: 1.35rem;
            line-height: 1.2;
            font-weight: 900;
            letter-spacing: 0;
            margin-bottom: 0.7rem;
        }

        .about-card p {
            font-size: 0.96rem;
        }

        .about-community-grid {
            grid-template-columns: minmax(0, 0.95fr) minmax(280px, 420px);
            align-items: center;
        }

        .about-community-list {
            display: grid;
            gap: 0.9rem;
            margin-top: 1.8rem;
            list-style: none;
        }

        .about-community-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            color: var(--text-primary);
            line-height: 1.55;
            font-weight: 650;
        }

        .about-community-list i {
            margin-top: 0.24rem;
            font-size: 0.85rem;
        }

        .about-video-stage {
            justify-self: center;
            width: min(100%, 420px);
        }

        .about-video-frame {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            aspect-ratio: 9 / 16;
            background: #000000;
        }

        .about-video-frame::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(137, 206, 255, 0.24);
            border-radius: inherit;
            pointer-events: none;
            z-index: 2;
        }

        .about-video {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            background: #000000;
        }

        .about-video-play {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 76px;
            height: 76px;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.34);
            background: linear-gradient(135deg, rgba(29, 96, 172, 0.92), rgba(10, 146, 215, 0.92));
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 3;
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36), 0 0 0 10px rgba(137, 206, 255, 0.08);
            transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        }

        .about-video-play i {
            font-size: 1.45rem;
            margin-left: 0.18rem;
        }

        .about-video-play:hover,
        .about-video-play:focus-visible {
            transform: translate(-50%, -50%) scale(1.06);
            box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42), 0 0 0 12px rgba(137, 206, 255, 0.14);
            outline: none;
        }

        .about-video-play.is-hidden {
            opacity: 0;
            pointer-events: none;
        }

        .about-video-noscript {
            display: block;
            margin-top: 0.75rem;
            color: var(--primary-light, #89ceff);
            text-align: center;
        }

        html[dir="rtl"] .about-community-list li {
            text-align: right;
        }
        
        .football-icon {
            position: fixed;
            font-size: 3rem;
            opacity: 0.2;
            pointer-events: none;
            z-index: 1000;
            color: var(--gradient-end);
            animation: float 20s infinite ease-in-out;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(100px, -100px) rotate(90deg); }
            50% { transform: translate(200px, 0) rotate(180deg); }
            75% { transform: translate(100px, 100px) rotate(270deg); }
        }
        
@media (max-width: 1200px) {
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .about-hero-grid,
    .about-community-grid {
        grid-template-columns: 1fr;
    }

    .about-belief-panel,
    .about-video-stage {
        width: min(100%, 520px);
        justify-self: stretch;
    }

    .about-video-stage {
        justify-self: center;
    }
}

@media (max-width: 1023px) {
    .nav-tab-link {
        width: 40px;
        min-width: 40px;
        padding: 0;
    }

    .nav-tab-link span {
        display: none;
    }
}
        
@media (max-width: 768px) {
    .logo-text {
        display: none;
    }
    
    nav {
        padding: 1rem 3%;
    }
    
    .logo-container img {
        height: 40px;
    }
    
    .hero {
        padding: 90px 5% 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .pros-grid {
        grid-template-columns: 1fr;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }

    .nav-tab-link {
        padding: 0;
    }

    .about-section-stitch {
        padding: 5rem 1rem;
    }

    .about-shell {
        gap: 3rem;
    }

    .about-card-grid {
        grid-template-columns: 1fr;
    }

    .about-panel-stats {
        grid-template-columns: 1fr;
    }
    
    
    
    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-overlay {
        align-items: flex-start;
        padding: 1rem;
    }

    .modal-content {
        margin: auto 0;
        padding: 1.75rem;
    }

    #loginModal.modal-overlay {
        align-items: flex-start;
        padding: 1rem;
    }

    #loginModal .modal-content {
        margin: auto 0;
        padding: 1.6rem 1.75rem;
    }
}
        
@media (max-width: 480px) {
    nav {
        padding: 1rem 3%;
        flex-wrap: nowrap;
        gap: 1rem;
        justify-content: space-between;
    }
    
    .logo-text {
        display: none;
    }
    
    .logo-container {
        display: none;
    }
    
    .nav-right {
        width: 100%;
        justify-content: space-between;
        order: 0;
    }
    
    .theme-toggle {
        order: -1;
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .nav-buttons {
        gap: 0.5rem;
        margin-left: auto;
    }

    .nav-tab-link {
        height: 36px;
        min-height: 36px;
        width: 36px;
        min-width: 36px;
        padding: 0;
        font-size: 0.78rem;
    }

    .nav-buttons .btn {
        height: 36px;
        min-height: 36px;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .about-copy h2,
    .about-community-copy h2 {
        font-size: 2.35rem;
        line-height: 1.02;
    }

    .about-pills span {
        width: 100%;
    }

    .about-card,
    .about-belief-panel {
        padding: 1.25rem;
    }

    .about-video-play {
        width: 62px;
        height: 62px;
    }

    .about-video-play i {
        font-size: 1.2rem;
    }

    .modal-overlay {
        padding: 0.75rem;
    }

    .modal-content {
        width: 100%;
        padding: 1.35rem;
        border-radius: 16px;
    }

    .modal-close {
        top: 0.85rem;
        right: 0.85rem;
        width: 34px;
        height: 34px;
    }

    html[dir="rtl"] .modal-close {
        right: auto;
        left: 0.85rem;
    }

    .modal-header {
        margin-bottom: 1.35rem;
    }

    .modal-header p {
        font-size: 0.88rem;
    }

    .form-input {
        height: 46px;
        font-size: 0.9rem;
    }

    .login-submit-btn {
        min-height: 46px;
    }

    #loginModal.modal-overlay {
        padding: 0.75rem;
    }

    #loginModal .modal-content {
        width: 100%;
        padding: 1.25rem;
        border-radius: 16px;
    }

    #loginModal .modal-close {
        top: 0.85rem;
        right: 0.85rem;
        width: 34px;
        height: 34px;
    }

    html[dir="rtl"] #loginModal .modal-close {
        right: auto;
        left: 0.85rem;
    }

    #loginModal .modal-header {
        margin-bottom: 1.35rem;
    }

    #loginModal .modal-header p {
        font-size: 0.88rem;
    }

    #loginModal .form-input {
        height: 46px;
        font-size: 0.9rem;
    }

    #loginModal .login-submit-btn {
        min-height: 46px;
    }
}
/* ===== UTILITIES ===== */
.material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }
html.lang-loading { visibility: hidden; }

/* --- Reveal animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


