        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            scroll-behavior: smooth;
        }
        body {
            background-color: #f0f4f8;
            color: #2d3436;
            padding-bottom: 80px;
            overflow-x: hidden;
        }
        .container {
            width: 93%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #0f4c81 0%, #1a5f99 100%);
            color: #ffffff;
            padding: 20px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.18);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.1rem;
            font-weight: 700;
            color: #ffd700;
            text-transform: uppercase;
            letter-spacing: 0.7px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.25);
            display: flex;
            align-items: center;
        }
        .logo span {
            color: #ffffff;
            font-style: italic;
            margin-left: 5px;
        }
        .logo::after {
            content: "🇮🇳";
            margin-left: 10px;
            font-size: 1.8rem;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
            list-style: none;
        }
        .nav-links a {
            color: #f8f9fa;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffd700;
            transition: width 0.3s ease;
        }
        .nav-links a:hover {
            color: #ffd700;
            transform: translateY(-2px);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .btn {
            padding: 12px 26px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            cursor: pointer;
            text-align: center;
            font-size: 1.02rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #28a745;
            color: white;
            border: 1px solid #218838;
        }
        .btn-download:hover {
            background-color: #218838;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(40, 167, 69, 0.4);
            color: white;
        }
        .btn-login {
            background-color: #ff7900;
            color: white;
            border: 1px solid #e06c00;
        }
        .btn-login:hover {
            background-color: #e06c00;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 121, 0, 0.4);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: #ffd700;
            background: transparent;
            border: none;
            padding: 5px;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.68)), url('glider-legend-hero.jpg') center/cover no-repeat;
            padding: 120px 0;
            color: white;
            text-align: center;
            margin-bottom: 70px;
            border-radius: 0 0 25px 25px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(15, 76, 129, 0.25) 0%, rgba(0,0,0,0.75) 100%);
            z-index: -1;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 30px;
            color: #ffd700;
            text-shadow: 0 4px 10px rgba(0,0,0,0.35);
            line-height: 1.3;
            font-weight: 700;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 45px;
            color: #f8f9fa;
            line-height: 1.8;
            font-weight: 400;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 25px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
        }
        .section {
            background-color: white;
            padding: 45px;
            border-radius: 20px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.09);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #f0f0f0;
        }
        .section:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.14);
        }
        .section h2 {
            color: #0f4c81;
            margin-bottom: 35px;
            font-size: 2.3rem;
            border-bottom: 4px solid #ffd700;
            padding-bottom: 15px;
            position: relative;
            font-weight: 700;
        }
        .section h2::after {
            content: '✈️';
            margin-left: 12px;
        }
        .section h3 {
            color: #1a5f99;
            margin: 40px 0 20px;
            font-size: 1.7rem;
            display: flex;
            align-items: center;
            font-weight: 600;
        }
        .section h3::before {
            content: '🔹';
            margin-right: 12px;
            color: #ff7900;
        }
        .section h4 {
            color: #2c3e50;
            margin: 30px 0 15px;
            font-size: 1.3rem;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        .section h4::before {
            content: '•';
            margin-right: 10px;
            color: #0f4c81;
            font-size: 1.8rem;
        }
        .section p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #34495e;
            line-height: 1.8;
            text-align: justify;
        }
        .section ul {
            margin: 30px 0 30px 45px;
        }
        .section li {
            margin-bottom: 18px;
            font-size: 1.08rem;
            color: #2c3e50;
            line-height: 1.8;
            position: relative;
        }
        .section li::before {
            content: '✅';
            position: absolute;
            left: -35px;
            top: 2px;
            font-size: 1rem;
            color: #28a745;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 6px solid #ffd700;
            padding: 25px;
            margin: 35px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.18);
        }
        .highlight p {
            margin-bottom: 0;
            font-size: 1.15rem;
            color: #2d3436;
            font-weight: 500;
            line-height: 1.8;
        }
        .highlight strong {
            color: #ff7900;
        }
        .image-container {
            margin: 45px 0;
            text-align: center;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
            border: 1px solid #e9ecef;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease;
        }
        .image-container:hover img {
            transform: scale(1.03);
        }
        .image-container p {
            margin-top: 20px;
            font-style: italic;
            color: #6c757d;
            padding: 15px;
            background-color: #f8f9fa;
            margin-bottom: 0;
            font-size: 1rem;
        }
        .table-container {
            overflow-x: auto;
            margin: 40px 0;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.07);
        }
        .game-table {
            width: 100%;
            border-collapse: collapse;
        }
        .game-table th, .game-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid #e9ecef;
        }
        .game-table th {
            background-color: #f8f9fa;
            font-weight: 600;
            color: #0f4c81;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .game-table tr:hover {
            background-color: #fafbfc;
        }
        .game-table tr:nth-child(even) {
            background-color: #f9fafc;
        }
        .tabs {
            display: flex;
            border-bottom: 2px solid #e9ecef;
            margin: 35px 0;
            overflow-x: auto;
            scrollbar-width: none;
            padding-bottom: 5px;
        }
        .tabs::-webkit-scrollbar {
            display: none;
        }
        .tab {
            padding: 15px 28px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            font-weight: 600;
            transition: all 0.3s ease;
            color: #6c757d;
            white-space: nowrap;
            font-size: 1.05rem;
        }
        .tab.active {
            border-bottom-color: #ffd700;
            color: #0f4c81;
            background-color: #faf6ed;
            border-radius: 8px 8px 0 0;
        }
        .tab:hover {
            color: #0f4c81;
            background-color: #f8f9fa;
            border-radius: 8px 8px 0 0;
        }
        .tab-content {
            display: none;
            padding: 30px 0;
        }
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .quote {
            font-style: italic;
            border-left: 4px solid #1a5f99;
            padding: 20px 25px;
            margin: 30px 0;
            background-color: #f8f9fa;
            border-radius: 0 8px 8px 0;
        }
        .quote p {
            color: #2c3e50;
            font-size: 1.1rem;
            margin-bottom: 0;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 10px;
            color: #6c757d;
            font-weight: 500;
            font-style: normal;
        }
        .stat-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-item {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border: 1px solid #e9ecef;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0f4c81;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1rem;
            color: #6c757d;
            font-weight: 500;
        }
        footer {
            background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
            color: white;
            padding: 70px 0 40px;
            margin-top: 90px;
            border-radius: 25px 25px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #ffd700;
            position: relative;
            padding-bottom: 15px;
            font-weight: 600;
        }
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #ffd700;
        }
        .footer-column ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-column li {
            margin-bottom: 18px;
        }
        .footer-column a {
            color: #e3f2fd;
            text-decoration: none;
            transition: color 0.3s ease, padding-left 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-column a:hover {
            color: #ffd700;
            padding-left: 8px;
        }
        .recommendation {
            background-color: #3949ab;
            padding: 35px;
            border-radius: 15px;
            margin-bottom: 50px;
            border: 1px solid #5c6bc0;
        }
        .recommendation h4 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            font-weight: 600;
        }
        .recommendation h4::before {
            content: '🌟';
            margin-right: 12px;
        }
        .recommendation p {
            color: #f5f5f5;
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .game-categories, .game-tags {
            margin: 25px 0;
        }
        .game-categories h4, .game-tags h4 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 1.2rem;
            font-weight: 600;
        }
        .category-list, .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .category-list a, .tag-list a {
            background-color: #5c6bc0;
            color: white;
            padding: 10px 18px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .category-list a:hover, .tag-list a:hover {
            background-color: #ffd700;
            color: #1a237e;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #5c6bc0;
            color: #e3f2fd;
            font-size: 1.05rem;
            line-height: 2;
        }
        .copyright p {
            margin-bottom: 15px;
        }
        .copyright a {
            color: #ffd700;
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3rem;
            }
            .section h2 {
                font-size: 2.1rem;
            }
            .section h3 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 25px;
            }
            .hero {
                padding: 100px 0;
            }
            .hero h1 {
                font-size: 2.7rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .section {
                padding: 40px;
            }
            .section h2 {
                font-size: 1.9rem;
            }
            .section h3 {
                font-size: 1.5rem;
            }
            .stat-box {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                right: 0;
                background-color: #0f4c81;
                padding: 35px;
                gap: 25px;
                z-index: 999;
                border-radius: 0 0 20px 20px;
                box-shadow: 0 12px 20px rgba(0,0,0,0.25);
            }
            .nav-links.active {
                display: flex;
                animation: slideDown 0.3s ease;
            }
            @keyframes slideDown {
                from { opacity: 0; transform: translateY(-25px); }
                to { opacity: 1; transform: translateY(0); }
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 90px 0;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .hero p {
                font-size: 1.1rem;
                max-width: 90%;
            }
            .hero-buttons {
                gap: 20px;
            }
            .btn {
                padding: 11px 22px;
                font-size: 1rem;
                width: 100%;
                max-width: 320px;
            }
            .section {
                padding: 35px 25px;
            }
            .section h2 {
                font-size: 1.7rem;
                margin-bottom: 30px;
            }
            .section h3 {
                font-size: 1.4rem;
                margin: 35px 0 18px;
            }
            .section p {
                font-size: 1.05rem;
                margin-bottom: 22px;
            }
            .section ul {
                margin-left: 35px;
            }
            .section li::before {
                left: -30px;
            }
            .footer-content {
                gap: 40px;
            }
            .stat-box {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.8rem;
            }
            .hero {
                padding: 80px 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1.05rem;
            }
            .section h2 {
                font-size: 1.6rem;
            }
            .section h3 {
                font-size: 1.3rem;
            }
            .highlight {
                padding: 20px;
            }
            .game-table th, .game-table td {
                padding: 15px;
                font-size: 1rem;
            }
            .footer-column h3 {
                font-size: 1.3rem;
            }
            .copyright {
                font-size: 1rem;
            }
            .tab {
                padding: 12px 20px;
                font-size: 1rem;
            }
        }
        img {
            loading: lazy;
            max-width: 100%;
            border-radius: 10px 10px 0 0;
        }
        .section {
            contain: layout paint;
        }
        a:focus, button:focus {
            outline: 3px solid #ffd700;
            outline-offset: 3px;
        }
        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
                transform: none !important;
            }
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #1a5f99;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #0f4c81;
        }
