* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f8fafc;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background-color: #1e293b;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #f97316;
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 16px;
            transition: 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #f97316;
            border-bottom: 2px solid #f97316;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #f97316;
            font-size: 28px;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #f97316;
            font-size: 38px;
            margin: 30px 0;
            text-align: center;
            text-shadow: 0 3px 6px rgba(0,0,0,0.4);
        }
        h2 {
            color: #f97316;
            font-size: 30px;
            margin: 40px 0 20px;
            border-left: 4px solid #f97316;
            padding-left: 15px;
        }
        h3 {
            color: #fb923c;
            font-size: 24px;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            color: #e2e8f0;
        }
        .highlight {
            font-weight: bold;
            color: #f97316;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #f97316;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 20px 0;
            transition: 0.3s;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
        }
        .btn:hover {
            background-color: #ea580c;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.4);
        }
        .img-container {
            margin: 30px 0;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
        }
        .game-img {
            max-width: 100%;
            height: auto;
            transition: 0.5s;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #1e293b;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 15px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #0f172a;
            border-radius: 8px;
            border: 1px solid #334155;
        }
        .stat-number {
            font-size: 28px;
            font-weight: bold;
            color: #f97316;
        }
        .review-box {
            background-color: #1e293b;
            border-left: 4px solid #22c55e;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
        }
        .reviewer {
            font-style: italic;
            color: #94a3b8;
            margin-top: 10px;
        }
        .guide-tip {
            background-color: #1e293b;
            padding: 15px;
            border-radius: 5px;
            margin: 20px 0;
            border-left: 4px solid #f97316;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
        }
        .footer {
            background-color: #1e293b;
            color: #e2e8f0;
            padding: 40px 20px;
            margin-top: 50px;
            border-top: 2px solid #334155;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #f97316;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #e2e8f0;
            text-decoration: none;
            transition: 0.3s;
        }
        .footer-links a:hover {
            color: #f97316;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #334155;
            margin-top: 20px;
            font-size: 14px;
            color: #94a3b8;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .tag {
            background-color: #334155;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
        }
        .tag a {
            color: #f8fafc;
            text-decoration: none;
            transition: 0.3s;
        }
        .tag a:hover {
            color: #f97316;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1e293b;
                padding: 20px;
                gap: 15px;
                border-top: 1px solid #334155;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 30px;
            }
            h2 {
                font-size: 26px;
            }
            h3 {
                font-size: 22px;
            }
            p {
                font-size: 16px;
            }
        }
