        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            line-height: 1.8;
            color: #2d3436;
            background-color: #f8f9fa;
            padding-bottom: 60px;
            font-size: 16px;
        }
        :root {
            --primary: #ff7600;
            --secondary: #0097e6;
            --accent: #27ae60;
            --dark: #2c3e50;
            --light: #f8f9fa;
            --text: #2d3436;
            --gray: #636e72;
            --light-gray: #b2bec3;
            --white: #ffffff;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        header {
            background-color: var(--dark);
            color: var(--white);
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: var(--shadow);
        }
        .container {
            width: 92%;
            max-width: 1300px;
            margin: 0 auto;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .logo span {
            color: var(--secondary);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        .nav-links li a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-links li a:hover {
            color: var(--primary);
        }
        .nav-links li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        .nav-links li a:hover:after {
            width: 100%;
        }
        .daman-link {
            color: var(--primary) !important;
            font-weight: 600;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--white);
            transition: color 0.3s ease;
        }
        .hamburger:hover {
            color: var(--primary);
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('glider-warrior-india-hero.jpg') center/cover no-repeat;
            padding: 150px 0;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,118,0,0.1), rgba(0,151,230,0.1));
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: var(--primary);
            text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
            line-height: 1.3;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 900px;
            margin: 0 auto 40px;
            color: var(--light);
            line-height: 1.9;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 35px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 1.15rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .btn-download {
            background-color: var(--accent);
            color: var(--white);
        }
        .btn-download:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }
        .btn-login {
            background-color: var(--primary);
            color: var(--white);
        }
        .btn-login:hover {
            background-color: #e06a00;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }
        .main-content {
            padding: 80px 0;
        }
        .section {
            margin-bottom: 100px;
        }
        .section-title {
            font-size: 2.3rem;
            color: var(--dark);
            margin-bottom: 40px;
            padding-bottom: 12px;
            border-bottom: 4px solid var(--primary);
            display: inline-block;
            position: relative;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 30%;
            height: 4px;
            background-color: var(--secondary);
        }
        .content-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
            border-top: 5px solid var(--secondary);
        }
        .content-card h3 {
            font-size: 1.7rem;
            color: var(--dark);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .content-card h3:before {
            content: '🎮';
            font-size: 1.8rem;
        }
        .content-card p {
            margin-bottom: 25px;
            font-size: 1.08rem;
            color: var(--text);
            line-height: 1.8;
            text-align: justify;
        }
        .content-card p strong {
            color: var(--primary);
            font-weight: 600;
        }
        .feature-list {
            list-style: none;
            margin: 30px 0;
        }
        .feature-list li {
            margin-bottom: 20px;
            position: relative;
            padding-left: 35px;
            font-size: 1.05rem;
            line-height: 1.7;
        }
        .feature-list li:before {
            content: '✅';
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 1.2rem;
        }
        .highlight-box {
            background-color: rgba(255,118,0,0.08);
            border-left: 4px solid var(--primary);
            padding: 25px;
            margin: 35px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box p {
            color: var(--dark);
            font-weight: 500;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .image-container {
            text-align: center;
            margin: 50px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-container figcaption {
            margin-top: 15px;
            font-size: 0.95rem;
            color: var(--gray);
            font-style: italic;
        }
        .table-container {
            overflow-x: auto;
            margin: 40px 0;
        }
        .game-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        .game-table th, .game-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid var(--light-gray);
        }
        .game-table th {
            background-color: var(--dark);
            color: var(--white);
            font-weight: 600;
            font-size: 1.05rem;
        }
        .game-table tr:hover {
            background-color: rgba(0,151,230,0.05);
        }
        .game-table tr:nth-child(even) {
            background-color: rgba(0,0,0,0.02);
        }
        .tabs {
            display: flex;
            margin-bottom: 30px;
            border-bottom: 1px solid var(--light-gray);
            overflow-x: auto;
            scrollbar-width: none;
        }
        .tabs::-webkit-scrollbar {
            display: none;
        }
        .tab {
            padding: 12px 25px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            font-weight: 600;
            color: var(--gray);
            white-space: nowrap;
            transition: all 0.3s ease;
        }
        .tab.active {
            border-bottom-color: var(--primary);
            color: var(--primary);
            background-color: rgba(255,118,0,0.05);
        }
        .tab:hover {
            color: var(--dark);
            background-color: rgba(0,0,0,0.03);
        }
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        .tab-content.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .review-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            border-top: 3px solid var(--accent);
            transition: transform 0.3s ease;
        }
        .review-card:hover {
            transform: translateY(-5px);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding-bottom: 15px;
        }
        .reviewer-name {
            font-weight: 600;
            color: var(--dark);
            font-size: 1.1rem;
        }
        .reviewer-location {
            font-size: 0.9rem;
            color: var(--gray);
            margin-top: 3px;
        }
        .rating {
            color: #ffd700;
            font-size: 1.2rem;
        }
        .review-content {
            font-size: 1.02rem;
            line-height: 1.7;
            color: var(--text);
        }
        .faq-container {
            margin: 40px 0;
        }
        .faq-item {
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .faq-question {
            background-color: var(--dark);
            color: var(--white);
            padding: 18px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            font-size: 1.05rem;
        }
        .faq-question:after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        .faq-question.active:after {
            transform: rotate(45deg);
        }
        .faq-answer {
            background-color: var(--white);
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .faq-answer.active {
            padding: 25px;
            max-height: 500px;
        }
        .faq-answer p {
            line-height: 1.8;
            color: var(--text);
            font-size: 1.02rem;
        }
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 80px 0 40px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }
        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: var(--primary);
            padding-bottom: 12px;
            border-bottom: 2px solid var(--secondary);
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links li a {
            color: var(--light-gray);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.02rem;
        }
        .footer-links li a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .recommendation {
            background-color: rgba(255,118,0,0.1);
            padding: 25px;
            border-radius: 8px;
            margin-top: 30px;
            border-left: 3px solid var(--primary);
        }
        .recommendation p {
            color: var(--light);
            font-weight: 500;
            font-size: 1.05rem;
            line-height: 1.7;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.95rem;
            color: var(--light-gray);
            line-height: 1.8;
        }
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3rem;
            }
            .nav-links {
                gap: 25px;
            }
            .content-card {
                padding: 30px;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: var(--dark);
                padding: 30px;
                gap: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin-left: 0;
            }
            .nav-links li a {
                font-size: 1.1rem;
                padding: 10px 0;
                display: block;
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 120px 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.15rem;
                padding: 0 20px;
            }
            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            .btn {
                width: 85%;
                text-align: center;
                padding: 14px 0;
            }
            .section-title {
                font-size: 2rem;
            }
            .content-card {
                padding: 25px;
            }
            .content-card h3 {
                font-size: 1.5rem;
            }
            .footer-content {
                gap: 30px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.7rem;
            }
            .hero {
                padding: 100px 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .content-card h3 {
                font-size: 1.4rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .review-grid {
                grid-template-columns: 1fr;
            }
        }
        img {
            content-visibility: auto;
            max-width: 100%;
        }
        .lazy {
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        .lazy.loaded {
            opacity: 1;
        }
        a:focus {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
            * {
                animation: none !important;
                transition: none !important;
            }
        }
