* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f8f0e3;
            color: #5a3d2b;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #8b5a2b;
            padding: 18px 20px;
            position: relative;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            color: #fff;
            font-size: 2rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 12px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .nav {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }
        .nav a {
            color: #f5f5dc;
            text-decoration: none;
            font-weight: 500;
            padding: 6px 0;
            transition: color 0.3s;
        }
        .nav a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 22px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav {
                display: none;
                flex-direction: column;
                gap: 12px;
                margin-top: 15px;
                padding-top: 10px;
                border-top: 1px solid rgba(255,255,255,0.2);
            }
            .nav.active {
                display: flex;
            }
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #8b4513;
            font-size: 2.4rem;
            margin: 35px 0 25px;
            text-align: center;
            padding-bottom: 10px;
            border-bottom: 3px dotted #cd853f;
        }
        h2 {
            color: #8b4513;
            font-size: 1.9rem;
            margin: 45px 0 20px;
            border-left: 5px solid #d2691e;
            padding-left: 15px;
        }
        h3 {
            color: #a0522d;
            font-size: 1.6rem;
            margin: 35px 0 18px;
            padding-bottom: 5px;
            border-bottom: 1px solid #deb887;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
        }
        .highlight {
            font-weight: bold;
            color: #8b0000;
            text-decoration: underline dotted;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #228b22;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 15px 15px 0;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #006400;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-login {
            background-color: #1e90ff;
        }
        .btn-login:hover {
            background-color: #0000cd;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            border: 5px solid #fff;
        }
        .stats-box {
            background-color: #fffaf0;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            border-top: 5px solid #d2b48c;
            box-shadow: 0 4px 8px rgba(0,0,0,0.08);
        }
        .review {
            background-color: #f5f5f5;
            border-radius: 12px;
            padding: 20px;
            margin: 20px 0;
            border-right: 5px solid #8fbc8f;
        }
        .reviewer {
            font-style: italic;
            color: #2f4f4f;
            font-weight: 500;
        }
        .tag {
            display: inline-block;
            background-color: #f4a460;
            padding: 6px 12px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            color: #fff;
            font-size: 0.95rem;
            transition: background-color 0.3s;
        }
        .tag:hover {
            background-color: #cd853f;
        }
        .game-type {
            display: inline-block;
            margin: 8px;
            text-decoration: none;
            color: #4682b4;
            font-weight: 500;
        }
        .game-type:hover {
            text-decoration: underline;
            color: #1e90ff;
        }
        .footer {
            margin-top: 60px;
            padding-top: 35px;
            border-top: 3px solid #d2b48c;
        }
        .copyright {
            margin-top: 30px;
            text-align: center;
            color: #6b4226;
            font-size: 1rem;
            padding: 20px 0;
            background-color: #fffaf0;
            border-radius: 8px;
        }
        .section {
            margin-bottom: 50px;
            padding: 20px;
            background-color: rgba(255,255,255,0.7);
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .emoji-highlight {
            font-size: 1.3rem;
            margin: 0 5px;
        }
        .tip-box {
            background-color: #fff8dc;
            border-left: 4px solid #ffd700;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
