* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #1e293b;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #7c3aed;
            color: #fde68a;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #fde68a;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #fde68a;
            border-bottom: 2px solid #fde68a;
        }
        .menu-btn {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            z-index: 1001;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #7c3aed;
            font-size: 2.7rem;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #fde68a;
        }
        h2 {
            color: #4338ca;
            font-size: 2.1rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #4338ca;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 80px;
            height: 2px;
            background-color: #fde68a;
        }
        h3 {
            color: #ea580c;
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #10b981;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 8px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #059669;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-login {
            background-color: #3b82f6;
        }
        .btn-login:hover {
            background-color: #2563eb;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        .highlight {
            font-weight: bold;
            color: #dc2626;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
            border-left: 5px solid #fde68a;
        }
        .stats-box p {
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .review {
            background-color: #e0f2fe;
            border-left: 5px solid #0ea5e9;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
            position: relative;
        }
        .review::before {
            content: "🗣️";
            position: absolute;
            left: -15px;
            top: 15px;
            font-size: 1.5rem;
        }
        .tips-list {
            margin: 20px 0 20px 40px;
        }
        .tips-list li {
            margin-bottom: 15px;
            font-size: 1.05rem;
            position: relative;
        }
        .tips-list li::before {
            content: "•";
            color: #ea580c;
            font-weight: bold;
            position: absolute;
            left: -20px;
        }
        footer {
            background-color: #7c3aed;
            color: white;
            padding: 50px 0 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .game-types, .tags {
            margin: 30px 0;
        }
        .game-types h4, .tags h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #fde68a;
            padding-bottom: 8px;
            border-bottom: 1px solid #fde68a;
            display: inline-block;
        }
        .game-types a, .tags a {
            color: #e0e7ff;
            text-decoration: none;
            margin-right: 20px;
            display: inline-block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .game-types a:hover, .tags a:hover {
            color: #fde68a;
            text-decoration: underline;
        }
        .recommendation {
            background-color: rgba(253, 230, 138, 0.1);
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            border: 1px solid #fde68a;
        }
        .recommendation p {
            font-size: 1.1rem;
            color: #f3e8ff;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid #a78bfa;
            font-size: 1rem;
            color: #ddd6fe;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #7c3aed;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.1rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn {
                display: block;
                text-align: center;
                margin: 10px auto;
                width: 90%;
            }
            .review {
                padding: 15px;
                margin: 15px 0;
            }
            .stats-box {
                padding: 20px;
            }
        }
