        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8fafc;
            font-size: 18px;
        }
        h1, h2, h3, h4 {
            color: #1e3a8a;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.5rem;
            border-bottom: 3px solid #3b82f6;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #2563eb;
            margin-top: 2rem;
        }
        h3 {
            font-size: 1.75rem;
            color: #3b82f6;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        a {
            color: #2563eb;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #1d4ed8;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: white;
        }
        .logo span {
            color: #60a5fa;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1e3a8a;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 0.75rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background-color: #e0f2fe;
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #3b82f6;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin: 2rem 0;
        }
        article {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        .sidebar {
            background-color: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            height: fit-content;
        }
        .sidebar h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .search-form {
            margin-bottom: 2rem;
        }
        .search-box {
            display: flex;
            margin-bottom: 1rem;
        }
        .search-box input {
            flex: 1;
            padding: 0.75rem;
            border: 2px solid #3b82f6;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: #3b82f6;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: #2563eb;
        }
        .rating-form {
            margin-bottom: 2rem;
        }
        .stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 1.5rem;
            color: #d1d5db;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: #fbbf24;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #d1d5db;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 120px;
        }
        .comment-form button {
            background-color: #10b981;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
            width: 100%;
        }
        .comment-form button:hover {
            background-color: #059669;
        }
        .game-image {
            margin: 2rem 0;
            text-align: center;
        }
        .game-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        .game-image img:hover {
            transform: scale(1.02);
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .feature-card {
            background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-5px);
        }
        .feature-icon {
            font-size: 2rem;
            color: #3b82f6;
            margin-bottom: 1rem;
        }
        .tips-container {
            background-color: #fef3c7;
            border-left: 4px solid #f59e0b;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .download-cta {
            background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            margin: 2rem 0;
        }
        .download-button {
            display: inline-block;
            background-color: white;
            color: #10b981;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.25rem;
            margin-top: 1rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .download-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            text-decoration: none;
        }
        .footer-links {
            background-color: #1e3a8a;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 0.75rem;
            border-radius: 4px;
            text-align: center;
        }
        .web-link a {
            color: white;
        }
        footer {
            background-color: #0f172a;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        .copyright {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #cbd5e1;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .features-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-desktop {
                display: none;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.75rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .web-link-container {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            article, .sidebar {
                padding: 1.5rem;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .highlight {
            background-color: #fef3c7;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .note {
            background-color: #dbeafe;
            border-left: 4px solid #3b82f6;
            padding: 1rem;
            margin: 1.5rem 0;
            border-radius: 0 4px 4px 0;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
