:root {
            --primary: #0b5ed7;
            --secondary: #10b981;
            --accent: #f59e0b;
            --light: #f3f4f6;
            --dark: #1f2937;
            --shadow: 0 4px 12px rgba(0,0,0,0.18);
            --border-radius: 12px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.9;
            color: var(--dark);
            background-color: #f8fafc;
            padding-bottom: 60px;
            scroll-behavior: smooth;
        }
        .container {
            width: 92%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            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;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: linear-gradient(90deg, var(--accent), white);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .logo span {
            color: var(--accent);
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 1.05rem;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.25);
            color: var(--accent);
            transform: translateY(-1px);
        }
        .nav-buttons {
            display: flex;
            gap: 18px;
        }
        .btn {
            padding: 10px 24px;
            border: none;
            border-radius: 35px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-size: 1.02rem;
        }
        .btn-download {
            background-color: var(--accent);
            color: var(--dark);
            box-shadow: 0 3px 8px rgba(245,158,11,0.3);
        }
        .btn-download:hover {
            background-color: #eab308;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(245,158,11,0.4);
        }
        .btn-login {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        .btn-login:hover {
            background-color: white;
            color: var(--primary);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 80px;
            left: 0;
            right: 0;
            background-color: var(--primary);
            padding: 25px;
            box-shadow: var(--shadow);
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.15);
            font-size: 1.1rem;
        }
        .mobile-nav .btn {
            margin-top: 10px;
            width: 100%;
        }
        .hero {
            background: url('https://via.placeholder.com/1920x650?text=Meghalaya+Mighty+Fighter+Hero+Image') no-repeat center center;
            background-size: cover;
            padding: 120px 0;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0,0,0,0.65), rgba(11,94,215,0.4));
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            text-shadow: 0 3px 8px rgba(0,0,0,0.6);
            line-height: 1.3;
        }
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .hero .btn {
            padding: 12px 30px;
            font-size: 1.1rem;
        }
        main {
            padding: 70px 0;
        }
        .section {
            margin-bottom: 90px;
            background-color: white;
            border-radius: var(--border-radius);
            padding: 50px;
            box-shadow: var(--shadow);
            border-top: 5px solid var(--primary);
        }
        .section-title {
            font-size: 2.3rem;
            color: var(--primary);
            margin-bottom: 35px;
            padding-bottom: 18px;
            border-bottom: 4px solid var(--accent);
            display: inline-block;
            line-height: 1.2;
        }
        .section-subtitle {
            font-size: 1.6rem;
            color: var(--secondary);
            margin: 40px 0 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .section-subtitle::before {
            content: '•';
            color: var(--accent);
            font-size: 2rem;
        }
        .content-paragraph {
            margin-bottom: 30px;
            font-size: 1.1rem;
            text-align: justify;
            color: #374151;
        }
        .content-paragraph strong {
            color: var(--primary);
        }
        .highlight {
            background-color: rgba(245,158,11,0.08);
            border-left: 5px solid var(--accent);
            padding: 20px 25px;
            margin: 40px 0;
            border-radius: 0 8px 8px 0;
            background-image: linear-gradient(90deg, rgba(245,158,11,0.05), transparent);
        }
        .highlight strong {
            color: var(--accent);
            font-size: 1.15rem;
        }
        .highlight p {
            margin-bottom: 0;
            font-size: 1.1rem;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin: 50px 0;
        }
        .feature-card {
            background-color: #f9fafb;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: 0 3px 10px rgba(0,0,0,0.07);
            transition: all 0.4s ease;
            border-top: 3px solid var(--secondary);
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
            border-top-color: var(--accent);
        }
        .feature-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
        }
        .feature-card h3 {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        .feature-card p {
            font-size: 1.05rem;
            color: #4b5563;
            line-height: 1.8;
        }
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 50px 0;
        }
        .gallery-img {
            width: 100%;
            height: 230px;
            object-fit: cover;
            border-radius: var(--border-radius);
            transition: transform 0.4s ease;
            border: 3px solid #f3f4f6;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .gallery-img:hover {
            transform: scale(1.05);
            border-color: var(--accent);
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }
        .table-container {
            overflow-x: auto;
            margin: 50px 0;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        th, td {
            padding: 18px 20px;
            text-align: left;
            border-bottom: 1px solid #e5e7eb;
        }
        th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        tr:hover {
            background-color: #f9fafb;
        }
        tr:nth-child(even) {
            background-color: #f3f4f6;
        }
        tr:nth-child(even):hover {
            background-color: #e9ecef;
        }
        td {
            font-size: 1.05rem;
            color: #374151;
        }
        .quote {
            font-style: italic;
            color: #4b5563;
            padding: 25px;
            border-left: 5px solid var(--secondary);
            margin: 40px 0;
            font-size: 1.2rem;
            background-color: #f9fafb;
            border-radius: 0 8px 8px 0;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 15px;
            font-weight: 700;
            color: var(--primary);
            font-style: normal;
            font-size: 1.05rem;
        }
        .tabs {
            display: flex;
            border-bottom: 2px solid #e5e7eb;
            margin: 40px 0;
            position: relative;
        }
        .tabs::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            height: 2px;
            background-color: var(--primary);
            transition: all 0.3s ease;
        }
        .tab {
            padding: 15px 25px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            color: #4b5563;
            position: relative;
        }
        .tab.active {
            border-bottom-color: var(--primary);
            color: var(--primary);
        }
        .tab:hover {
            color: var(--secondary);
        }
        .tab-content {
            display: none;
            padding: 25px 0;
            animation: fadeInContent 0.4s ease;
        }
        @keyframes fadeInContent {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .tab-content.active {
            display: block;
        }
        ul.custom-list {
            margin: 30px 0;
            padding-left: 25px;
            list-style-type: none;
        }
        ul.custom-list li {
            margin-bottom: 18px;
            font-size: 1.1rem;
            color: #374151;
            position: relative;
            padding-left: 25px;
        }
        ul.custom-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
            margin-right: 10px;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-item {
            background-color: #f0f9ff;
            padding: 25px;
            border-radius: var(--border-radius);
            text-align: center;
            border: 1px solid #dbeafe;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1.05rem;
            color: #4b5563;
        }
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            margin: 40px 0;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: var(--border-radius);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 80px 0 40px;
            border-top: 8px solid var(--primary);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--accent);
            position: relative;
            padding-bottom: 15px;
        }
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent);
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column ul li {
            margin-bottom: 15px;
        }
        .footer-column a {
            color: #d1d5db;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-column a:hover {
            color: var(--accent);
            padding-left: 8px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }
        .tag {
            background-color: #374151;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        .recommendation {
            background-color: #1f2937;
            padding: 30px;
            border-radius: var(--border-radius);
            margin: 40px 0;
            border-left: 5px solid var(--accent);
        }
        .recommendation h4 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .recommendation p {
            font-size: 1.1rem;
            color: #e5e7eb;
            line-height: 1.8;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #374151;
            font-size: 1.05rem;
            color: #9ca3af;
            line-height: 1.8;
        }
        .copyright a {
            color: var(--accent);
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        .game-categories {
            margin: 50px 0;
        }
        .categories-title {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 600;
        }
        .categories-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .category-item {
            background-color: #e0f2fe;
            padding: 10px 20px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .category-item a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
        }
        .category-item:hover {
            background-color: var(--primary);
        }
        .category-item:hover a {
            color: white;
        }
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3rem;
            }
            .section {
                padding: 45px;
            }
            .section-title {
                font-size: 2.1rem;
            }
            .section-subtitle {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 992px) {
            nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 100px 0;
            }
            .hero h1 {
                font-size: 2.7rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .section {
                padding: 40px;
                margin-bottom: 80px;
            }
            .section-title {
                font-size: 2rem;
            }
            .feature-grid {
                gap: 30px;
            }
            .footer-content {
                gap: 40px;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                gap: 20px;
            }
            .nav-buttons {
                margin-left: auto;
            }
            .hero {
                padding: 80px 0;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .hero p {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }
            .hero-buttons {
                gap: 20px;
            }
            .section {
                padding: 35px 25px;
                margin-bottom: 70px;
            }
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            .section-subtitle {
                font-size: 1.4rem;
                margin: 35px 0 18px;
            }
            .content-paragraph {
                font-size: 1.05rem;
                margin-bottom: 25px;
            }
            .feature-card {
                padding: 25px;
            }
            .image-gallery {
                gap: 20px;
            }
            .gallery-img {
                height: 180px;
            }
            .tabs {
                flex-wrap: wrap;
            }
            .tab {
                padding: 12px 20px;
                font-size: 1rem;
                flex: 1 1 auto;
                text-align: center;
            }
            .stats-box {
                gap: 20px;
            }
            .stat-value {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 576px) {
            .header-content {
                flex-wrap: wrap;
                justify-content: space-between;
            }
            .logo {
                font-size: 1.6rem;
            }
            .nav-buttons {
                margin-top: 15px;
                width: 100%;
                justify-content: center;
                gap: 15px;
            }
            .btn {
                padding: 8px 18px;
                font-size: 1rem;
            }
            .hero {
                padding: 60px 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .hero .btn {
                padding: 10px 25px;
                width: 100%;
                max-width: 300px;
            }
            .section {
                padding: 30px 20px;
                margin-bottom: 60px;
            }
            .section-title {
                font-size: 1.6rem;
                padding-bottom: 15px;
            }
            .section-subtitle {
                font-size: 1.3rem;
                margin: 30px 0 15px;
            }
            .content-paragraph {
                font-size: 1rem;
                margin-bottom: 25px;
            }
            .highlight {
                padding: 15px 20px;
            }
            .feature-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .feature-card i {
                font-size: 2rem;
            }
            .feature-card h3 {
                font-size: 1.3rem;
            }
            .quote {
                padding: 20px;
                font-size: 1.1rem;
            }
            .table-container {
                margin: 30px 0;
            }
            th, td {
                padding: 12px 15px;
                font-size: 1rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            .copyright {
                font-size: 1rem;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
        }
        @keyframes pulse {
            0% { opacity: 0.6; }
            50% { opacity: 1; }
            100% { opacity: 0.6; }
        }
        .tab.active::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            right: 0;
            height: 3px;
            background-color: var(--accent);
            animation: pulse 2s infinite;
        }
