        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            line-height: 1.8;
            color: #222831;
            background-color: #f0f4f8;
            padding-bottom: 80px;
            font-size: 16px;
            word-spacing: 0.5px;
        }
        .header {
            background: linear-gradient(135deg, #0f4c81, #e63946);
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 12px rgba(0,0,0,0.35);
        }
        .container {
            width: 93%;
            max-width: 1350px;
            margin: 0 auto;
        }
        .logo {
            font-size: 2.1rem;
            font-weight: 700;
            color: #ffd166;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.7px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.25);
            text-transform: capitalize;
        }
        .logo span {
            color: #ffffff;
            font-weight: 500;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }
        .nav-links li {
            margin-left: 38px;
            position: relative;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            padding: 6px 0;
            font-weight: 500;
        }
        .nav-links a:hover {
            color: #ffd166;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2.5px;
            background-color: #ffd166;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .btn {
            padding: 13px 26px;
            border-radius: 9px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            margin-left: 22px;
            border: none;
            cursor: pointer;
            font-size: 1.05rem;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn-download {
            background-color: #28a745;
            color: white;
            box-shadow: 0 4px 0 #218838;
        }
        .btn-download:hover {
            background-color: #218838;
            transform: translateY(-4px);
            box-shadow: 0 7px 0 #1e7e34;
            color: #f8f9fa;
        }
        .btn-download:active {
            transform: translateY(2px);
            box-shadow: 0 3px 0 #1e7e34;
        }
        .btn-login {
            background-color: #17a2b8;
            color: white;
            box-shadow: 0 4px 0 #138496;
        }
        .btn-login:hover {
            background-color: #138496;
            transform: translateY(-4px);
            box-shadow: 0 7px 0 #0f6674;
            color: #f8f9fa;
        }
        .btn-login:active {
            transform: translateY(2px);
            box-shadow: 0 3px 0 #0f6674;
        }
        .hamburger {
            display: none;
            font-size: 2.4rem;
            cursor: pointer;
            color: white;
            background: none;
            border: none;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://host.com/images/glider-fury-india-hero.jpg') center/cover no-repeat;
            color: white;
            padding: 140px 0;
            text-align: center;
            margin-bottom: 80px;
            border-radius: 0 0 25px 25px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://host.com/images/flight-trails.png') repeat;
            opacity: 0.12;
            animation: float 25s linear infinite;
        }
        @keyframes float {
            0% { transform: translate(0, 0); }
            50% { transform: translate(60px, 60px); }
            100% { transform: translate(0, 0); }
        }
        .hero h1 {
            font-size: 4.2rem;
            margin-bottom: 30px;
            color: #ffd166;
            text-shadow: 0 4px 8px rgba(0,0,0,0.35);
            line-height: 1.35;
            text-transform: capitalize;
        }
        .hero p {
            font-size: 1.5rem;
            max-width: 950px;
            margin: 0 auto 45px;
            color: #f8f9fa;
            text-shadow: 0 2px 5px rgba(0,0,0,0.25);
            word-spacing: 1px;
        }
        .hero .btn {
            margin: 0 12px 20px;
            min-width: 190px;
        }
        .section {
            margin-bottom: 90px;
            background-color: white;
            padding: 45px;
            border-radius: 20px;
            box-shadow: 0 6px 22px rgba(0,0,0,0.09);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .section:hover {
            transform: translateY(-7px);
            box-shadow: 0 10px 28px rgba(0,0,0,0.12);
        }
        .section h2 {
            font-size: 2.7rem;
            margin-bottom: 35px;
            color: #0f4c81;
            border-bottom: 5px solid #ffd166;
            padding-bottom: 15px;
            display: inline-block;
            line-height: 1.25;
            text-transform: capitalize;
        }
        .section h3 {
            font-size: 1.9rem;
            margin: 45px 0 25px;
            color: #e63946;
            position: relative;
            padding-left: 25px;
            text-transform: capitalize;
        }
        .section h3::before {
            content: '✈️';
            position: absolute;
            left: 0;
            top: 3px;
            font-size: 1.8rem;
        }
        .section h4 {
            font-size: 1.5rem;
            margin: 35px 0 18px;
            color: #28a745;
            text-transform: capitalize;
        }
        .section p {
            margin-bottom: 28px;
            font-size: 1.15rem;
            text-align: justify;
            color: #343a40;
            word-spacing: 0.8px;
        }
        .section ul {
            margin-left: 45px;
            margin-bottom: 35px;
        }
        .section ul li {
            margin-bottom: 18px;
            font-size: 1.1rem;
            color: #2c3e50;
            position: relative;
            padding-left: 20px;
        }
        .section ul li::before {
            content: '•';
            position: absolute;
            left: -25px;
            color: #ffd166;
            font-weight: bold;
            font-size: 1.7rem;
        }
        .section ol {
            margin-left: 45px;
            margin-bottom: 35px;
        }
        .section ol li {
            margin-bottom: 18px;
            font-size: 1.1rem;
            color: #2c3e50;
            padding-left: 15px;
        }
        .highlight {
            background-color: #fff8e8;
            padding: 25px;
            border-left: 6px solid #ffd166;
            margin: 40px 0;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        }
        .highlight strong {
            color: #0f4c81;
            font-size: 1.2rem;
        }
        .game-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 35px;
            margin: 60px 0;
        }
        .feature-card {
            background-color: #f8f9fa;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 5px 18px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 6px solid #17a2b8;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
            border-top-color: #ffd166;
        }
        .feature-card h4 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #0f4c81;
            display: flex;
            align-items: center;
        }
        .feature-card h4 span {
            margin-right: 12px;
            font-size: 1.8rem;
        }
        .screenshot-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin: 45px 0;
        }
        .screenshot-gallery img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 18px rgba(0,0,0,0.18);
            transition: all 0.4s ease;
            border: 4px solid #f1f3f5;
            loading: "lazy";
        }
        .screenshot-gallery img:hover {
            transform: scale(1.04);
            box-shadow: 0 12px 25px rgba(0,0,0,0.22);
            border-color: #ffd166;
        }
        .table-container {
            overflow-x: auto;
            margin: 45px 0;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.07);
        }
        .game-stats {
            width: 100%;
            border-collapse: collapse;
        }
        .game-stats th, .game-stats td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid #e9ecef;
        }
        .game-stats th {
            background-color: #0f4c81;
            color: white;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 0.7px;
        }
        .game-stats tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .game-stats tr:hover {
            background-color: #f1f8e9;
            transform: scale(1.015);
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .game-stats td {
            font-size: 1.1rem;
            color: #343a40;
        }
        .tabs {
            display: flex;
            border-bottom: 3px solid #e9ecef;
            margin: 45px 0 35px;
            overflow-x: auto;
            scrollbar-width: none;
        }
        .tabs::-webkit-scrollbar {
            display: none;
        }
        .tab-btn {
            padding: 14px 28px;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.15rem;
            font-weight: 600;
            color: #6c757d;
            transition: all 0.3s ease;
            white-space: nowrap;
            text-transform: capitalize;
        }
        .tab-btn.active {
            color: #0f4c81;
            border-bottom: 4px solid #ffd166;
        }
        .tab-btn:hover {
            color: #0f4c81;
            background-color: #f8f9fa;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
            animation: fadeIn 0.6s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .cta-section {
            background: linear-gradient(135deg, #0f4c81, #e63946);
            color: white;
            padding: 70px 45px;
            border-radius: 20px;
            text-align: center;
            margin: 90px 0;
            box-shadow: 0 12px 35px rgba(0,0,0,0.25);
        }
        .cta-section h2 {
            color: white;
            border-bottom: 5px solid #ffd166;
            margin-bottom: 35px;
            display: inline-block;
        }
        .cta-section p {
            font-size: 1.3rem;
            max-width: 850px;
            margin: 0 auto 45px;
            color: #f8f9fa;
            text-align: center;
        }
        .footer {
            background-color: #0f4c81;
            color: white;
            padding: 90px 0 40px;
            border-radius: 25px 25px 0 0;
            margin-top: 120px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            margin-bottom: 70px;
        }
        .footer-column h3 {
            font-size: 1.7rem;
            margin-bottom: 30px;
            color: #ffd166;
            border-bottom: 3px solid #ffd166;
            padding-bottom: 12px;
            display: inline-block;
            text-transform: capitalize;
        }
        .footer-column ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-column ul li {
            margin-bottom: 18px;
            padding-left: 0;
        }
        .footer-column ul li::before {
            display: none;
        }
        .footer-column a {
            color: #e9ecef;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        .footer-column a:hover {
            color: #ffd166;
            padding-left: 10px;
        }
        .game-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 25px 0;
        }
        .game-category {
            background-color: #1a374d;
            padding: 10px 18px;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        .game-category a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            text-transform: capitalize;
        }
        .game-category:hover {
            background-color: #ffd166;
        }
        .game-category:hover a {
            color: #0f4c81;
            padding-left: 0;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 25px 0;
        }
        .tag {
            background-color: #27496d;
            padding: 8px 16px;
            border-radius: 22px;
            transition: all 0.3s ease;
        }
        .tag a {
            color: #f8f9fa;
            text-decoration: none;
            font-size: 0.95rem;
            text-transform: lowercase;
        }
        .tag:hover {
            background-color: #28a745;
        }
        .tag:hover a {
            color: white;
            padding-left: 0;
        }
        .daman-recommendation {
            background-color: #f8f9fa;
            padding: 35px;
            border-radius: 15px;
            margin: 45px 0;
            border-left: 6px solid #17a2b8;
        }
        .daman-recommendation h4 {
            font-size: 1.6rem;
            margin-bottom: 25px;
            color: #0f4c81;
        }
        .daman-recommendation p {
            color: #2c3e50;
            font-size: 1.15rem;
            line-height: 1.9;
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #27496d;
            font-size: 1.05rem;
            color: #e9ecef;
            line-height: 1.8;
        }
        .copyright a {
            color: #ffd166;
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
            padding-left: 0;
        }
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3.6rem;
            }
            .section h2 {
                font-size: 2.4rem;
            }
            .screenshot-gallery {
                grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                width: 100%;
                background-color: #0f4c81;
                padding: 35px 0;
                box-shadow: 0 12px 15px rgba(0,0,0,0.35);
                border-radius: 0 0 20px 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 18px 0 18px 35px;
                width: 100%;
            }
            .nav-links a {
                font-size: 1.25rem;
                display: block;
            }
            .btn {
                margin: 12px 0 12px 35px;
                width: calc(100% - 70px);
                margin-left: 35px;
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 110px 0;
            }
            .hero h1 {
                font-size: 3.1rem;
            }
            .hero p {
                font-size: 1.3rem;
            }
            .game-features {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 1.8rem;
            }
            .hero {
                padding: 90px 0;
            }
            .hero h1 {
                font-size: 2.7rem;
            }
            .section {
                padding: 35px;
            }
            .section h2 {
                font-size: 2.1rem;
            }
            .section h3 {
                font-size: 1.7rem;
            }
            .screenshot-gallery {
                grid-template-columns: 1fr;
            }
            .footer-content {
                gap: 40px;
            }
        }
        @media (max-width: 576px) {
            .header {
                padding: 18px 0;
            }
            .logo {
                font-size: 1.6rem;
            }
            .nav-links {
                top: 82px;
            }
            .hero {
                padding: 70px 0;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .hero p {
                font-size: 1.15rem;
            }
            .hero .btn {
                width: 92%;
                margin: 0 auto 18px;
                display: block;
            }
            .section {
                padding: 30px;
                margin-bottom: 60px;
            }
            .section h2 {
                font-size: 1.9rem;
            }
            .section h3 {
                font-size: 1.6rem;
            }
            .highlight {
                padding: 20px;
            }
            .game-features {
                grid-template-columns: 1fr;
            }
            .cta-section {
                padding: 50px 25px;
            }
            .footer {
                padding: 70px 0 30px;
            }
            .footer-content {
                gap: 30px;
            }
        }
        @media print {
            body {
                background-color: white;
                color: black;
            }
            .header, .hero, .footer, .btn, .hamburger {
                display: none;
            }
            .section {
                box-shadow: none;
                padding: 0;
                margin-bottom: 40px;
            }
            .screenshot-gallery img {
                border: 1px solid #ccc;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
