:root {
    --bg-color: #0a0a0a;
    --accent: #0095f6;
    --gold-text: #c5a487;
    --text-pure: #ffffff;
    --text-muted: #888888;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
}

body.menu-open { overflow: hidden; }

body {
    background-color: var(--bg-color);
    color: var(--text-pure);
    font-family: var(--font-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.editorial-wrapper {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* 🍔 HAMBURGER UI */
.main-header-nav {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

.menu-trigger {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; /* Cuadrado redondeado elegante */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-trigger:active { transform: scale(0.9); }

.bar {
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

.menu-trigger .bar:nth-child(2) { width: 12px; margin-left: 6px; }

/* 📱 SIDE MENU DRAWER */
.side-menu-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(25px);
    z-index: 2000;
    transition: right 0.5s cubic-bezier(0.83, 0, 0.17, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.side-menu-drawer.active { right: 0; }

.drawer-header {
    padding: 40px 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-logo { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.2rem; letter-spacing: 2px; }
.close-drawer { font-size: 2.5rem; color: #fff; cursor: pointer; opacity: 0.5; }

.drawer-content { padding: 40px 25px; flex: 1; }
.drawer-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #888;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 35px;
    transition: color 0.3s;
}

.drawer-link i { font-size: 1.2rem; width: 25px; }
.drawer-link.active { color: #fff; }
.drawer-link:hover { color: #fff; }

.drawer-divider { height: 1px; background: rgba(255,255,255,0.05); margin: 20px 0 40px; }

.drawer-footer {
    padding: 30px 25px;
    font-size: 0.65rem;
    color: #444;
    letter-spacing: 2px;
}

/* Header */
.editorial-header {
    position: relative;
    margin-bottom: 25px;
}

.cover-banner {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 500px;
    background-color: var(--bg-color);
    overflow: hidden;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center top;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 40%;
    background: linear-gradient(to top, var(--bg-color), transparent);
    z-index: 3;
}

.header-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -40px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.pfp-aura {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
}

.pfp-editorial {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px rgba(197, 164, 135, 0.5), 0 10px 30px rgba(0,0,0,0.8);
    image-rendering: -webkit-optimize-contrast;
    transition: transform 0.3s ease;
}

.pfp-editorial:hover {
    transform: scale(1.02);
}

.name-block {
    width: 100%;
    text-align: center;
}

.name-flex-original {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.brand-name-premium {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.meta-badge-inline { width: 22px; height: 22px; }

.official-label {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 4px;
    margin-top: 6px;
    text-transform: uppercase;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 20px 20px 40px;
}

.stat { display: flex; align-items: center; gap: 10px; }
.stat i { color: var(--accent); font-size: 1.1rem; }
.stat-val { font-weight: 700; font-size: 1.1rem; }
.stat-name { font-size: 0.6rem; color: var(--text-muted); font-weight: 600; letter-spacing: 1px; }

/* Links Section */
.links-section {
    padding: 0 20px;
    margin-bottom: 50px;
}

.feature-card {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 25px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.card-bg-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; 
    background-position: center center;
    transition: transform 0.5s ease;
}

.card-content {
    position: relative; height: 100%; padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    display: flex; flex-direction: column; justify-content: flex-end;
}

.card-title { font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.age-badge {
    background: #ff0000;
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 900;
    letter-spacing: 0;
}
.card-desc { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 15px; }

.card-cta-btn {
    align-self: flex-start;
    padding: 10px 20px;
    background: #fff;
    color: #000;
    font-weight: 800;
    font-size: 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.card-cta-btn i { font-size: 0.6rem; }

/* Secondary Links */
.secondary-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modern-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 25px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-decoration: none;
    color: white;
    position: relative;
    transition: all 0.3s ease;
}

.link-label {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--gold-text);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.link-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
}

.modern-link i {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--text-muted);
    opacity: 0.3;
}

/* Footer */
.editorial-footer {
    padding-top: 40px;
    padding-bottom: 15px;
    text-align: center;
    margin-top: auto;
}

.footer-social-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-circle {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.social-circle:nth-child(1) { background: #1da1f2; }
.social-circle:nth-child(2) { background: #1877f2; }
.social-circle:nth-child(3) { background: #9146ff; }
.social-circle:nth-child(4) { background: #ff0000; }

.footer-copyright-block {
    padding: 15px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0 40px;
}

.copyright-text {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* MOBILE OPTIMIZATION - ELITE REFINEMENT */
@media (max-width: 480px) {
    .editorial-header { margin-bottom: 20px; }
    .header-main { margin-top: -55px; }
    .pfp-aura { width: 110px; height: 110px; }
    
    .brand-name-premium { font-size: 1.5rem; letter-spacing: -0.5px; }
    .official-label { font-size: 0.6rem; letter-spacing: 4px; margin-top: 4px; }
    
    .stats-bar { gap: 20px; padding: 12px 0; margin-bottom: 25px; border-radius: 15px; }
    .stat-val { font-size: 1rem; }
    .stat-name { font-size: 0.55rem; }
    
    .feature-card { 
        aspect-ratio: 4 / 5; /* Vertical para ver la foto completa */
        height: auto;
        border-radius: 22px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.6);
        border: 1px solid rgba(255,255,255,0.15);
    }
    
    .card-content { padding: 20px; }
    .card-title { font-size: 1.3rem; }
    .card-category { font-size: 0.6rem; letter-spacing: 2px; }

    .modern-link { padding: 16px 20px; border-radius: 18px; margin-bottom: 12px; }
    .link-text { font-size: 1rem; }
}
