/* style_wiki.css - Diseño Moderno con Imágenes Limpias */

/* ===== VARIABLES Y RESET ===== */
:root {
    --primary-orange: #ff6b00;
    --primary-dark: #0f0d0a;
    --primary-gold: #ffb300;
    --accent-red: #ff3d00;
    --text-light: #ffffff;
    --text-gold: #d4a574;
    --bg-dark: #0a0806;
    --bg-card: rgba(23, 21, 19, 0.95);
    --border-glow: rgba(255, 107, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(255, 107, 0, 0.4);
    --gradient-primary: linear-gradient(135deg, #ff6b00 0%, #ff3d00 100%);
    --gradient-gold: linear-gradient(135deg, #ffb300 0%, #ff9800 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body, html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Orbitron', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== ANIMACIONES GLOBALES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 107, 0, 0.8);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.wiki-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 179, 0, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0806 0%, #1a120b 50%, #0a0806 100%);
}

/* ===== HEADER MODERNO ===== */
.wiki-header {
    background: rgba(15, 13, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideInLeft 0.8s ease-out;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* LOGO SIN BORDES NI DECORACIONES */
.wiki-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.3));
}

.wiki-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.6));
}

.wiki-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== BOTONES MODERNOS ===== */
.auth-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.auth-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.auth-btn:hover::before {
    left: 100%;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

.logout-btn {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
}

/* ===== USER MENU MODERNO ===== */
.user-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.user-btn {
    background: var(--gradient-dark);
    border: 1px solid var(--border-glow);
    color: var(--text-gold);
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.user-btn:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
    transform: translateY(-2px);
}

/* SKIN DE USUARIO SIN BORDES NI DECORACIONES */
.user-avatar {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skin-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(255, 107, 0, 0.2));
}

.user-btn:hover .skin-image {
    filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.4));
    transform: scale(1.05);
}

/* ===== NAVEGACIÓN MODERNA ===== */
.wiki-nav {
    background: rgba(15, 13, 10, 0.8);
    backdrop-filter: blur(15px);
    padding: 1rem 2rem;

}

.nav-content {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-btn {
    background: var(--gradient-dark);
    color: var(--text-gold);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
}

.nav-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-orange);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

/* ===== CONTENIDO PRINCIPAL ===== */
.wiki-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* ===== HERO SECTION MODERNA ===== */
.hero-section {
    background: var(--gradient-dark);
    border: 1px solid var(--border-glow);
    border-radius: 25px;
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    color: var(--text-gold);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 107, 0, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(255, 107, 0, 0.2);
    transform: translateY(-3px);
}

.stat i {
    font-size: 1.8rem;
    color: var(--primary-orange);
}

.stat span {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

/* ===== QUICK NAV MODERNO ===== */
.quick-nav-section {
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-gold);
    font-size: 1.1rem;
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.quick-nav-card {
    background: var(--gradient-dark);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-gold);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.quick-nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.quick-nav-card:hover::before {
    left: 100%;
}

.quick-nav-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.3);
    color: var(--primary-orange);
}

.quick-nav-card.active {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--primary-orange);
}

.quick-nav-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.quick-nav-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===== WIKI CONTENT LAYOUT ===== */
.wiki-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ===== SIDEBAR MODERNO ===== */
.wiki-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar-sticky {
    background: var(--gradient-dark);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.sidebar-sticky::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.sidebar-sticky h4 {
    color: var(--primary-orange);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.sidebar-nav {
    list-style: none;
}

.sidebar-link {
    display: block;
    padding: 1rem 1.2rem;
    color: var(--text-gold);
    text-decoration: none;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-weight: 500;
}

.sidebar-link:hover {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-orange);
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateX(5px);
}

.sidebar-link.active {
    background: rgba(255, 107, 0, 0.15);
    color: var(--primary-orange);
    border-color: rgba(255, 107, 0, 0.5);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
    transform: translateX(5px);
}

/* ===== ARTICLES MODERNOS ===== */
.wiki-articles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wiki-article {
    background: var(--gradient-dark);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.wiki-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.wiki-article.active {
    display: block;
}

.article-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 107, 0, 0.3);
}

.article-header h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.article-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.last-updated, .importance, .info {
    color: var(--text-gold);
    font-size: 0.9rem;
    font-weight: 500;
}

.importance {
    color: #ff6b6b;
}

/* ===== CONTENT STYLES MODERNOS ===== */
.article-content h3 {
    color: var(--primary-orange);
    font-size: 1.6rem;
    margin: 2rem 0 1.2rem 0;
    font-weight: 600;
}

.article-content h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.article-content p {
    color: var(--text-gold);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.article-content strong {
    color: var(--primary-orange);
}

/* ===== GRIDS Y CARDS MODERNOS ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-card {
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--primary-orange);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.info-card h4 {
    color: var(--primary-orange);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.info-card p {
    color: var(--text-gold);
    margin-bottom: 0.5rem;
}

.info-card small {
    color: #8b6f47;
    font-size: 0.8rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.4);
    transform: translateY(-3px);
}

.feature-item i {
    color: var(--primary-orange);
    font-size: 1.3rem;
}

.feature-item span {
    color: var(--text-gold);
    font-weight: 500;
}

/* ===== RULES STYLES MODERNOS ===== */
.rules-category {
    margin-bottom: 2.5rem;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.rule-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem;
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.rule-item:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.4);
    transform: translateX(5px);
}

.rule-number {
    background: var(--gradient-primary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1rem;
}

.rule-content h4 {
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.rule-content p {
    color: var(--text-gold);
    margin: 0;
}

.warning-box {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.warning-box h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.warning-box ul {
    color: var(--text-gold);
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.warning-box li {
    margin-bottom: 0.5rem;
}

/* ===== COMMANDS STYLES MODERNOS ===== */
.commands-category {
    margin-bottom: 2.5rem;
}

.commands-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.command-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.command-item:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.4);
    transform: translateX(5px);
}

.command-item code {
    background: rgba(15, 13, 10, 0.8);
    border: 1px solid rgba(255, 107, 0, 0.4);
    border-radius: 8px;
    padding: 0.7rem 1rem;
    color: var(--primary-orange);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    flex-shrink: 0;
    min-width: 200px;
    font-weight: 600;
}

.command-item span {
    color: var(--text-gold);
    flex: 1;
}

/* ===== SUPPORT STYLES MODERNOS ===== */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-card {
    background: var(--gradient-dark);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.3);
    border-color: var(--primary-orange);
}

.support-card i {
    font-size: 3.5rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.support-card h4 {
    color: var(--primary-orange);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.support-card p {
    color: var(--text-gold);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.support-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

/* ===== FOOTER MODERNO ===== */
.wiki-footer {
    background: rgba(15, 13, 10, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 107, 0, 0.3);
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* LOGO DEL FOOTER SIN BORDES */
.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.3));
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.6));
    transform: scale(1.05);
}

.footer-info p {
    color: var(--text-gold);
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.footer-links a:hover {
    background: rgba(255, 107, 0, 0.1);
    transform: translateY(-2px);
}

.footer-copy p {
    color: #8b6f47;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .wiki-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .wiki-sidebar {
        position: static;
    }
    
    .sidebar-sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .wiki-header {
        padding: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .wiki-title {
        font-size: 1.8rem;
    }
    
    .user-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .user-actions .auth-btn,
    .user-actions .user-btn {
        width: 100%;
        justify-content: center;
    }
    
    .wiki-nav {
        padding: 1rem;
    }
    
    .nav-content {
        gap: 0.5rem;
    }
    
    .nav-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .wiki-main {
        padding: 1rem;
    }
    
    .hero-section {
        padding: 2rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat {
        padding: 0.8rem 1.2rem;
    }
    
    .quick-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wiki-article {
        padding: 2rem 1.5rem;
    }
    
    .command-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .command-item code {
        min-width: auto;
        width: 100%;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .quick-nav-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-btn {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    
    .wiki-article {
        padding: 1.5rem 1rem;
    }
    
    .article-header h2 {
        font-size: 1.8rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===== SCROLLBAR PERSONALIZADO ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange);
}