        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
        :root {
            --primary-color: #0066b2;
            --secondary-color: #d71920;
            --accent-color: #ffcc00;
            --light-gray: #f5f5f5;
            --medium-gray: #e0e0e0;
            --dark-gray: #333333;
            --text-color: #222222;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            color: var(--text-color);
            line-height: 1.6;
            background-color: #ffffff;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: 700;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: var(--accent-color);
        }
        .logo i {
            margin-right: 10px;
            font-size: 32px;
        }
        .desktop-nav {
            display: flex;
            gap: 25px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            font-size: 16px;
        }
        .nav-link:hover, .nav-link.active {
            background-color: rgba(255, 255, 255, 0.2);
        }
        .hamburger-menu {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
            width: 44px;
            height: 44px;
        }
        @media (max-width: 768px) {
            .hamburger-menu {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--primary-color);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav .nav-link {
            padding: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        main {
            padding: 30px 0;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            line-height: 1.2;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--medium-gray);
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: var(--dark-gray);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--medium-gray);
        }
        h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: var(--primary-color);
        }
        h4 {
            font-size: 1.3rem;
            margin: 25px 0 10px;
            color: var(--dark-gray);
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.7;
        }
        .content-section {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--box-shadow);
        }
        .intro {
            background: linear-gradient(135deg, #f5f9ff 0%, #e8f1ff 100%);
            border-left: 5px solid var(--primary-color);
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .responsive-img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        .img-caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: var(--box-shadow);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--medium-gray);
        }
        th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background-color: var(--light-gray);
        }
        tr:hover {
            background-color: #e8f4ff;
        }
        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 14px 28px;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 16px;
            text-align: center;
            min-height: 44px;
            min-width: 44px;
        }
        .btn:hover {
            background-color: #005499;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 102, 178, 0.3);
        }
        .btn-secondary {
            background-color: var(--secondary-color);
        }
        .btn-secondary:hover {
            background-color: #b3151a;
        }
        .btn-accent {
            background-color: var(--accent-color);
            color: var(--dark-gray);
        }
        .btn-accent:hover {
            background-color: #e6b800;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .feature-card {
            background-color: var(--light-gray);
            padding: 25px;
            border-radius: var(--border-radius);
            border-top: 4px solid var(--primary-color);
        }
        .feature-card h4 {
            margin-top: 0;
            color: var(--primary-color);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--medium-gray);
            border-radius: var(--border-radius);
            font-size: 16px;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 102, 178, 0.1);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .rating-container {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 20px 0;
        }
        .stars {
            display: flex;
            gap: 5px;
        }
        .star {
            color: var(--medium-gray);
            font-size: 24px;
            cursor: pointer;
            transition: var(--transition);
        }
        .star.active {
            color: var(--accent-color);
        }
        .social-sharing {
            display: flex;
            gap: 15px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        .social-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            font-size: 18px;
            transition: var(--transition);
        }
        .facebook {
            background-color: #3b5998;
        }
        .twitter {
            background-color: #1da1f2;
        }
        .reddit {
            background-color: #ff4500;
        }
        .whatsapp {
            background-color: #25d366;
        }
        .social-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 20px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: #005499;
            transform: translateY(-5px);
        }
        footer {
            background-color: var(--dark-gray);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
        }
        .footer-links {
            list-style: none;
            margin-left: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaaaaa;
            font-size: 0.9rem;
        }
        game-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 25px 0;
        }
        .game-link {
            background-color: var(--light-gray);
            padding: 12px 20px;
            border-radius: var(--border-radius);
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 500;
            transition: var(--transition);
            border: 1px solid var(--medium-gray);
        }
        .game-link:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .content-section {
                padding: 20px;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            .container {
                padding: 0 15px;
            }
            .btn {
                padding: 12px 20px;
                width: 100%;
                display: block;
            }
            .social-sharing {
                justify-content: center;
            }
        }
        .text-center {
            text-align: center;
        }
        .text-primary {
            color: var(--primary-color);
        }
        .text-secondary {
            color: var(--secondary-color);
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .mt-30 {
            margin-top: 30px;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 3px 6px;
            border-radius: 4px;
            font-weight: 500;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .wiki-infobox {
            background-color: var(--light-gray);
            border: 1px solid var(--medium-gray);
            border-radius: var(--border-radius);
            padding: 20px;
            margin: 0 0 30px 30px;
            float: right;
            width: 320px;
            box-shadow: var(--box-shadow);
        }
        .wiki-infobox h3 {
            margin-top: 0;
            text-align: center;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
        }
        .infobox-row {
            display: flex;
            padding: 10px 0;
            border-bottom: 1px solid var(--medium-gray);
        }
        .infobox-label {
            font-weight: 600;
            width: 120px;
        }
        .infobox-value {
            flex: 1;
        }
        @media (max-width: 768px) {
            .wiki-infobox {
                float: none;
                width: 100%;
                margin: 0 0 30px 0;
            }
        }
        .toc {
            background-color: var(--light-gray);
            border-radius: var(--border-radius);
            padding: 20px;
            margin-bottom: 30px;
            border-left: 4px solid var(--primary-color);
        }
        .toc h3 {
            margin-top: 0;
            color: var(--primary-color);
        }
        .toc ul {
            list-style-type: none;
            margin-left: 0;
        }
        .toc li {
            margin-bottom: 8px;
        }
        .toc a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        .toc a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        .update-log {
            background-color: #f0f7ff;
            border-left: 4px solid var(--primary-color);
            padding: 20px;
            margin: 30px 0;
            border-radius: var(--border-radius);
        }
        .update-log h4 {
            margin-top: 0;
            color: var(--primary-color);
        }
        .update-date {
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        .faq-item {
            margin-bottom: 25px;
            border-bottom: 1px solid var(--medium-gray);
            padding-bottom: 25px;
        }
        .faq-question {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        .comment {
            background-color: var(--light-gray);
            padding: 20px;
            border-radius: var(--border-radius);
            margin-bottom: 20px;
            border-left: 3px solid var(--primary-color);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        .comment-author {
            font-weight: 700;
            color: var(--primary-color);
        }
        .comment-date {
            color: #666;
            font-size: 0.9rem;
        }
        .author-bio {
            display: flex;
            align-items: center;
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: var(--border-radius);
            margin-top: 40px;
            border-top: 3px solid var(--primary-color);
        }
        .author-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin-right: 20px;
            flex-shrink: 0;
        }
        @media (max-width: 768px) {
            .author-bio {
                flex-direction: column;
                text-align: center;
            }
            .author-avatar {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
