* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans', 'Arial', sans-serif;
        }
        body {
            background-color: #f8f3e6;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #6d4c41;
            color: #ffffff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffd54f;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s;
            padding: 5px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffd54f;
            transition: width 0.3s;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        nav ul li a:hover {
            color: #ffd54f;
        }
        .daman-link {
            background-color: #e65100;
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .daman-link:hover {
            background-color: #d32f2f;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .mobile-menu-btn {
            display: none;
            font-size: 1.6rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 35px 20px;
        }
        h1 {
            color: #5d4037;
            font-size: 2.6rem;
            margin-bottom: 35px;
            text-align: center;
            line-height: 1.4;
            padding: 0 10px;
        }
        h2 {
            color: #5d4037;
            font-size: 1.9rem;
            margin: 45px 0 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid #a1887f;
            line-height: 1.4;
        }
        h3 {
            color: #5d4037;
            font-size: 1.5rem;
            margin: 35px 0 18px;
            line-height: 1.4;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #b71c1c;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.03);
        }
        .btn-container {
            text-align: center;
            margin: 45px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 0 12px 15px;
            background-color: #e65100;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #d32f2f;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #2e7d32;
        }
        .btn-download:hover {
            background-color: #1b5e20;
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #fff8e1;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-6px);
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: bold;
            color: #5d4037;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1rem;
            color: #4e342e;
        }
        .review-container {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 5px solid #a1887f;
            transition: transform 0.3s ease;
        }
        .review-container:hover {
            transform: translateX(6px);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }
        .reviewer {
            font-weight: bold;
            color: #5d4037;
        }
        .rating {
            color: #ffb300;
            font-weight: bold;
        }
        .tag-container {
            margin: 35px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag {
            display: inline-block;
            background-color: #a1887f;
            color: #ffffff;
            padding: 8px 18px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #5d4037;
            transform: translateY(-3px);
        }
        .game-type-nav {
            margin: 25px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .game-type {
            display: inline-block;
            text-decoration: none;
            color: #5d4037;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
            padding-bottom: 4px;
        }
        .game-type:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #e65100;
            transition: width 0.3s;
        }
        .game-type:hover {
            color: #e65100;
        }
        .game-type:hover:after {
            width: 100%;
        }
        footer {
            background-color: #2d2d2d;
            color: #ffffff;
            padding: 50px 0 25px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h3 {
            color: #ffd54f;
            border-bottom: 1px solid #555555;
            padding-bottom: 12px;
            margin-bottom: 20px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #555555;
            margin-top: 25px;
            font-size: 0.95rem;
            color: #bbbbbb;
        }
        .recommendation {
            background-color: #fff8e1;
            padding: 25px;
            border-radius: 10px;
            margin: 35px 0;
            border-left: 5px solid #e65100;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        ul {
            margin-left: 40px;
            margin-bottom: 25px;
        }
        li {
            margin-bottom: 12px;
            font-size: 1.05rem;
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .feature-item {
            background-color: #ffffff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.07);
        }
        .feature-item h4 {
            color: #5d4037;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #6d4c41;
                padding: 25px;
                text-align: center;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 12px 0;
            }
            h1 {
                font-size: 2.1rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
            }
            p {
                text-align: left;
                font-size: 1.05rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
            .review-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
        }
