* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        body {
            background-color: #f0f2f5;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #0f172a;
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffc107;
            font-size: 1.6rem;
            font-weight: 800;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #f8fafc;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-links a:hover {
            color: #ffc107;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #ffc107;
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            color: #f8fafc;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .mobile-menu-btn:hover {
            color: #ffc107;
        }
        .container {
            max-width: 1200px;
            margin: 35px auto;
            padding: 0 20px;
        }
        h1 {
            color: #0f172a;
            font-size: 2.8rem;
            margin-bottom: 25px;
            text-align: center;
            padding: 25px 0;
            border-bottom: 3px solid #e74c3c;
            position: relative;
        }
        h1:after {
            content: '🎮';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
        h2 {
            color: #0f172a;
            font-size: 2.2rem;
            margin: 50px 0 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid #ddd;
            position: relative;
            display: inline-block;
        }
        h2:before {
            content: '🔰';
            margin-right: 10px;
        }
        h3 {
            color: #0f172a;
            font-size: 1.7rem;
            margin: 35px 0 20px;
            display: flex;
            align-items: center;
        }
        h3:before {
            content: '►';
            margin-right: 8px;
            color: #e74c3c;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            font-weight: 700;
            color: #e74c3c;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #2ecc71;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 700;
            margin: 15px 15px 15px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #27ae60;
            transform: translateY(-3px);
            box-shadow: 0 6px 10px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #e67e22;
        }
        .download-btn:hover {
            background-color: #d35400;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
            border-left: 5px solid #3498db;
        }
        .review {
            background-color: #f8fafc;
            border-left: 5px solid #2ecc71;
            padding: 20px;
            margin: 25px 0;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            position: relative;
        }
        .review:before {
            content: '"';
            font-size: 5rem;
            color: rgba(46, 204, 113, 0.1);
            position: absolute;
            top: -20px;
            left: 10px;
            font-family: Georgia, serif;
        }
        .tips-list {
            margin: 25px 0;
            padding-left: 40px;
        }
        .tips-list li {
            margin-bottom: 20px;
            font-size: 1.15rem;
            position: relative;
        }
        .tips-list li:before {
            content: '✅';
            position: absolute;
            left: -30px;
            top: 0;
        }
        .footer {
            background-color: #0f172a;
            color: #f8fafc;
            padding: 50px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 25px 0;
        }
        .game-types a, .tags a {
            color: #ffc107;
            text-decoration: none;
            margin-right: 20px;
            display: inline-block;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }
        .game-types a:hover, .tags a:hover {
            color: #ffdd57;
            text-decoration: underline;
        }
        .tags {
            margin: 35px 0;
        }
        .copyright {
            margin-top: 50px;
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #334155;
            font-size: 0.95rem;
            color: #94a3b8;
        }
        .daman-recommendation {
            margin: 30px 0;
            padding: 20px;
            background-color: rgba(255, 193, 7, 0.1);
            border-radius: 8px;
            border-left: 4px solid #ffc107;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #0f172a;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                padding: 20px 0;
            }
            h1:after {
                display: none;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 30px 0 15px;
            }
            p {
                font-size: 1.1rem;
            }
            .btn {
                padding: 12px 24px;
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
            .review:before {
                font-size: 4rem;
                top: -15px;
            }
        }
