* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #1e293b;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #1e3a8a;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #fbbf24;
            font-size: 1.9rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
            font-family: 'Georgia', serif;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 32px;
        }
        .nav-links a {
            color: #f8fafc;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 6px 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #fbbf24;
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #f8fafc;
            font-size: 1.9rem;
            cursor: pointer;
            padding: 5px;
        }
        main {
            max-width: 1200px;
            margin: 45px auto;
            padding: 0 20px;
        }
        h1 {
            color: #1e3a8a;
            font-size: 3rem;
            margin-bottom: 35px;
            text-align: center;
            padding-bottom: 18px;
            border-bottom: 4px solid #fbbf24;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #1e3a8a;
            font-size: 2.3rem;
            margin: 55px 0 28px;
            padding-left: 18px;
            border-left: 5px solid #fbbf24;
        }
        h3 {
            color: #1e3a8a;
            font-size: 1.7rem;
            margin: 40px 0 18px;
            position: relative;
            padding-left: 12px;
        }
        h3:before {
            content: '▶';
            position: absolute;
            left: -18px;
            color: #fbbf24;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.18rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #1e3a8a;
            text-decoration: underline;
            text-decoration-style: dotted;
        }
        .btn-container {
            text-align: center;
            margin: 55px 0;
        }
        .btn {
            display: inline-block;
            padding: 18px 35px;
            margin: 0 15px 18px;
            background-color: #fbbf24;
            color: #1e3a8a;
            text-decoration: none;
            border-radius: 8px;
            font-size: 1.3rem;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 5px 12px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #1e3a8a;
            color: white;
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .btn-download {
            background-color: #0f766e;
            color: white;
        }
        .btn-login {
            background-color: #b91c1c;
            color: white;
        }
        .btn-download:hover, .btn-login:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .image-container {
            text-align: center;
            margin: 45px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            border: 6px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 35px;
            margin: 45px 0;
            box-shadow: 0 8px 22px rgba(0,0,0,0.1);
            border-top: 6px solid #fbbf24;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        .stat-item {
            text-align: center;
            padding: 25px;
            background-color: #f8fafc;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.07);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: bold;
            color: #1e3a8a;
            margin-bottom: 15px;
        }
        .stat-label {
            font-size: 1.2rem;
            color: #334155;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 35px;
            margin: 45px 0;
            box-shadow: 0 8px 22px rgba(0,0,0,0.1);
        }
        .review {
            border-bottom: 1px solid #e2e8f0;
            padding: 30px 0;
        }
        .review:last-child {
            border-bottom: none;
        }
        .reviewer {
            font-weight: bold;
            color: #1e3a8a;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        .review-location {
            color: #64748b;
            font-size: 1rem;
            margin-bottom: 12px;
        }
        .rating {
            color: #fbbf24;
            margin-bottom: 18px;
            font-size: 1.4rem;
        }
        .tips-list {
            margin: 30px 0 30px 60px;
        }
        .tips-list li {
            margin-bottom: 25px;
            font-size: 1.2rem;
            position: relative;
            padding-left: 12px;
        }
        .tips-list li:before {
            content: '•';
            position: absolute;
            left: -28px;
            color: #fbbf24;
            font-size: 1.8rem;
        }
        .tag-container {
            margin: 55px 0;
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 8px 22px rgba(0,0,0,0.1);
        }
        .tag {
            display: inline-block;
            background-color: #eff6ff;
            color: #1e3a8a;
            padding: 12px 22px;
            border-radius: 30px;
            margin: 0 12px 15px 0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            border: 1px solid #dbeafe;
        }
        .tag:hover {
            background-color: #1e3a8a;
            color: white;
            transform: translateY(-3px);
        }
        .game-types {
            margin: 45px 0;
        }
        .game-type-link {
            color: #1e3a8a;
            text-decoration: none;
            margin-right: 30px;
            font-weight: bold;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 4px;
        }
        .game-type-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #fbbf24;
            transition: width 0.3s ease;
        }
        .game-type-link:hover:after {
            width: 100%;
        }
        footer {
            background-color: #0f172a;
            color: #e2e8f0;
            padding: 60px 0 30px;
            margin-top: 90px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 50px;
        }
        .footer-section h3 {
            color: #fbbf24;
            margin-bottom: 30px;
            font-size: 1.6rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 18px;
        }
        .footer-links a {
            color: #e2e8f0;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.1rem;
        }
        .footer-links a:hover {
            color: #fbbf24;
        }
        .copyright {
            text-align: center;
            padding-top: 35px;
            border-top: 1px solid #334155;
            margin-top: 50px;
            font-size: 1rem;
            color: #94a3b8;
        }
        .daman-games-promo {
            background-color: rgba(251, 191, 36, 0.1);
            padding: 25px;
            border-radius: 8px;
            margin-top: 40px;
            text-align: center;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .quote-box {
            background-color: #eff6ff;
            border-left: 5px solid #3b82f6;
            padding: 25px 30px;
            margin: 40px 0;
            border-radius: 0 8px 8px 0;
        }
        .quote-text {
            font-style: italic;
            font-size: 1.2rem;
            color: #1e3a8a;
            margin-bottom: 15px;
        }
        .quote-author {
            font-weight: bold;
            color: #334155;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                width: 100%;
                background-color: #1e3a8a;
                padding: 30px 0;
                box-shadow: 0 12px 12px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 15px 0;
                text-align: center;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
                margin: 45px 0 25px;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1.15rem;
            }
            .btn {
                display: block;
                margin: 18px auto;
                width: 90%;
                padding: 18px;
                font-size: 1.25rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .tips-list {
                margin-left: 40px;
            }
            .tag {
                padding: 10px 18px;
                font-size: 1rem;
            }
            .game-type-link {
                display: inline-block;
                margin-bottom: 15px;
            }
        }
