* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #2d3436;
            line-height: 1.8;
            font-size: 16px;
            padding-bottom: 40px;
        }
        header {
            background-color: #16a085;
            color: #ffffff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 15px rgba(0,0,0,0.15);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-align: center;
            color: #ffffff;
            margin: 10px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
            letter-spacing: 0.5px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            padding: 10px 0;
        }
        nav a {
            color: white;
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 1rem;
        }
        nav a:hover {
            background-color: #1abc9c;
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 25px;
            z-index: 101;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1, h2, h3 {
            color: #16a085;
            margin: 35px 0 20px;
            padding-bottom: 12px;
            position: relative;
        }
        h1 {
            font-size: 2.3rem;
            text-align: center;
            border-bottom: 4px solid #f39c12;
            padding: 25px 0;
            margin: 40px auto;
            max-width: 90%;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 3px solid #f39c12;
            margin-top: 50px;
        }
        h3 {
            font-size: 1.5rem;
            border-bottom: 2px solid #f39c12;
            margin-top: 35px;
            padding-bottom: 8px;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            line-height: 1.9;
            font-size: 1.05rem;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            margin: 0 12px 18px;
            background-color: #e74c3c;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            font-size: 1.15rem;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #27ae60;
        }
        .download-btn:hover {
            background-color: #219653;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
            position: relative;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.18);
            border: 2px solid #ddd;
        }
        .watermark {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            font-weight: bold;
            color: rgba(255,255,255,0.2);
            pointer-events: none;
            rotate: -30deg;
            z-index: 10;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.09);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 25px 20px;
            background-color: #f8f9fa;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 5px solid #f39c12;
        }
        .stat-item:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #16a085;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #636e72;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 35px;
            margin: 40px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.09);
        }
        .review {
            margin-bottom: 35px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }
        .review:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .reviewer {
            font-weight: bold;
            color: #16a085;
            margin-bottom: 10px;
            font-size: 1.15rem;
            display: flex;
            align-items: center;
        }
        .reviewer::before {
            content: "👤";
            margin-right: 10px;
        }
        .rating {
            color: #f39c12;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .tag-container {
            margin: 45px 0;
        }
        .tag {
            display: inline-block;
            background-color: #f1f2f6;
            color: #2d3436;
            padding: 9px 18px;
            border-radius: 25px;
            margin: 0 12px 15px 0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            border: 1px solid #ddd;
        }
        .tag:hover {
            background-color: #eccc68;
            color: #16a085;
            transform: translateY(-3px);
        }
        footer {
            background-color: #16a085;
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .game-types {
            margin-bottom: 50px;
        }
        .game-types h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #f39c12;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255,255,255,0.15);
        }
        .game-types a {
            color: white;
            text-decoration: none;
            display: inline-block;
            margin-right: 25px;
            margin-bottom: 15px;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }
        .game-types a:hover {
            color: #f39c12;
        }
        .daman-promo {
            background-color: #1abc9c;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 50px;
            text-align: center;
            font-size: 1.15rem;
            line-height: 1.9;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 1rem;
            color: #dfe6e9;
        }
        strong {
            color: #16a085;
            font-weight: 700;
        }
        ul {
            margin: 25px 0 30px 50px;
        }
        li {
            margin-bottom: 15px;
            line-height: 1.9;
            font-size: 1.05rem;
        }
        blockquote {
            border-left: 5px solid #f39c12;
            padding: 15px 20px;
            margin: 30px 0;
            background-color: #f8f9fa;
            border-radius: 0 5px 5px 0;
            font-style: italic;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 25px;
                background-color: #16a085;
                padding: 20px;
                border-radius: 10px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
                max-width: 100%;
                padding: 20px 0;
            }
            h2 {
                font-size: 1.7rem;
                margin-top: 40px;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn {
                display: block;
                margin: 20px auto;
                width: 90%;
                padding: 14px 20px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            ul {
                margin-left: 30px;
            }
            .review-container, .stats-box {
                padding: 20px;
            }
            .logo {
                font-size: 1.4rem;
            }
        }
