* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #1e293b;
            color: #f8fafc;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 10px;
            color: #fbbf24;
            text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: #f8fafc;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 20px;
        }
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        nav a {
            color: #f8fafc;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        nav a:hover, nav a.active {
            background-color: rgba(251, 191, 36, 0.2);
            color: #fbbf24;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #fbbf24;
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.5rem;
            padding-bottom: 15px;
            border-bottom: 3px solid #fbbf24;
        }
        h2 {
            color: #fbbf24;
            margin: 40px 0 20px;
            font-size: 1.8rem;
            border-left: 4px solid #fbbf24;
            padding-left: 15px;
        }
        h3 {
            color: #fcd34d;
            margin: 30px 0 15px;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.8;
        }
        strong {
            color: #fcd34d;
            font-weight: 700;
        }
        .btn-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1.1rem;
            color: #0f172a;
            box-shadow: 0 3px 10px rgba(0,0,0,0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            min-width: 200px;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .btn-download {
            background-color: #10b981;
        }
        .btn-login {
            background-color: #3b82f6;
        }
        .img-container {
            text-align: center;
            margin: 30px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            border: 1px solid #334155;
        }
        .stats-card {
            background: #1e293b;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            border-top: 4px solid #fbbf24;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #334155;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .stat-label {
            font-weight: 600;
        }
        .stat-value {
            font-weight: 700;
            color: #fcd34d;
        }
        .review-card {
            background: #1e293b;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .reviewer {
            font-weight: 700;
            color: #fcd34d;
            margin-bottom: 5px;
        }
        .rating {
            color: #fbbf24;
            margin-bottom: 10px;
        }
        .feature-list, .tips-list {
            list-style: none;
            margin: 20px 0;
        }
        .feature-list li, .tips-list li {
            background: #1e293b;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            position: relative;
            padding-left: 40px;
        }
        .feature-list li::before, .tips-list li::before {
            content: "★";
            color: #fbbf24;
            font-size: 1.2rem;
            position: absolute;
            left: 15px;
            top: 15px;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: #1e293b;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .comparison-table th, .comparison-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #334155;
        }
        .comparison-table th {
            background-color: #0f172a;
            color: #fbbf24;
        }
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        footer {
            background-color: #0f172a;
            color: #e2e8f0;
            padding: 40px 20px;
            margin-top: 60px;
            border-top: 1px solid #334155;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #fbbf24;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #1e293b;
            display: inline-block;
        }
        .game-types a, .tags a {
            display: inline-block;
            color: #e2e8f0;
            text-decoration: none;
            margin: 0 8px 10px 0;
            padding: 5px 12px;
            border-radius: 20px;
            background-color: #1e293b;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .game-types a:hover, .tags a:hover {
            background-color: #334155;
            color: #fbbf24;
        }
        .daman-note {
            margin: 30px 0;
            padding: 15px;
            background-color: #1e293b;
            border-radius: 6px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #334155;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
                gap: 10px;
            }
            nav ul.show {
                display: flex;
            }
            h1 {
                font-size: 2rem;
                margin-bottom: 30px;
            }
            h2 {
                font-size: 1.5rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.2rem;
            }
            p {
                font-size: 1rem;
                text-align: left;
            }
            .btn {
                width: 100%;
                margin-bottom: 15px;
            }
            .stat-item {
                flex-direction: column;
            }
            .stat-value {
                margin-top: 5px;
            }
            .feature-list li, .tips-list li {
                padding: 12px;
                padding-left: 30px;
            }
            .feature-list li::before, .tips-list li::before {
                left: 10px;
                top: 12px;
            }
        }
