* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.7;
        }
        body {
            background-color: #0f172a;
            color: #f8fafc;
            padding-bottom: 60px;
        }
        header {
            background-color: #1e40af;
            padding: 18px 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #fbbf24;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #f8fafc;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #fbbf24;
            border-bottom: 2px solid #fbbf24;
        }
        .menu-btn {
            display: none;
            background: none;
            border: none;
            color: #f8fafc;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 101;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px 20px;
        }
        h1 {
            color: #fbbf24;
            font-size: 2.8rem;
            margin: 30px 0;
            text-align: center;
            border-bottom: 4px solid #3b82f6;
            padding-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
        }
        h2 {
            color: #3b82f6;
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-left: 12px;
            border-left: 5px solid #fbbf24;
        }
        h3 {
            color: #93c5fd;
            font-size: 1.7rem;
            margin: 25px 0 15px;
        }
        p {
            margin: 15px 0;
            font-size: 1.1rem;
            color: #e2e8f0;
        }
        .highlight {
            font-weight: bold;
            color: #fbbf24;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        .btn {
            display: inline-block;
            padding: 14px 30px;
            background-color: #dc2626;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 20px 12px 20px 0;
            transition: 0.3s;
            text-align: center;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        }
        .btn:hover {
            background-color: #b91c1c;
            transform: translateY(-3px);
            box-shadow: 0 6px 10px rgba(0,0,0,0.3);
        }
        .download-btn {
            background-color: #10b981;
        }
        .download-btn:hover {
            background-color: #059669;
        }
        .img-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.4);
            border: 2px solid #3b82f6;
        }
        .stats-box {
            background-color: #1e293b;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            border-left: 5px solid #fbbf24;
        }
        .stats-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #334155;
        }
        .stats-item:last-child {
            border-bottom: none;
        }
        .stats-item span:first-child {
            color: #93c5fd;
            font-weight: 500;
        }
        .stats-item span:last-child {
            color: #fbbf24;
            font-weight: bold;
        }
        .review {
            background-color: #1e293b;
            border-left: 5px solid #fbbf24;
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .reviewer {
            font-style: italic;
            color: #94a3b8;
            margin-top: 12px;
            font-size: 1rem;
        }
        .tips-list {
            margin: 20px 0 20px 40px;
        }
        .tips-list li {
            margin: 15px 0;
            color: #e2e8f0;
            position: relative;
            padding-left: 15px;
        }
        .tips-list li:before {
            content: "•";
            color: #fbbf24;
            font-weight: bold;
            position: absolute;
            left: -5px;
        }
        footer {
            background-color: #0f172a;
            color: #e2e8f0;
            padding: 40px 20px;
            margin-top: 60px;
            border-top: 2px solid #3b82f6;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types, .tags {
            margin: 30px 0;
        }
        .game-types h4, .tags h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #fbbf24;
            border-bottom: 2px solid #3b82f6;
            padding-bottom: 8px;
            display: inline-block;
        }
        .type-links, .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .type-links a, .tag-links a {
            color: #e2e8f0;
            text-decoration: none;
            background-color: #1e293b;
            padding: 8px 20px;
            border-radius: 25px;
            transition: 0.3s;
            font-weight: 500;
        }
        .type-links a:hover, .tag-links a:hover {
            background-color: #3b82f6;
            color: white;
            transform: translateY(-2px);
        }
        .recommendation {
            margin: 30px 0;
            padding: 20px;
            background-color: #1e293b;
            border-radius: 8px;
            border-left: 4px solid #fbbf24;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid #334155;
            color: #94a3b8;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100px;
                left: 0;
                right: 0;
                background-color: #1e40af;
                padding: 25px;
                gap: 20px;
                z-index: 100;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                margin: 20px 0;
            }
            h2 {
                font-size: 1.8rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 20px 0 12px;
            }
            p {
                font-size: 1rem;
            }
            .btn {
                padding: 12px 25px;
                font-size: 1rem;
                margin: 15px 8px 15px 0;
                display: block;
                width: 100%;
                margin-left: 0;
                margin-right: 0;
                margin-bottom: 10px;
            }
            .stats-box {
                padding: 20px;
            }
            .review {
                padding: 15px;
            }
        }
