* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #fff9f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #e63946;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            display: inline-block;
            margin-right: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: opacity 0.3s;
        }
        .nav-links a:hover {
            opacity: 0.8;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        h1 {
            font-size: 36px;
            color: #b71c1c;
            margin: 30px 0 20px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 28px;
            color: #b71c1c;
            margin: 40px 0 20px;
            border-bottom: 2px solid #e63946;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 22px;
            color: #b71c1c;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        .highlight {
            font-weight: bold;
            color: #b71c1c;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #e63946;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 20px 0;
            transition: all 0.3s;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #d32f2f;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-secondary {
            background-color: #ff9800;
        }
        .btn-secondary:hover {
            background-color: #f57c00;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border-left: 5px solid #e63946;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #fff3e0;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .stat-item:hover {
            transform: scale(1.03);
        }
        .stat-number {
            font-size: 32px;
            font-weight: bold;
            color: #e63946;
            margin-bottom: 5px;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border-left: 4px solid #4caf50;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        .reviewer {
            font-weight: bold;
            color: #333;
        }
        .rating {
            color: #ffb703;
            font-weight: bold;
        }
        .tag-container {
            margin: 30px 0;
        }
        .tag {
            display: inline-block;
            background-color: #fff3e0;
            color: #e63946;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
            border: 1px solid #ffcc80;
        }
        .tag:hover {
            background-color: #ffe0b2;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 20px 0 40px;
        }
        .game-type {
            display: inline-block;
            color: #e63946;
            text-decoration: none;
            margin-right: 15px;
            font-weight: 500;
            padding-bottom: 2px;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
        }
        .game-type:hover {
            border-bottom: 2px solid #e63946;
        }
        footer {
            background-color: #212121;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #ffcc80;
            padding-bottom: 5px;
            border-bottom: 1px solid #ffcc80;
            display: inline-block;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section li {
            margin-bottom: 10px;
        }
        .footer-section a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-section a:hover {
            color: #ffcc80;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #424242;
            font-size: 14px;
            color: #bdbdbd;
        }
        .recommendation {
            background-color: #fff3e0;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            text-align: center;
            border: 1px solid #ffe0b2;
        }
        .recommendation p {
            font-size: 18px;
            margin-bottom: 0;
            color: #e65100;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #e63946;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 10px 0;
            }
        }
