* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Tahoma', sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f8fafc;
            line-height: 1.8;
            padding-bottom: 80px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #1e293b;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(59, 130, 246, 0.1);
        }
        .logo {
            color: #3b82f6;
            font-size: 2.2rem;
            font-weight: 900;
            text-decoration: none;
            display: inline-block;
            text-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
            letter-spacing: -0.5px;
        }
        .logo span {
            color: #ffffff;
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 35px;
        }
        .nav-links a {
            color: #f8fafc;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #3b82f6;
            border-bottom: 2px solid #3b82f6;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #3b82f6;
            font-size: 1.9rem;
            cursor: pointer;
        }
        h1 {
            color: #3b82f6;
            font-size: 3rem;
            margin: 50px 0 35px;
            text-align: center;
            padding-bottom: 20px;
            border-bottom: 3px solid #3b82f6;
            text-shadow: 0 0 12px rgba(59, 130, 246, 0.2);
        }
        h2 {
            color: #ffffff;
            font-size: 2.3rem;
            margin: 60px 0 30px;
            padding-left: 20px;
            border-left: 4px solid #3b82f6;
        }
        h3 {
            color: #3b82f6;
            font-size: 1.8rem;
            margin: 40px 0 25px;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "▶";
            color: #3b82f6;
            margin-right: 12px;
            font-size: 1.5rem;
        }
        h4 {
            color: #e2e8f0;
            font-size: 1.5rem;
            margin: 30px 0 18px;
            font-weight: 600;
        }
        p {
            margin-bottom: 30px;
            font-size: 1.15rem;
            color: #e2e8f0;
            max-width: 100%;
        }
        .bold {
            font-weight: 700;
            color: #3b82f6;
            font-size: 1.2rem;
        }
        .btn {
            display: inline-block;
            padding: 15px 32px;
            background-color: #e11d48;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 700;
            margin: 15px 15px 15px 0;
            transition: all 0.3s;
            text-align: center;
            font-size: 1.15rem;
            box-shadow: 0 4px 14px rgba(225, 29, 72, 0.3);
        }
        .btn:hover {
            background-color: #be123c;
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(225, 29, 72, 0.4);
        }
        .btn-download {
            background-color: #10b981;
            box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
        }
        .btn-download:hover {
            background-color: #059669;
            box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4);
        }
        .btn-container {
            margin: 45px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 35px 0;
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6);
            border: 2px solid rgba(59, 130, 246, 0.2);
        }
        .list-item {
            margin-left: 45px;
            margin-bottom: 22px;
            font-size: 1.15rem;
            color: #e2e8f0;
        }
        .list-item::marker {
            color: #3b82f6;
            font-size: 1.4rem;
        }
        .section {
            margin: 60px 0;
            padding: 35px;
            background-color: #1e293b;
            border-radius: 15px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(59, 130, 246, 0.1);
        }
        footer {
            background-color: #1e293b;
            color: #94a3b8;
            padding: 60px 0 40px;
            margin-top: 100px;
            border-top: 1px solid rgba(59, 130, 246, 0.2);
        }
        .footer-section {
            margin-bottom: 50px;
        }
        .footer-section h3 {
            color: #3b82f6;
            margin-bottom: 25px;
            font-size: 1.6rem;
        }
        .game-types, .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 25px 0;
        }
        .game-types a, .tags a {
            color: #3b82f6;
            text-decoration: none;
            background-color: #273449;
            padding: 10px 22px;
            border-radius: 30px;
            font-size: 1.05rem;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .game-types a:hover, .tags a:hover {
            background-color: #334155;
            border-color: #3b82f6;
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #273449;
            font-size: 1.05rem;
            color: #94a3b8;
            margin-top: 40px;
        }
        .recommendation {
            margin: 40px 0;
            font-size: 1.25rem;
            color: #3b82f6;
            line-height: 1.9;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                width: 100%;
                background-color: #1e293b;
                padding: 30px;
                border-top: 1px solid rgba(59, 130, 246, 0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 20px 0;
                margin-left: 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.4rem;
                margin: 35px 0 25px;
            }
            h2 {
                font-size: 1.9rem;
                margin: 50px 0 25px;
            }
            h3 {
                font-size: 1.6rem;
                margin: 35px 0 20px;
            }
            .section {
                padding: 25px;
                margin: 50px 0;
            }
            .btn {
                width: 100%;
                margin: 12px 0;
            }
            p, .list-item {
                font-size: 1.1rem;
            }
        }
