* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #121a2e;
            color: #f5f5f7;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #1e293b;
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 20px rgba(255, 68, 0, 0.4);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: bold;
            color: #ff4400;
            text-decoration: none;
            letter-spacing: 1.2px;
            text-shadow: 0 0 10px rgba(255, 68, 0, 0.8);
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #f5f5f7;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s ease;
            padding: 6px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            color: #ff4400;
            background-color: rgba(255, 255, 255, 0.12);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #ff4400;
            font-size: 1.6rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 35px auto;
            padding: 0 20px;
        }
        h1 {
            color: #ff4400;
            margin-bottom: 25px;
            font-size: 2.4rem;
            text-align: center;
            padding: 20px 0;
            border-bottom: 4px solid #ff4400;
            text-shadow: 0 0 12px rgba(255, 68, 0, 0.6);
        }
        h2 {
            color: #ff7a33;
            margin: 35px 0 18px;
            font-size: 1.9rem;
            padding-left: 12px;
            border-left: 5px solid #ff4400;
        }
        h3 {
            color: #ff9e66;
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #e0e0eb;
        }
        .highlight {
            font-weight: bold;
            color: #ff4400;
            text-shadow: 0 0 4px rgba(255, 68, 0, 0.5);
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 20px 12px;
            background-color: #ff4400;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: 0.3s ease;
            box-shadow: 0 5px 10px rgba(255, 68, 0, 0.4);
        }
        .btn:hover {
            background-color: #e03d00;
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 68, 0, 0.6);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .stats-box {
            background-color: #1e293b;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
            border-left: 5px solid #ff4400;
        }
        .review {
            background-color: #172035;
            border-left: 4px solid #ff4400;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 6px 6px 0;
        }
        .tag {
            display: inline-block;
            background-color: #2d3b69;
            padding: 6px 14px;
            margin: 6px;
            border-radius: 25px;
            text-decoration: none;
            color: #ffb380;
            font-size: 0.95rem;
            transition: 0.3s ease;
        }
        .tag:hover {
            background-color: #3a4b8c;
            color: #ff4400;
        }
        footer {
            max-width: 1200px;
            margin: 60px auto 0;
            padding: 35px 20px;
            border-top: 3px solid #ff4400;
            background-color: #172035;
            border-radius: 10px 10px 0 0;
        }
        .game-types {
            margin: 25px 0;
        }
        .game-types a {
            color: #ff7a33;
            text-decoration: none;
            margin-right: 18px;
            font-weight: 500;
            transition: 0.3s ease;
        }
        .game-types a:hover {
            color: #ff4400;
            text-decoration: underline;
        }
        .copyright {
            margin-top: 35px;
            color: #a0a0b5;
            font-size: 0.95rem;
            text-align: center;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #1e293b;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1.05rem;
            }
            .btn {
                padding: 12px 24px;
                margin: 15px 8px;
            }
        }
