* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        body {
            background-color: #f9f6f0;
            color: #2d2d2d;
            line-height: 1.7;
            padding-bottom: 60px;
        }
        header {
            background-color: #d92b2b;
            color: white;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 12px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.6rem;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 22px;
        }
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 22px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 4px;
            transition: background 0.3s ease;
        }
        nav a:hover, nav a.active {
            background-color: rgba(255,255,255,0.2);
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 35px 20px;
        }
        h1 {
            color: #1a365d;
            text-align: center;
            margin-bottom: 45px;
            font-size: 2.6rem;
            border-bottom: 4px solid #d92b2b;
            padding-bottom: 12px;
        }
        h2 {
            color: #1a365d;
            margin: 40px 0 22px;
            font-size: 1.9rem;
            border-left: 5px solid #d92b2b;
            padding-left: 18px;
        }
        h3 {
            color: #1a365d;
            margin: 30px 0 18px;
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .btn-group {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin: 50px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 30px;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1.2rem;
            color: white;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            min-width: 220px;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .btn-download {
            background-color: #2e7d32;
        }
        .btn-login {
            background-color: #ff8f00;
        }
        .img-container {
            text-align: center;
            margin: 40px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.12);
        }
        .stats-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .stat-label {
            font-weight: 600;
            color: #2d2d2d;
        }
        .stat-value {
            font-weight: 700;
            color: #d92b2b;
        }
        .review-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .reviewer {
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        .rating {
            color: #ffc107;
            margin-bottom: 12px;
            font-size: 1.2rem;
        }
        .tips-list {
            list-style: none;
            margin: 20px 0;
        }
        .tips-list li {
            background: white;
            padding: 18px;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.06);
            font-size: 1.1rem;
        }
        footer {
            background-color: #1a365d;
            color: white;
            padding: 50px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffd54f;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid #d92b2b;
            display: inline-block;
        }
        .game-types a, .tags a {
            display: inline-block;
            color: white;
            text-decoration: none;
            margin: 0 10px 12px 0;
            padding: 6px 14px;
            border-radius: 20px;
            background-color: rgba(255,255,255,0.15);
            transition: background 0.3s ease;
        }
        .game-types a:hover, .tags a:hover {
            background-color: #d92b2b;
        }
        .daman-note {
            margin: 30px 0;
            padding: 20px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 8px;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 1rem;
            color: #e0e0e0;
        }
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 25px;
                gap: 15px;
            }
            nav ul.show {
                display: flex;
            }
            h1 {
                font-size: 2.1rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1.05rem;
                text-align: left;
            }
            .btn {
                width: 100%;
                margin-bottom: 15px;
            }
        }
