:root {
            --primary-blue: #2563eb;
            --secondary-blue: #1d4ed8;
            --accent-orange: #f97316;
            --wiki-bg: #f8fafc;
            --border-color: #e2e8f0;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--wiki-bg);
            color: var(--text-primary);
            line-height: 1.6;
            font-size: 16px;
        }
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-blue);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo:hover {
            color: var(--secondary-blue);
        }
        .my-logo i {
            color: var(--accent-orange);
        }
        nav ul {
            display: flex;
            gap: 25px;
            list-style: none;
        }
        nav a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background-color: var(--primary-blue);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-blue);
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
        }
        article {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }
        aside {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            height: fit-content;
            position: sticky;
            top: 90px;
        }
        h1 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
            border-bottom: 3px solid var(--accent-orange);
            padding-bottom: 10px;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--text-primary);
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border-color);
        }
        h3 {
            font-size: 1.4rem;
            color: var(--secondary-blue);
            margin: 25px 0 10px;
        }
        h4 {
            font-size: 1.1rem;
            color: var(--text-primary);
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 15px;
            color: var(--text-primary);
        }
        .lead {
            font-size: 1.1rem;
            color: var(--text-secondary);
            font-weight: 500;
            margin-bottom: 25px;
        }
        .content-block {
            margin-bottom: 30px;
        }
        .info-box {
            background: #f0f9ff;
            border-left: 4px solid var(--primary-blue);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box {
            background: #fff7ed;
            border-left: 4px solid var(--accent-orange);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .update-log {
            background: #f8fafc;
            border: 1px solid var(--border-color);
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .update-log h4 {
            color: var(--accent-orange);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .game-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: -15px;
            margin-bottom: 25px;
        }
        .btn {
            display: inline-block;
            background: var(--primary-blue);
            color: white;
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            min-height: 44px;
            min-width: 44px;
        }
        .btn:hover {
            background: var(--secondary-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
        }
        .btn-orange {
            background: var(--accent-orange);
        }
        .btn-orange:hover {
            background: #ea580c;
        }
        .btn-small {
            padding: 8px 16px;
            font-size: 0.9rem;
        }
        .social-share {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #f1f5f9;
            color: var(--text-primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            transform: translateY(-3px);
        }
        .social-icon.facebook:hover { background: #1877f2; color: white; }
        .social-icon.twitter:hover { background: #1da1f2; color: white; }
        .social-icon.whatsapp:hover { background: #25d366; color: white; }
        form {
            margin: 20px 0;
        }
        .form-group {
            margin-bottom: 15px;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            color: var(--text-primary);
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-blue);
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }
        .rating-star {
            font-size: 1.5rem;
            color: #e2e8f0;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-star:hover,
        .rating-star.active {
            color: #fbbf24;
        }
        .toc {
            background: #f8fafc;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
        }
        .toc h3 {
            margin-top: 0;
            color: var(--primary-blue);
        }
        .toc ul {
            list-style: none;
            padding-left: 10px;
        }
        .toc li {
            margin-bottom: 8px;
        }
        .toc a {
            color: var(--text-secondary);
            text-decoration: none;
            display: block;
            padding: 5px 0;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
        }
        .toc a:hover {
            color: var(--primary-blue);
            border-bottom-color: var(--primary-blue);
            padding-left: 5px;
        }
        footer {
            background: #1e293b;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .footer-section h3 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--accent-orange);
            padding-bottom: 8px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin: 5px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        #back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 999;
        }
        #back-to-top.visible {
            opacity: 1;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 0 15px;
            }
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s ease;
                z-index: 999;
            }
            nav ul.active {
                transform: translateY(0);
                opacity: 1;
            }
            nav a {
                display: block;
                padding: 12px 15px;
                border-radius: 6px;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            article, aside {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .social-share {
                justify-content: center;
            }
            .btn {
                width: 100%;
                margin-bottom: 10px;
            }
        }
        @media print {
            header, footer, .social-share, form, #back-to-top {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            article, aside {
                box-shadow: none;
                padding: 0;
            }
        }
