* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f2ea;
            color: #2d2415;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #6b4c2e;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 12px rgba(0,0,0,0.15);
        }
        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #f8f0e3;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            letter-spacing: 0.6px;
            font-family: 'Georgia', serif;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 32px;
        }
        .nav-links a {
            color: #f8f0e3;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 6px 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #e6b89c;
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #f8f0e3;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 5px;
        }
        main {
            max-width: 1280px;
            margin: 0 auto;
            padding: 35px 20px;
        }
        h1 {
            color: #6b4c2e;
            font-size: 2.7rem;
            margin-bottom: 35px;
            text-align: center;
            padding-bottom: 18px;
            border-bottom: 4px solid #e6b89c;
            font-family: 'Georgia', serif;
        }
        h2 {
            color: #6b4c2e;
            font-size: 2.1rem;
            margin: 45px 0 22px;
            padding-left: 12px;
            border-left: 5px solid #e6b89c;
            font-family: 'Georgia', serif;
        }
        h3 {
            color: #6b4c2e;
            font-size: 1.6rem;
            margin: 35px 0 18px;
            position: relative;
            padding-left: 12px;
            font-family: 'Georgia', serif;
        }
        h3:before {
            content: '✦';
            position: absolute;
            left: -12px;
            color: #e6b89c;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.12rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #6b4c2e;
            text-decoration: underline;
            text-decoration-style: wavy;
            text-underline-offset: 4px;
        }
        .button-container {
            text-align: center;
            margin: 45px 0;
        }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            margin: 0 12px;
            background-color: #e6b89c;
            color: #2d2415;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            font-size: 1.25rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 12px rgba(0,0,0,0.12);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #6b4c2e;
            color: #f8f0e3;
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.18);
        }
        .image-container {
            text-align: center;
            margin: 45px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 12px 24px rgba(0,0,0,0.12);
            transition: transform 0.4s ease;
        }
        .game-image:hover {
            transform: scale(1.03);
        }
        .stats-box {
            background-color: #fffbf0;
            border-radius: 12px;
            padding: 28px;
            margin: 35px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.06);
            border-top: 6px solid #e6b89c;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 22px;
            margin-top: 22px;
        }
        .stat-item {
            text-align: center;
            padding: 18px;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-6px);
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: bold;
            color: #6b4c2e;
            margin-bottom: 8px;
        }
        .review-container {
            margin: 35px 0;
        }
        .review-card {
            background-color: white;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 24px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.06);
            border-left: 4px solid #e6b89c;
        }
        .reviewer {
            font-weight: bold;
            color: #6b4c2e;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        .reviewer:before {
            content: '👤';
            margin-right: 12px;
        }
        .rating {
            color: #e6b89c;
            margin-bottom: 12px;
        }
        .tag-container {
            margin: 45px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag {
            display: inline-block;
            background-color: #f1e5d8;
            color: #6b4c2e;
            padding: 9px 18px;
            border-radius: 22px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #6b4c2e;
            color: #f8f0e3;
            transform: translateY(-3px);
        }
        .game-type-nav {
            margin: 35px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .game-type-link {
            color: #6b4c2e;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 6px 0;
        }
        .game-type-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #e6b89c;
            transition: width 0.3s ease;
        }
        .game-type-link:hover:after {
            width: 100%;
        }
        footer {
            background-color: #2d2415;
            color: #f8f0e3;
            padding: 45px 20px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h3 {
            color: #e6b89c;
            margin-bottom: 18px;
            font-size: 1.4rem;
            border-bottom: 2px solid #e6b89c;
            padding-bottom: 12px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #5c4a35;
            margin-top: 25px;
            grid-column: 1 / -1;
            font-size: 0.95rem;
            color: #d9c9b6;
        }
        .key-point {
            background-color: rgba(230, 184, 156, 0.12);
            border-left: 5px solid #e6b89c;
            padding: 18px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #6b4c2e;
                padding: 25px;
                box-shadow: 0 12px 12px rgba(0,0,0,0.2);
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li {
                margin: 12px 0;
                padding: 8px 0;
                border-bottom: 1px solid rgba(248, 240, 227, 0.15);
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn {
                display: block;
                margin: 12px auto;
                width: 92%;
            }
            p {
                text-align: left;
                font-size: 1.05rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
