* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #fff9f0;
            color: #333;
            padding-bottom: 50px;
        }
        .header {
            background-color: #ff4d4d;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            color: white;
            font-size: 24px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .nav a {
            color: white;
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 4px;
            background-color: rgba(255,255,255,0.2);
            font-weight: 500;
        }
        .nav a:hover {
            background-color: rgba(255,255,255,0.3);
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            position: absolute;
            top: 15px;
            right: 20px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #e60000;
            text-align: center;
            margin: 30px 0;
            font-size: 32px;
        }
        h2 {
            color: #cc0000;
            margin: 25px 0 15px;
            font-size: 26px;
            border-left: 4px solid #ff4d4d;
            padding-left: 10px;
        }
        h3 {
            color: #b30000;
            margin: 20px 0 10px;
            font-size: 22px;
        }
        p {
            margin-bottom: 15px;
            font-size: 18px;
        }
        .highlight {
            font-weight: bold;
            color: #cc0000;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #ff4d4d;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 10px 5px;
            font-size: 18px;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #e60000;
        }
        .image-container {
            margin: 25px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .stats-box {
            background-color: #fff0f0;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border: 1px solid #ffcccc;
        }
        .review {
            background-color: #f9f9f9;
            border-radius: 8px;
            padding: 15px;
            margin: 15px 0;
            border-left: 3px solid #ff4d4d;
        }
        .tag {
            display: inline-block;
            background-color: #ffe6e6;
            padding: 5px 10px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            color: #cc0000;
            font-size: 16px;
        }
        .tag:hover {
            background-color: #ffcccc;
        }
        .game-type {
            display: inline-block;
            margin: 10px 5px;
            text-decoration: none;
            color: #cc0000;
            font-weight: 500;
        }
        .game-type:hover {
            text-decoration: underline;
        }
        .footer {
            background-color: #333;
            color: white;
            padding: 30px 20px;
            margin-top: 50px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer p {
            margin: 10px 0;
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .nav {
                display: none;
                flex-direction: column;
                margin-top: 20px;
            }
            .nav.active {
                display: flex;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
        }
