* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #fdf9f1;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #9b5100;
            color: #fff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin: 10px 0;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .nav-links li {
            margin: 5px 10px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            padding: 5px 10px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
            color: #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 26px;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 22px;
            z-index: 1001;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #9b5100;
            text-align: center;
            margin: 0 0 40px;
            font-size: 36px;
            padding-bottom: 15px;
            border-bottom: 3px solid #d4a024;
        }
        h2 {
            color: #9b5100;
            margin: 40px 0 20px;
            font-size: 28px;
            border-left: 4px solid #d4a024;
            padding-left: 15px;
        }
        h3 {
            color: #9b5100;
            margin: 30px 0 15px;
            font-size: 22px;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #9b5100;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            margin: 0 10px 15px;
            background-color: #9b5100;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 18px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #d4a024;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 5px solid #d4a024;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f1f1f1;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review-box {
            background-color: white;
            border-left: 4px solid #d4a024;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 6px 6px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.06);
        }
        .reviewer {
            font-weight: bold;
            color: #9b5100;
            margin-bottom: 5px;
            font-size: 18px;
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #f0e6d2;
            color: #9b5100;
            padding: 8px 16px;
            border-radius: 20px;
            margin: 0 8px 12px 0;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #d4a024;
            color: white;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 40px 0 20px;
        }
        .game-type {
            display: inline-block;
            color: #9b5100;
            margin-right: 20px;
            margin-bottom: 10px;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
        }
        .game-type:hover {
            text-decoration: underline;
            color: #d4a024;
        }
        footer {
            background-color: #2d2d2d;
            color: #f0f0f0;
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 19px;
            margin-bottom: 20px;
            color: #ffd700;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255,215,0,0.3);
        }
        .footer-section p {
            text-align: left;
            font-size: 16px;
            color: #e0e0e0;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 20px;
            font-size: 15px;
            color: #b0b0b0;
            border-top: 1px solid #444;
            grid-column: 1 / -1;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                align-items: center;
                background-color: #9b5100;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                padding: 20px 0;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
                width: 90%;
                text-align: center;
            }
            .nav-links a {
                display: block;
                width: 100%;
                padding: 10px;
            }
            h1 {
                font-size: 28px;
                margin-bottom: 30px;
            }
            h2 {
                font-size: 24px;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
            .btn {
                display: block;
                margin: 12px auto;
                width: 90%;
            }
            .stat-item {
                flex-direction: column;
                gap: 5px;
            }
        }
