        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #2c3e50;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #165dff;
            color: #ffffff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 3px 15px rgba(0,0,0,0.15);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: #ffdd00;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            text-decoration: none;
            letter-spacing: 0.5px;
        }
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        .nav-links li a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 14px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav-links li a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .daman-games-link {
            background-color: #ff6b00;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #165dff;
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 40px;
            padding-bottom: 15px;
            border-bottom: 4px solid #ff6b00;
        }
        h2 {
            color: #165dff;
            font-size: 2rem;
            margin: 50px 0 25px;
            padding-left: 15px;
            border-left: 5px solid #ff6b00;
        }
        h3 {
            color: #e63946;
            font-size: 1.5rem;
            margin: 35px 0 20px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.1rem;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 700;
            color: #165dff;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn-section {
            text-align: center;
            margin: 60px 0;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 16px 40px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.25rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .download-btn {
            background-color: #165dff;
            color: #fff;
        }
        .login-btn {
            background-color: #ff6b00;
            color: #fff;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.18);
        }
        .img-container {
            text-align: center;
            margin: 50px 0;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border: 3px solid #ffffff;
        }
        .stats-card {
            background-color: #ffffff;
            border-radius: 15px;
            padding: 30px;
            margin: 50px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.09);
            border-top: 6px solid #165dff;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 25px;
            background-color: #e8f3ff;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.03);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #165dff;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #333;
            font-weight: 600;
        }
        .reviews-container {
            background-color: #ffffff;
            border-radius: 15px;
            padding: 35px;
            margin: 50px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.09);
        }
        .review-card {
            margin-bottom: 35px;
            padding-bottom: 35px;
            border-bottom: 1px solid #f0f0f0;
        }
        .review-card:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .reviewer-name {
            font-weight: 700;
            color: #165dff;
            font-size: 1.2rem;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .reviewer-name::before {
            content: "👤";
        }
        .review-rating {
            color: #ffb300;
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .review-text {
            font-size: 1.1rem;
            color: #4a5568;
            line-height: 1.8;
        }
        .tips-list {
            margin: 30px 0 30px 50px;
        }
        .tips-list li {
            margin-bottom: 22px;
            font-size: 1.1rem;
            color: #333;
            position: relative;
            padding-left: 15px;
        }
        .tips-list li::before {
            content: "•";
            color: #ff6b00;
            font-weight: bold;
            position: absolute;
            left: -15px;
        }
        .tips-list li strong {
            color: #165dff;
        }
        .tags-section {
            margin: 60px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e8f3ff;
            color: #165dff;
            padding: 10px 22px;
            border-radius: 30px;
            margin: 10px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #165dff;
            color: #ffffff;
            transform: translateY(-3px);
        }
        .game-types-section {
            margin: 60px 0;
        }
        .type-link {
            color: #165dff;
            text-decoration: none;
            margin-right: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .type-link:hover {
            color: #e63946;
            text-decoration: underline;
        }
        footer {
            background-color: #0a2463;
            color: #ffffff;
            padding: 60px 20px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h4 {
            margin-bottom: 25px;
            font-size: 1.4rem;
            color: #ffdd00;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255,221,0,0.3);
            display: inline-block;
        }
        .daman-recommendation {
            background-color: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.15);
            margin-top: 40px;
            font-size: 1rem;
            color: #e2e8f0;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            .mobile-menu-toggle {
                display: block;
                position: absolute;
                right: 20px;
                top: 25px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                gap: 20px;
                width: 100%;
                margin-top: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 2.3rem;
                margin-bottom: 30px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 15px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .btn-section {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            .btn {
                width: 90%;
                text-align: center;
                justify-content: center;
                padding: 14px 20px;
                font-size: 1.1rem;
            }
            .type-link {
                display: block;
                margin-bottom: 20px;
                margin-right: 0;
            }
            .tips-list {
                margin-left: 30px;
            }
            .tag {
                margin: 8px 5px;
                padding: 8px 15px;
                font-size: 0.9rem;
            }
        }
