@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;500;700;900&display=swap');

:root {
    --accent: #FFCC00;
    --accent-glow: rgba(255, 204, 0, 0.4);
    --bg-dark: #050508;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* --- BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Outfit', sans-serif; background-color: var(--bg-dark); color: white; overflow-x: hidden; line-height: 1.6; }

/* --- HEADER --- */
.header-bg-wrapper {
    width: 100%; min-height: 75vh;
    background: linear-gradient(to bottom, rgba(5,5,8,0.2), var(--bg-dark)), url('fondo.png');
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
}

/* 🔥 FIX CENTRADO */
.global-header { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 20px; 
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 20px; 
}

.interactive-anchor { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    cursor: pointer; 
    text-decoration: none; 
    color: white; 
    transition: 0.4s; 
    width: auto; 
    flex: 1; 
}

.interactive-anchor.left {
    justify-content: flex-start;
    text-align: left;
}

.interactive-anchor.right {
    justify-content: flex-end;
    text-align: right;
}

.interactive-anchor:hover { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(255,255,255,0.2)); }
.interactive-anchor.left:hover .header-icon-java { filter: drop-shadow(0 0 20px var(--accent)); }
.interactive-anchor.right:hover .header-icon-discord { filter: drop-shadow(0 0 20px #5865F2); }

.header-icon-java { color: var(--accent); font-size: 2.2rem; transition: 0.4s; }
.header-icon-discord { color: #5865F2; font-size: 2.2rem; transition: 0.4s; }

.anchor-text h2 { font-size: 1.3rem; font-weight: 900; }
.anchor-text p { font-size: 0.7rem; opacity: 0.4; letter-spacing: 2px; }

.main-logo { 
    width: 350px; 
    filter: drop-shadow(0 0 50px var(--accent-glow)); 
    animation: float 6s infinite ease-in-out; 
    flex-shrink: 0;
}

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* --- SECCIÓN IP --- */
.section-divider { padding: 100px 20px; text-align: center; }
.section-title { font-size: 3rem; font-weight: 900; margin-bottom: 50px; }
.gold { color: var(--accent); text-shadow: 0 0 20px var(--accent-glow); }

.ip-container { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }

.ip-card {
    background: #0f0f15; border: 1px solid var(--glass-border);
    border-radius: 30px; padding: 50px 40px; width: 420px;
    cursor: pointer; transition: 0.5s; position: relative; overflow: hidden;
}

.ip-card:hover { transform: translateY(-15px); }
.java-card:hover { border-color: var(--accent); box-shadow: 0 0 50px rgba(255, 204, 0, 0.3); }
.bedrock-card:hover { border-color: #00ffcc; box-shadow: 0 0 50px rgba(0, 255, 204, 0.3); }

.grad-java { background: linear-gradient(90deg, #FFCC00, #ffec94); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.grad-bedrock { background: linear-gradient(90deg, #00ffcc, #a2fff0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.ip-card i { font-size: 3.5rem; margin-bottom: 20px; transition: 0.5s; }
.java-card i { color: var(--accent); }
.bedrock-card i { color: #00ffcc; }

.ip-val { font-size: 1.8rem; font-weight: 900; margin: 10px 0; }

.copy-badge.yellow-bg { 
    position: absolute; bottom: 0; left: 0; width: 100%; 
    background: var(--accent); color: black; font-weight: 900; 
    font-size: 0.9rem; padding: 12px; 
    transform: translateY(100%); transition: 0.3s; 
}

.ip-card:hover .copy-badge { transform: translateY(0); }

/* --- DISCORD --- */
.discord-section { 
    padding: 80px 20px; 
    background: linear-gradient(90deg, rgba(88, 101, 242, 0.05) 0%, transparent 100%); 
}

.discord-flex { 
    display: flex; 
    align-items: center; 
    gap: 60px; 
    max-width: 1300px; 
    margin: 0 auto; 
}

.discord-title-adjust { margin-bottom: 15px !important; }

.zeus-img { 
    width: 90%; 
    max-width: 550px; 
    animation: float 5s infinite ease-in-out; 
}

.discord-info { flex: 1; }

.discord-p { margin-bottom: 20px; }

.leyenda-resaltada { 
    text-align: center; 
    color: var(--accent) !important; 
    font-weight: 800 !important; 
    font-size: 1.4rem !important; 
    opacity: 1 !important;
    text-shadow: 0 0 15px var(--accent-glow);
    margin-top: 10px;
}

.btn-center-wrapper { display: flex; justify-content: center; margin-top: 25px; }

.discord-btn { 
    display: inline-flex; align-items: center; gap: 15px; 
    background: #5865F2; color: white; text-decoration: none; 
    padding: 22px 45px; border-radius: 20px; font-weight: 900; 
    transition: 0.3s; 
}

.discord-btn:hover { 
    transform: scale(1.05); 
    background: white; 
    color: #5865F2; 
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.5); 
}

/* --- TIENDA --- */
.content { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.shop-promo-center {
    text-align: center; background: rgba(255, 255, 255, 0.02);
    padding: 100px 50px; border-radius: 60px; border: 1px solid var(--glass-border);
    backdrop-filter: blur(40px); transition: 0.4s;
}

.shop-promo-center:hover { border-color: var(--accent); box-shadow: 0 0 50px rgba(255, 204, 0, 0.1); }

.shop-small-text { color: white; font-size: 1rem; font-weight: 500; letter-spacing: 4px; opacity: 0.8; }
.shop-big-title { font-size: 4.5rem; font-weight: 900; margin: 10px 0; color: white; }

.gold-text { color: var(--accent); text-shadow: 0 0 30px var(--accent-glow); }

.shop-btn {
    margin-top: 40px; display: inline-block; background: var(--accent); color: black;
    padding: 25px 80px; border-radius: 25px; font-weight: 900; font-size: 1.4rem;
    text-decoration: none; transition: 0.4s; box-shadow: 0 15px 40px var(--accent-glow);
}

.shop-btn:hover { transform: scale(1.1); background: white; }

/* --- FOROS --- */
.forums-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.forum-card { 
    background: var(--glass); border: 1px solid var(--glass-border); 
    border-radius: 40px; padding: 60px 40px; transition: 0.4s; text-align: center; 
}

.forum-card:hover { border-color: var(--accent); transform: scale(1.02); }

.forum-card i { font-size: 3rem; color: var(--accent); margin-bottom: 20px; }

/* --- FOOTER --- */
.global-footer { 
    padding: 100px 40px 180px; 
    background: #020205; 
    border-top: 1px solid var(--glass-border); 
}

.footer-content { 
    display: grid; 
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 80px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.footer-gold-title { 
    color: var(--accent) !important; 
    font-weight: 900 !important; 
    font-size: 1.5rem; 
    margin-bottom: 30px; 
    text-transform: uppercase; 
}

.footer-white-text { color: white !important; opacity: 1 !important; }

.social-intro { margin-bottom: 20px; color: white; font-weight: 500; }

.footer-socials { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
}

.footer-socials a { 
    text-decoration: none; 
    color: white; 
    background: rgba(255,255,255,0.03); 
    padding: 18px; 
    border-radius: 15px; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    transition: all 0.3s ease; 
    border: 1px solid var(--glass-border); 
}

.footer-socials a:nth-child(1):hover { background: #5865F2; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3); }
.footer-socials a:nth-child(2):hover { background: #000; color: #ff0050; border-color: #00f2ea; transform: translateY(-5px); }
.footer-socials a:nth-child(3):hover { background: #FF0000; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3); }
.footer-socials a:nth-child(4):hover { background: #EA4335; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(234, 67, 53, 0.3); }

.footer-bottom { 
    text-align: center; 
    margin-top: 80px; 
    color: #888; 
    font-size: 0.9rem; 
}

/* 🔥 DOCK FLOTANTE */
.floating-dock {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    z-index: 999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
    padding: 10px 15px;
    border-radius: 15px;
    transition: 0.3s;
}

.dock-item i {
    font-size: 1.2rem;
}

.dock-item:hover {
    transform: translateY(-8px) scale(1.08);
    background: rgba(255,255,255,0.08);
}

.dock-item.active {
    background: var(--accent);
    color: black;
    font-weight: 900;
}

/* ===== STAFF
/* ===== DESCRIPCIÓN ===== */
.staff-desc {
    text-align: center;
    opacity: 0.7;
    margin-bottom: 20px;
}

/* ===== LINEA TITULO ===== */
.title-underline {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto 60px;
    border-radius: 10px;
}

/* ===== TITULOS ===== */
.staff-section-title {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
}

/* ===== GRID ===== */
.staff-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

/* ===== CARD BASE ===== */
.staff-card-modern {
    width: 280px;
    padding: 35px 25px;
    border-radius: 25px;
    text-align: center;

    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.35s ease;
    position: relative;
}

/* Hover base */
.staff-card-modern:hover {
    transform: translateY(-10px) scale(1.03);
}

/* ===== AVATAR ===== */
.avatar-modern {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.avatar-modern img {
    width: 85px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    transition: 0.35s ease;
}

/* Animación */
.staff-card-modern:hover img {
    transform: scale(1.08);
}

/* ===== TEXTO ===== */
.name-modern {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.role-modern {
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid;
    display: inline-block;
    margin-bottom: 14px;
}

.quote-modern {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 15px;
}

.divider-modern {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 12px 0;
}

.date-modern {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* ===================================================== */
/* 🔥 COLORES POR RANGO */
/* ===================================================== */

/* ===== FUNDADOR ===== */
.staff-card-modern.founder {
    border-color: rgba(255, 204, 0, 0.35);
}

/* Hover más potente */
.staff-card-modern.founder:hover {
    border-color: #ffcc00;
    box-shadow: 
        0 15px 45px rgba(255, 204, 0, 0.25),
        0 0 20px rgba(255, 204, 0, 0.15) inset;
}

/* Avatar dorado */
.staff-card-modern.founder img {
    border-color: rgba(255, 204, 0, 0.4);
}

.staff-card-modern.founder:hover img {
    border-color: #ffcc00;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}

/* Rango */
.staff-card-modern.founder .role-modern {
    color: #ffcc00;
    border-color: #ffcc00;
}

/* Detalle premium (línea arriba) */
.staff-card-modern.founder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffcc00, transparent);
    opacity: 0.7;
}

/* ===== ADMIN (ROJO) ===== */
.staff-card-modern.admin {
    border-color: rgba(255, 77, 77, 0.25);
}

.staff-card-modern.admin:hover {
    border-color: #ff4d4d;
    box-shadow: 0 12px 35px rgba(255, 77, 77, 0.2);
}

.staff-card-modern.admin img {
    border-color: rgba(255, 77, 77, 0.3);
}

.staff-card-modern.admin:hover img {
    border-color: #ff4d4d;
}

.staff-card-modern.admin .role-modern {
    color: #ff4d4d;
    border-color: #ff4d4d;
}

/* ===== MOD (AZUL) ===== */
.staff-card-modern.mod {
    border-color: rgba(77, 166, 255, 0.25);
}

.staff-card-modern.mod:hover {
    border-color: #4da6ff;
    box-shadow: 0 12px 35px rgba(77, 166, 255, 0.2);
}

.staff-card-modern.mod img {
    border-color: rgba(77, 166, 255, 0.3);
}

.staff-card-modern.mod:hover img {
    border-color: #4da6ff;
}

.staff-card-modern.mod .role-modern {
    color: #4da6ff;
    border-color: #4da6ff;
}

/* ===== SOPORTE (AMARILLO) ===== */
.staff-card-modern.support {
    border-color: rgba(255, 214, 51, 0.25);
}

.staff-card-modern.support:hover {
    border-color: #ffd633;
    box-shadow: 0 12px 35px rgba(255, 214, 51, 0.2);
}

.staff-card-modern.support img {
    border-color: rgba(255, 214, 51, 0.3);
}

.staff-card-modern.support:hover img {
    border-color: #ffd633;
}

.staff-card-modern.support .role-modern {
    color: #ffd633;
    border-color: #ffd633;
}

/* ===== REGLAS (VERSIÓN PRO RECTANGULAR) ===== */

.rules-wide {
    max-width: 1500px;
}

/* DESCRIPCIÓN */
.rules-desc {
    max-width: 900px;
    margin: 0 auto 50px auto;
    text-align: center;
    font-size: 1rem;
    opacity: 0.75;
}

/* GRID */
.rules-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* CARD RECTANGULAR */
.rule-advanced {
    border-radius: 18px;
    padding: 30px 35px;

    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* ANIMACIÓN GENERAL */
.rule-advanced:hover {
    transform: translateY(-6px) scale(1.01);
}

/* BORDE ILUMINADO SUTIL */
.rule-advanced::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: 0.4s;
}

.rule-advanced:hover::after {
    opacity: 1;
}

/* HEADER */
.rule-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

/* ICONO */
.rule-header i {
    font-size: 1.2rem;
}

/* TÍTULO CON EFECTO */
.rule-header h3 {
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: 1px;
    position: relative;
    transition: 0.3s;
}

/* SUBRAYADO ANIMADO */
.rule-header h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 3px;
    border-radius: 10px;
    background: currentColor;
    transition: 0.4s;
}

.rule-advanced:hover .rule-header h3::after {
    width: 100%;
}

/* LISTA */
.rule-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ITEM */
.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 12px 14px;
    border-radius: 12px;

    background: rgba(255,255,255,0.015);

    transition: 0.25s;
}

/* HOVER */
.rule-item:hover {
    background: rgba(255,255,255,0.04);
    transform: translateX(6px);
}

/* NUMERO */
.rule-id {
    min-width: 40px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 0.7rem;
    font-weight: 900;

    border-radius: 12px;

    background: rgba(255,255,255,0.08);
}

/* TEXTO MÁS LIMPIO */
.rule-item p {
    margin: 0;
    font-size: 0.92rem;
    opacity: 0.9;
    line-height: 1.45;
}

/* ===== COLORES ===== */

/* CYAN */
.rule-advanced.cyan { color: #00e6e6; }
.rule-advanced.cyan::after {
    box-shadow: 0 0 40px rgba(0,230,230,0.15);
}

/* ROJO */
.rule-advanced.red { color: #ff4d4d; }
.rule-advanced.red::after {
    box-shadow: 0 0 40px rgba(255,77,77,0.15);
}

/* AZUL */
.rule-advanced.blue { color: #4da6ff; }
.rule-advanced.blue::after {
    box-shadow: 0 0 40px rgba(77,166,255,0.15);
}

/* DORADO */
.rule-advanced.gold { color: #ffcc00; }
.rule-advanced.gold::after {
    box-shadow: 0 0 40px rgba(255,204,0,0.2);
}

/* ===== FECHA FINAL ===== */

.rules-footer-note {
    text-align: center;
    margin-top: 50px;
    font-size: 0.85rem;
    opacity: 0.5;
    letter-spacing: 1px;
}

/* ========================= */
/* ===== MEDIA PAGE ======== */
/* ========================= */
/* =========================
   FIX GENERAL MEDIA
========================= */

/* HERO */
.media-hero {
    text-align: center;
    padding: 120px 20px 60px;
}

.media-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

.media-hero p {
    opacity: 0.7;
    margin-top: 10px;
}

/* =========================
   PLATAFORMAS (ARREGLADO)
========================= */

.platforms {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.platform {
    padding: 14px 28px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    font-weight: 600;
    transition: 0.3s;
}

/* COLORES REALES */
.platform.tiktok:hover {
    box-shadow: 0 0 25px #ff0050, 0 0 10px #00f2ea inset;
}

.platform.youtube:hover {
    box-shadow: 0 0 25px #ff0000;
}

.platform.shorts:hover {
    box-shadow: 0 0 25px #ffcc00;
}

.platform.stream:hover {
    box-shadow: 0 0 25px #a855f7;
}

/* =========================
   BENEFICIOS (GRID REAL)
========================= */

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 900px;
    margin: 50px auto 0;
    gap: 25px;
}

/* CENTRADO PERFECTO CUANDO FALTA 1 */
.grid-4::after {
    content: "";
    grid-column: span 1;
}

/* CARD */
.benefit {
    text-align: center;
    padding: 40px 25px;
    border-radius: 25px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.3s;
}

.benefit i {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* COLORES */
.yellow i { color: #ffcc00; }
.blue i { color: #00ccff; }
.green i { color: #00ff88; }
.purple i { color: #c084fc; }

.yellow:hover { box-shadow: 0 0 30px rgba(255,204,0,0.4); }
.blue:hover { box-shadow: 0 0 30px rgba(0,204,255,0.4); }
.green:hover { box-shadow: 0 0 30px rgba(0,255,136,0.4); }
.purple:hover { box-shadow: 0 0 30px rgba(192,132,252,0.4); }

/* =========================
   REQUISITOS (ARREGLADO)
========================= */

.req-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.req-box {
    width: 320px;
    padding: 30px;
    border-radius: 25px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(25px);
    transition: 0.3s;
}

/* COLOR */
.tiktok-box {
    border: 1px solid #ff0050;
}
.tiktok-box:hover {
    box-shadow: 0 0 30px #ff0050;
}

.yt-box {
    border: 1px solid #ff0000;
}
.yt-box:hover {
    box-shadow: 0 0 30px #ff0000;
}

/* LISTAS */
.req-box ul {
    margin-top: 15px;
    text-align: left;
    padding-left: 15px;
}

.req-box li {
    margin-bottom: 8px;
    opacity: 0.85;
}

/* =========================
   GLOBAL WARNING
========================= */

.global-req {
    margin: 40px auto 0;
    padding: 15px 25px;
    width: fit-content;
    border-radius: 15px;
    background: rgba(255,0,0,0.1);
    border: 1px solid rgba(255,0,0,0.4);
    color: #ff4d4d;
    font-weight: 600;
}

/* =========================
   PAUTAS (PRO)
========================= */

.guidelines {
    max-width: 900px;
    margin: 50px auto 0;
}

.guide {
    display: flex;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 15px;
    margin-bottom: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.3s;
}

.guide:hover {
    transform: translateX(8px);
}

/* COLORES */
.guide:nth-child(1) i { color: #00ccff; }
.guide:nth-child(2) i { color: #ffcc00; }
.guide:nth-child(3) i { color: #00ff88; }
.guide:nth-child(4) i { color: #c084fc; }

/* =========================
   CTA FINAL
========================= */

.apply-section {
    text-align: center;
    padding: 120px 20px;
}

.apply-section h2 {
    font-size: 3rem;
}

.apply-section .gold {
    text-shadow: 0 0 30px rgba(255,204,0,0.6);
}

.apply-btn {
    margin-top: 30px;
    padding: 22px 60px;
    border-radius: 30px;
    background: linear-gradient(135deg, #5865F2, #404EED);
    color: white;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    transition: 0.3s;
}

.apply-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(88,101,242,0.7);
}
/* ══════════════════════════════════════════
   CURSOR PERSONALIZADO — MYTHICCRAFT
══════════════════════════════════════════ */

/* Ocultar cursor nativo en todo el sitio */
*, *::before, *::after { cursor: none !important; }

/* Cursor principal (punto dorado) */
.mc-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 0 10px rgba(255,204,0,0.8), 0 0 20px rgba(255,204,0,0.4);
    will-change: transform;
}

/* Anillo exterior */
.mc-cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(255,204,0,0.55);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
    will-change: transform;
}

/* Estado hover sobre elementos interactivos */
body.cursor-hover .mc-cursor {
    transform: translate(-50%, -50%) scale(1.6);
    background: white;
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
}
body.cursor-hover .mc-cursor-ring {
    width: 56px; height: 56px;
    border-color: rgba(255,204,0,0.9);
}

/* Estado click */
body.cursor-click .mc-cursor {
    transform: translate(-50%, -50%) scale(0.7);
}
body.cursor-click .mc-cursor-ring {
    width: 28px; height: 28px;
    border-color: white;
}

/* ══════════════════════════════════════════
   DOCK FLOTANTE — UNIFICADO TODAS LAS PÁGINAS
══════════════════════════════════════════ */
.floating-dock {
    position: fixed !important;
    bottom: 25px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 6px !important;
    padding: 10px 14px !important;
    background: rgba(10,10,15,0.85) !important;
    backdrop-filter: blur(30px) saturate(200%) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 22px !important;
    z-index: 999 !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
}

.dock-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
    text-decoration: none !important;
    color: rgba(255,255,255,0.5) !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    padding: 10px 18px !important;
    border-radius: 14px !important;
    transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1) !important;
}
.dock-item i { font-size: 1.1rem !important; transition: 0.3s !important; }
.dock-item:hover { color: white !important; background: rgba(255,255,255,0.07) !important; transform: translateY(-6px) !important; }
.dock-item:hover i { transform: scale(1.2) !important; }
.dock-item.active { background: var(--accent) !important; color: black !important; font-weight: 900 !important; }

/* ══════════════════════════════════════════
   FOOTER — UNIFICADO TODAS LAS PÁGINAS
══════════════════════════════════════════ */
.global-footer {
    padding: 100px 40px 200px !important;
    background: #020205 !important;
    border-top: 1px solid rgba(255,255,255,0.04) !important;
    position: relative !important;
    z-index: 1 !important;
}
.footer-content {
    display: grid !important;
    grid-template-columns: 1.3fr 0.7fr !important;
    gap: 80px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}
.footer-gold-title {
    color: var(--accent) !important;
    font-weight: 900 !important;
    font-size: 1.1rem !important;
    margin-bottom: 25px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}
.footer-white-text { color: rgba(255,255,255,0.55) !important; line-height: 1.8 !important; font-size: 0.9rem !important; }
.social-intro { margin-bottom: 20px !important; color: rgba(255,255,255,0.5) !important; font-size: 0.85rem !important; }
.footer-socials { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
.footer-socials a { text-decoration:none !important; color:rgba(255,255,255,0.6) !important; background:rgba(255,255,255,0.03) !important; padding:16px !important; border-radius:14px !important; display:flex !important; align-items:center !important; gap:10px !important; transition:all 0.3s ease !important; border:1px solid rgba(255,255,255,0.05) !important; font-size:0.85rem !important; font-weight:600 !important; }
.footer-socials a:nth-child(1):hover{background:#5865F2 !important;color:white !important;transform:translateY(-4px) !important;}
.footer-socials a:nth-child(2):hover{background:#111 !important;color:white !important;border-color:#ff0050 !important;transform:translateY(-4px) !important;}
.footer-socials a:nth-child(3):hover{background:#FF0000 !important;color:white !important;transform:translateY(-4px) !important;}
.footer-socials a:nth-child(4):hover{background:#EA4335 !important;color:white !important;transform:translateY(-4px) !important;}
.footer-bottom { text-align:center !important; margin-top:70px !important; color:rgba(255,255,255,0.2) !important; font-size:0.8rem !important; line-height:1.8 !important; }

/* ══════════════════════════════════════════
   ANIMACIONES EXTRA GLOBALES
══════════════════════════════════════════ */

/* Shimmer en títulos gold al hover */
@keyframes goldShimmer {
    0% { text-shadow: 0 0 20px rgba(255,204,0,0.3); }
    50% { text-shadow: 0 0 40px rgba(255,204,0,0.7), 0 0 80px rgba(255,204,0,0.2); }
    100% { text-shadow: 0 0 20px rgba(255,204,0,0.3); }
}
.gold, .gold-text { animation: goldShimmer 3s ease infinite; }

/* Pulsación sutil en el dock activo */
@keyframes dockActivePulse {
    0%, 100% { box-shadow: none; }
    50% { box-shadow: 0 0 20px rgba(255,204,0,0.4); }
}
.dock-item.active { animation: dockActivePulse 2.5s ease infinite !important; }

/* Línea decorativa divisor con brillo */
.media-divider {
    position: relative;
    height: 1px;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.25;
}

/* Animate logo on all pages */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }