* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        body {
            background-color: #F5F3EF;
            color: #2D2D2D;
            line-height: 1.9;
            padding-bottom: 60px;
        }
        header {
            background-color: #E63946;
            padding: 18px 30px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 12px rgba(0,0,0,0.15);
        }
        .header-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #FFFFFF;
            text-decoration: none;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            font-family: 'Arial Black', Gadget, sans-serif;
        }
        .logo span {
            color: #457B9D;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        nav a {
            color: #FFFFFF;
            text-decoration: none;
            font-weight: 500;
            font-size: 17px;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        nav a:hover {
            color: #A8DADC;
            border-bottom: 2px solid #A8DADC;
        }
        .hamburger {
            display: none;
            font-size: 32px;
            color: #FFFFFF;
            cursor: pointer;
            z-index: 10000;
        }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 35px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            font-size: 17px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: #2A9D8F;
            color: white;
            margin-right: 18px;
        }
        .btn-download:hover {
            background-color: #21867A;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(42, 157, 143, 0.35);
        }
        .btn-login {
            background-color: #457B9D;
            color: white;
        }
        .btn-login:hover {
            background-color: #366482;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(69, 123, 157, 0.35);
        }
        .btn-container {
            margin: 50px 0;
            text-align: center;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
        }
        h1 {
            font-size: 48px;
            color: #E63946;
            text-align: center;
            margin: 60px 0 40px;
            line-height: 1.5;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            font-family: 'Georgia', serif;
        }
        h2 {
            font-size: 36px;
            color: #264653;
            margin: 70px 0 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #E63946;
            font-family: 'Georgia', serif;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: #457B9D;
        }
        h3 {
            font-size: 28px;
            color: #2A9D8F;
            margin: 50px 0 25px;
            font-family: 'Georgia', serif;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "•";
            color: #E63946;
            font-size: 35px;
            margin-right: 15px;
        }
        p {
            margin-bottom: 30px;
            font-size: 19px;
            text-align: justify;
            line-height: 1.9;
        }
        strong {
            color: #E63946;
            font-weight: 600;
        }
        .intro-image {
            width: 100%;
            height: auto;
            border-radius: 20px;
            margin: 40px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.18);
            border: 5px solid #FFFFFF;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin: 50px 0;
        }
        .feature-card {
            background-color: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            border-top: 5px solid #E63946;
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
            border-top: 5px solid #457B9D;
        }
        .feature-card h3 {
            color: #264653;
            margin-bottom: 20px;
            font-size: 24px;
        }
        .feature-card p {
            font-size: 18px;
            line-height: 1.8;
        }
        .feature-card emoji {
            font-size: 42px;
            margin-bottom: 20px;
            display: block;
            color: #E63946;
        }
        .quote {
            font-style: italic;
            border-left: 5px solid #457B9D;
            padding: 25px 30px;
            margin: 50px 0;
            color: #4A4A4A;
            font-size: 21px;
            background-color: #F8F9FA;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 15px;
            font-weight: 600;
            color: #264653;
            font-style: normal;
        }
        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .review-card {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.07);
            border-left: 4px solid #2A9D8F;
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .reviewer-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 20px;
            object-fit: cover;
            border: 3px solid #A8DADC;
        }
        .reviewer-name {
            font-weight: 600;
            color: #264653;
            font-size: 19px;
        }
        .reviewer-location {
            font-size: 15px;
            color: #777777;
            margin-top: 3px;
        }
        .rating {
            color: #FFC107;
            margin-bottom: 15px;
            font-size: 22px;
            letter-spacing: 2px;
        }
        footer {
            background-color: #2D2D2D;
            color: white;
            padding: 80px 30px 40px;
            margin-top: 100px;
        }
        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
        }
        .footer-section h3 {
            color: #E63946;
            margin-bottom: 30px;
            font-size: 24px;
            border-bottom: 2px solid #457B9D;
            padding-bottom: 15px;
            display: block;
        }
        .footer-section h3::before {
            display: none;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section li {
            margin-bottom: 18px;
        }
        .footer-section a {
            color: #E0E0E0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 18px;
            display: inline-block;
            padding: 3px 0;
        }
        .footer-section a:hover {
            color: #E63946;
            transform: translateX(5px);
        }
        .recommendation {
            background-color: #3A3A3A;
            padding: 40px;
            border-radius: 20px;
            margin: 60px 0;
            text-align: center;
            border: 2px solid #457B9D;
        }
        .recommendation h3 {
            color: #E63946;
            margin-bottom: 20px;
            font-size: 28px;
            display: block;
        }
        .recommendation h3::before {
            display: none;
        }
        .recommendation p {
            color: #F0F0F0;
            font-size: 19px;
            margin-bottom: 25px;
            line-height: 1.9;
        }
        .copyright {
            text-align: center;
            margin-top: 70px;
            padding-top: 30px;
            border-top: 1px solid #555555;
            font-size: 17px;
            color: #AAAAAA;
            line-height: 1.8;
        }
        ul {
            margin-left: 50px;
            margin-bottom: 35px;
        }
        li {
            font-size: 19px;
            margin-bottom: 15px;
            line-height: 1.8;
        }
        .desi-term {
            background-color: #FFF3CD;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 500;
            color: #856404;
        }
        .section-divider {
            height: 3px;
            width: 100%;
            background: linear-gradient(to right, transparent, #E63946, transparent);
            margin: 80px 0;
        }
        .game-stats {
            background-color: #FFFFFF;
            border-radius: 20px;
            padding: 40px;
            margin: 50px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }
        .stat-item {
            padding: 15px;
        }
        .stat-value {
            font-size: 36px;
            font-weight: 700;
            color: #E63946;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 18px;
            color: #264653;
        }
        @media (max-width: 992px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav ul {
                flex-direction: column;
                gap: 20px;
                margin-top: 25px;
                display: none;
                width: 100%;
                padding: 20px 0;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 30px;
            }
            h1 {
                font-size: 38px;
                margin: 40px 0 30px;
            }
            h2 {
                font-size: 30px;
                margin: 50px 0 25px;
            }
            h3 {
                font-size: 24px;
                margin: 40px 0 20px;
            }
            p {
                font-size: 18px;
            }
            .btn {
                padding: 12px 28px;
                font-size: 16px;
                width: 100%;
                margin-bottom: 15px;
            }
            .btn-download {
                margin-right: 0;
            }
            .feature-grid, .review-grid, .game-stats {
                gap: 25px;
            }
            .footer-container {
                gap: 40px;
            }
            ul {
                margin-left: 35px;
            }
            li {
                font-size: 18px;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 32px;
                margin: 30px 0 25px;
            }
            h2 {
                font-size: 26px;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 22px;
                margin: 35px 0 18px;
            }
            p {
                font-size: 17px;
            }
            .btn-container {
                flex-direction: column;
                gap: 15px;
            }
            .intro-image {
                margin: 30px 0;
            }
            .feature-card {
                padding: 25px;
            }
            .quote {
                padding: 20px 25px;
                font-size: 19px;
            }
            .game-stats {
                padding: 30px;
            }
            .stat-value {
                font-size: 30px;
            }
            .stat-label {
                font-size: 17px;
            }
        }
        @media (max-width: 576px) {
            header {
                padding: 15px 20px;
            }
            .logo {
                font-size: 24px;
            }
            .hamburger {
                font-size: 28px;
                top: 20px;
                right: 20px;
            }
            .container {
                padding: 0 20px;
            }
            h1 {
                font-size: 28px;
                margin: 25px 0 20px;
            }
            h2 {
                font-size: 24px;
                margin: 35px 0 18px;
            }
            h3 {
                font-size: 20px;
                margin: 30px 0 15px;
            }
            p {
                font-size: 16px;
                margin-bottom: 25px;
            }
            .btn {
                padding: 10px 24px;
                font-size: 15px;
            }
            .feature-grid, .review-grid {
                gap: 20px;
            }
            .footer-container {
                gap: 30px;
            }
            .footer-section h3 {
                font-size: 22px;
            }
            .footer-section a {
                font-size: 17px;
            }
            .copyright {
                font-size: 16px;
                padding-top: 25px;
                margin-top: 50px;
            }
            ul {
                margin-left: 30px;
            }
            li {
                font-size: 16px;
            }
            .game-stats {
                padding: 25px;
                gap: 20px;
            }
            .stat-value {
                font-size: 26px;
            }
        }
