* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #8b5a2b;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffffff;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            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: 25px;
        }
        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li 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: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #8b5a2b;
            font-size: 2.6rem;
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #cd853f;
            display: inline-block;
            width: 100%;
        }
        h2 {
            color: #8b5a2b;
            font-size: 2rem;
            margin: 40px 0 20px;
            border-left: 4px solid #cd853f;
            padding-left: 15px;
        }
        h3 {
            color: #8b5a2b;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            position: relative;
            padding-left: 10px;
        }
        h3::before {
            content: "•";
            position: absolute;
            left: -5px;
            color: #cd853f;
            font-size: 1.8rem;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #8b5a2b;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #cd853f;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 10px 10px 10px 0;
            transition: all 0.3s ease;
            box-shadow: 0 3px 6px rgba(0,0,0,0.15);
            border: none;
            font-size: 1.05rem;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #8b5a2b;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            border: 1px solid #e0d8c8;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 5px solid #cd853f;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #f9f6f1;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.03);
        }
        .stat-value {
            font-size: 2rem;
            font-weight: bold;
            color: #8b5a2b;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #666;
            font-size: 0.95rem;
            font-weight: 500;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-left: 4px solid #cd853f;
            position: relative;
        }
        .review-container::before {
            content: """;
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 5rem;
            color: rgba(205, 133, 63, 0.1);
            font-family: Georgia, serif;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f0e6d2;
        }
        .reviewer {
            font-weight: bold;
            color: #8b5a2b;
        }
        .rating {
            color: #ffd700;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        .rating::before {
            content: "★";
            margin-right: 5px;
        }
        .tips-list {
            margin-left: 30px;
            margin-bottom: 25px;
        }
        .tips-list li {
            margin-bottom: 18px;
            position: relative;
            padding-left: 10px;
        }
        .tips-list li::before {
            content: "→";
            position: absolute;
            left: -20px;
            color: #cd853f;
        }
        .tag {
            display: inline-block;
            background-color: #f0e6d2;
            color: #8b5a2b;
            padding: 6px 14px;
            border-radius: 20px;
            margin: 7px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .tag:hover {
            background-color: #cd853f;
            color: white;
            transform: translateY(-2px);
            border-color: #8b5a2b;
        }
        .game-types {
            margin: 35px 0;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .type-link {
            color: #8b5a2b;
            text-decoration: none;
            margin-right: 20px;
            font-weight: 500;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            position: relative;
        }
        .type-link::after {
            content: "";
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #cd853f;
            transition: width 0.3s ease;
        }
        .type-link:hover {
            color: #cd853f;
        }
        .type-link:hover::after {
            width: 100%;
        }
        footer {
            background-color: #2d2d2d;
            color: white;
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 20px;
            padding-left: 0;
        }
        .footer-section h3::before {
            display: none;
        }
        .footer-section p {
            color: #e0e0e0;
            text-align: left;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            margin-top: 30px;
            font-size: 0.9rem;
            color: #b0b0b0;
        }
        .copyright a {
            color: #ffd700;
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        .quote {
            font-style: italic;
            border-left: 3px solid #cd853f;
            padding-left: 15px;
            margin: 25px 0;
            color: #555;
        }
        .feature-box {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .logo {
                margin-bottom: 15px;
                font-size: 1.6rem;
            }
            nav {
                width: 100%;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 8px 0;
                text-align: left;
            }
            nav ul li a {
                display: block;
                padding: 8px 10px;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 15px;
                right: 20px;
            }
            h1 {
                font-size: 2.1rem;
                margin-bottom: 20px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.3rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }
            .stat-value {
                font-size: 1.6rem;
            }
            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .type-link {
                display: block;
                margin: 10px 0;
            }
            h1 {
                font-size: 1.8rem;
            }
        }
