* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #222;
            background-color: #f8fafc;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: #2563eb;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #1d4ed8;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }
        .logo a {
            font-size: 28px;
            font-weight: 800;
            color: #60a5fa;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-decoration: none;
            color: #93c5fd;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #cbd5e1;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .desktop-nav a:hover {
            background-color: rgba(96, 165, 250, 0.15);
            text-decoration: none;
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: #60a5fa;
        }
        .mobile-nav {
            display: none;
            background-color: #1e293b;
            padding: 20px;
            border-top: 1px solid #334155;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            color: #cbd5e1;
            display: block;
            padding: 12px;
            border-radius: 6px;
        }
        .mobile-nav a:hover {
            background-color: rgba(96, 165, 250, 0.15);
        }
        .breadcrumb {
            background-color: #e2e8f0;
            padding: 12px 0;
            font-size: 14px;
            color: #475569;
        }
        .breadcrumb a {
            color: #475569;
        }
        .breadcrumb a:hover {
            color: #1e293b;
        }
        main {
            padding: 40px 0;
            background-color: white;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
            border-radius: 12px;
            margin: 30px auto;
        }
        article {
            padding: 0 20px;
        }
        h1 {
            font-size: 42px;
            color: #1e293b;
            margin-bottom: 25px;
            line-height: 1.2;
            border-left: 6px solid #2563eb;
            padding-left: 20px;
        }
        h2 {
            font-size: 32px;
            color: #334155;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
        }
        h3 {
            font-size: 24px;
            color: #475569;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 22px;
            font-size: 18px;
            text-align: justify;
        }
        .highlight-box {
            background: linear-gradient(to right, #dbeafe, #eff6ff);
            border-left: 5px solid #2563eb;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight-box strong {
            color: #1e40af;
        }
        .game-image {
            margin: 40px auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
        }
        .game-image figcaption {
            text-align: center;
            font-style: italic;
            color: #64748b;
            padding: 10px;
            background-color: #f8fafc;
        }
        .interactive-section {
            background-color: #f1f5f9;
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
        }
        .search-form, .comment-form, .rating-form {
            margin-bottom: 30px;
        }
        .search-form input {
            width: 100%;
            padding: 16px;
            border: 2px solid #cbd5e1;
            border-radius: 8px;
            font-size: 16px;
            margin-bottom: 15px;
        }
        .search-form button {
            background-color: #2563eb;
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #1d4ed8;
        }
        .comment-form textarea, .comment-form input, .rating-form select {
            width: 100%;
            padding: 16px;
            border: 2px solid #cbd5e1;
            border-radius: 8px;
            font-size: 16px;
            margin-bottom: 20px;
            resize: vertical;
        }
        .comment-form button, .rating-form button {
            background-color: #10b981;
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .comment-form button:hover, .rating-form button:hover {
            background-color: #0da271;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .stars i {
            font-size: 28px;
            color: #cbd5e1;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover, .stars i.active {
            color: #fbbf24;
        }
        footer {
            background-color: #1e293b;
            color: #cbd5e1;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        .web-link {
            background-color: #334155;
            padding: 20px;
            border-radius: 8px;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            background-color: #475569;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #93c5fd;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #475569;
            font-size: 15px;
            color: #94a3b8;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 26px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
            .header-top, .breadcrumb, main, article {
                padding-left: 15px;
                padding-right: 15px;
            }
            .interactive-section {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 28px;
            }
        }
