:root {
            --primary: #0066CC;
            --secondary: #FF6B00;
            --accent: #2E8B57;
            --light: #F9FAFB;
            --dark: #0F172A;
            --shadow: 0 6px 20px rgba(0,0,0,0.2);
            --border-radius: 12px;
            --transition: all 0.3s ease-in-out;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        body {
            background-color: #F1F5F9;
            color: var(--dark);
            line-height: 1.9;
            padding-bottom: 100px;
            letter-spacing: 0.2px;
            font-size: 1.08rem;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background: linear-gradient(135deg, var(--dark), var(--primary));
            color: var(--light);
            padding: 18px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 25px;
        }
        .logo {
            font-size: 2.3rem;
            font-weight: 800;
            color: var(--secondary);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: var(--light);
            margin-left: 8px;
        }
        .logo em {
            font-style: normal;
            color: var(--accent);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.15rem;
            transition: var(--transition);
            padding: 7px 12px;
            border-radius: 6px;
            position: relative;
        }
        nav ul li a:hover {
            background-color: var(--secondary);
            color: var(--dark);
            transform: translateY(-2px);
        }
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: var(--transition);
        }
        nav ul li a:hover::after {
            width: 100%;
        }
        .nav-buttons {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        .btn {
            padding: 12px 24px;
            border: none;
            border-radius: 30px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-size: 1.05rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .btn-download {
            background-color: var(--secondary);
            color: white;
        }
        .btn-download:hover {
            background-color: #E05A00;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255,107,0,0.3);
        }
        .btn-login {
            background-color: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
        }
        .btn-login:hover {
            background-color: var(--accent);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(46,139,87,0.3);
        }
        .hamburger {
            display: none;
            font-size: 2.2rem;
            cursor: pointer;
            color: var(--light);
            background: none;
            border: none;
        }
        .hero {
            background: url('https://host.com/field-force-legends-hero.jpg') center/cover no-repeat;
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            color: var(--light);
            position: relative;
            margin-bottom: 90px;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            overflow: hidden;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0,0,0,0.85), rgba(0,0,0,0.5));
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            padding: 0 30px;
            margin-left: 5%;
        }
        .hero h1 {
            font-size: 4.2rem;
            margin-bottom: 25px;
            color: var(--secondary);
            text-shadow: 3px 3px 8px rgba(0,0,0,0.9);
            line-height: 1.3;
        }
        .hero p {
            font-size: 1.45rem;
            margin-bottom: 40px;
            text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
            font-weight: 300;
        }
        .hero-buttons {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 50px;
            margin-bottom: 100px;
        }
        .content-section {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 50px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 35px;
        }
        .sidebar-widget {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 28px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .sidebar-widget:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 22px rgba(0,0,0,0.18);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 22px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--secondary);
            font-size: 1.45rem;
            display: flex;
            align-items: center;
        }
        .sidebar-widget h3::before {
            content: '🎯';
            margin-right: 10px;
            font-size: 1.6rem;
        }
        h1, h2, h3, h4, h5 {
            color: var(--primary);
            margin-bottom: 30px;
            font-weight: 700;
            position: relative;
        }
        h1 {
            font-size: 2.8rem;
            padding-bottom: 18px;
            border-bottom: 4px solid var(--secondary);
            margin-top: 10px;
        }
        h1::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 150px;
            height: 4px;
            background-color: var(--accent);
        }
        h2 {
            font-size: 2.2rem;
            padding-bottom: 14px;
            border-bottom: 3px solid var(--secondary);
            margin-top: 60px;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 45px;
            color: var(--dark);
        }
        h4 {
            font-size: 1.5rem;
            margin-top: 30px;
            color: var(--primary);
            margin-bottom: 22px;
        }
        h5 {
            font-size: 1.25rem;
            margin-top: 25px;
            color: var(--accent);
            margin-bottom: 18px;
        }
        p {
            margin-bottom: 28px;
            font-size: 1.12rem;
            text-align: justify;
            color: #1E293B;
        }
        strong {
            color: var(--secondary);
            font-weight: 700;
        }
        em {
            color: var(--accent);
            font-style: italic;
            font-weight: 500;
        }
        ul, ol {
            margin-left: 40px;
            margin-bottom: 32px;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 16px;
            font-size: 1.08rem;
            color: #1E293B;
            padding-left: 8px;
        }
        li strong {
            color: var(--secondary);
        }
        .game-image {
            width: 100%;
            border-radius: var(--border-radius);
            margin: 35px 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
            object-fit: cover;
        }
        .game-image:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 25px rgba(0,0,0,0.2);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #64748B;
            margin-top: -25px;
            margin-bottom: 40px;
            font-size: 1.02rem;
        }
        .game-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .game-table th, .game-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #E2E8F0;
        }
        .game-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 700;
            font-size: 1.05rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .game-table tr:nth-child(even) {
            background-color: #F8FAFC;
        }
        .game-table tr:hover {
            background-color: #EFF6FF;
            transform: scale(1.01);
            transition: var(--transition);
        }
        .game-table td {
            font-size: 1.05rem;
        }
        .tabs {
            display: flex;
            margin-bottom: 40px;
            border-bottom: 2px solid #E2E8F0;
            overflow-x: auto;
            scrollbar-width: none;
            gap: 8px;
        }
        .tabs::-webkit-scrollbar {
            display: none;
        }
        .tab {
            padding: 15px 25px;
            cursor: pointer;
            background-color: #F8FAFC;
            border: none;
            font-weight: 600;
            color: var(--dark);
            transition: var(--transition);
            white-space: nowrap;
            font-size: 1.05rem;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }
        .tab.active {
            background-color: var(--primary);
            color: white;
        }
        .tab:hover:not(.active) {
            background-color: #E2E8F0;
            color: var(--primary);
            transform: translateY(-2px);
        }
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .tab-content.active {
            display: block;
        }
        .tags, .categories {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 25px 0;
        }
        .tag, .category {
            padding: 10px 18px;
            background-color: #F1F5F9;
            border-radius: 25px;
            font-size: 0.95rem;
            transition: var(--transition);
        }
        .tag a, .category a {
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .tag a::before {
            content: '#';
            margin-right: 6px;
            color: var(--secondary);
        }
        .tag:hover, .category:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,102,204,0.2);
        }
        .tag:hover a, .category:hover a {
            color: white;
        }
        .tag:hover a::before {
            color: white;
        }
        .recommendation {
            background-color: #ECFDF5;
            border-left: 7px solid var(--accent);
            padding: 32px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 45px 0;
            box-shadow: 0 5px 15px rgba(46,139,87,0.12);
        }
        .recommendation h3 {
            color: var(--dark);
            margin-bottom: 18px;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            margin-top: 0;
        }
        .recommendation h3::before {
            content: '🏆';
            margin-right: 12px;
            font-size: 2rem;
        }
        .recommendation p {
            margin-bottom: 18px;
        }
        .highlight {
            background-color: #FFF7ED;
            border-radius: var(--border-radius);
            padding: 28px;
            margin: 35px 0;
            border-left: 5px solid var(--secondary);
        }
        .highlight h4 {
            margin-top: 0;
            color: var(--dark);
            display: flex;
            align-items: center;
        }
        .highlight h4::before {
            content: '🔥';
            margin-right: 10px;
            font-size: 1.6rem;
        }
        .tip {
            background-color: #EFF6FF;
            border-radius: var(--border-radius);
            padding: 22px;
            margin: 30px 0;
            display: flex;
            align-items: flex-start;
        }
        .tip::before {
            content: '💡';
            font-size: 1.8rem;
            margin-right: 15px;
            margin-top: 5px;
        }
        .sidebar-widget ul {
            margin-left: 20px;
        }
        .sidebar-widget li {
            margin-bottom: 12px;
        }
        .sidebar-widget a {
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
        }
        .sidebar-widget a:hover {
            color: var(--primary);
            padding-left: 4px;
        }
        .stats-box {
            background-color: #F8FAFC;
            border-radius: var(--border-radius);
            padding: 18px;
            margin-top: 18px;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #E2E8F0;
        }
        .stat-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .stat-label {
            font-weight: 600;
            color: var(--dark);
        }
        .stat-value {
            color: var(--secondary);
            font-weight: 700;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 70px 0 40px;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 45px;
            margin-bottom: 50px;
        }
        .footer-column h3 {
            color: var(--secondary);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--accent);
            font-size: 1.5rem;
            margin-top: 0;
        }
        .footer-column ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-column ul li {
            margin-bottom: 15px;
        }
        .footer-column ul li a {
            color: #CBD5E1;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.05rem;
        }
        .footer-column ul li a:hover {
            color: var(--secondary);
            padding-left: 8px;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 35px;
            border-top: 1px solid #334155;
        }
        .footer-bottom p {
            text-align: center;
            color: #94A3B8;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: #334155;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        .social-icon a {
            color: white;
            font-size: 1.2rem;
            text-decoration: none;
        }
        .social-icon:hover {
            background-color: var(--secondary);
            transform: translateY(-4px);
            box-shadow: 0 5px 15px rgba(255,107,0,0.25);
        }
        @media (max-width: 1200px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero h1 {
                font-size: 3.8rem;
            }
            .hero p {
                font-size: 1.35rem;
            }
        }
        @media (max-width: 992px) {
            .header-content {
                justify-content: space-between;
            }
            nav {
                display: none;
                width: 100%;
                margin-top: 25px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 15px;
            }
            nav ul li {
                margin: 0;
            }
            nav ul li a {
                display: block;
                padding: 10px 0;
                font-size: 1.15rem;
            }
            .hamburger {
                display: block;
            }
            .hero {
                height: 75vh;
            }
            .hero h1 {
                font-size: 3.2rem;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 768px) {
            .nav-buttons {
                display: none;
            }
            .hero {
                height: 70vh;
                margin-bottom: 70px;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .hero p {
                font-size: 1.25rem;
            }
            .hero-buttons {
                gap: 15px;
            }
            .btn {
                padding: 10px 20px;
                font-size: 1rem;
            }
            .content-section {
                padding: 35px;
            }
            .sidebar-widget {
                padding: 22px;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1.05rem;
                line-height: 1.8;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.8rem;
            }
            .hero {
                height: 65vh;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .hero p {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }
            .btn {
                width: 100%;
                margin-bottom: 12px;
            }
            .content-section {
                padding: 25px;
            }
            ul, ol {
                margin-left: 25px;
            }
            .game-table th, .game-table td {
                padding: 12px;
                font-size: 0.95rem;
            }
            .tabs {
                margin-bottom: 30px;
            }
            .tab {
                padding: 12px 18px;
                font-size: 0.95rem;
            }
            .recommendation {
                padding: 22px;
            }
            .footer {
                padding: 50px 0 30px;
            }
        }
        img {
            opacity: 0;
            animation: imageFadeIn 0.8s ease-in-out forwards;
        }
        @keyframes imageFadeIn {
            from { opacity: 0; transform: scale(0.98); }
            to { opacity: 1; transform: scale(1); }
        }
        html {
            scroll-behavior: smooth;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            box-shadow: var(--shadow);
            cursor: pointer;
            transition: var(--transition);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--secondary);
            transform: translateY(-4px);
        }
        .desi-badge {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 4px 10px;
            border-radius: 18px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        .festival-tag {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
            margin-left: 4px;
        }
