:root{
    --bg:#07070b;
    --bg2:#0c0c14;
    --card:#0f1020;
    --stroke:rgba(255,255,255,.12);
    --text:rgba(255,255,255,.92);
    --muted:rgba(255,255,255,.68);
    --brand1:#7c3aed; /* purple */
    --brand2:#2563eb; /* blue */
    --brand3:#22d3ee; /* cyan accent */
    --glow: 0 0 24px rgba(124,58,237,.35), 0 0 44px rgba(37,99,235,.25);
}

html { scroll-behavior: smooth; }
body{
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: radial-gradient(1200px 700px at 80% 0%, rgba(124,58,237,.18), transparent 55%),
    radial-gradient(900px 600px at 10% 10%, rgba(37,99,235,.16), transparent 50%),
    linear-gradient(180deg, var(--bg), #05050a 60%, #040409);
    color: var(--text);
}
.font-display{ font-family: Oxanium, Inter, system-ui, sans-serif; letter-spacing: .5px; }

/* Navbar */
.navbar{
    backdrop-filter: blur(10px);
    background: rgba(5,5,10,.55);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-link{ color: rgba(255,255,255,.78) !important; }
.nav-link:hover{ color: #fff !important; }
.btn-neon{
    border: 1px solid rgba(255,255,255,.16);
    background: linear-gradient(135deg, rgba(124,58,237,.35), rgba(37,99,235,.28));
    color: #fff;
    box-shadow: var(--glow);
}
.btn-neon:hover{ filter: brightness(1.08); }

/* Hero video */
.hero{
    position: relative;
    min-height: 92vh;
    display:flex;
    align-items: center;
    overflow:hidden;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    filter: contrast(1.05) saturate(1.1) brightness(.6);
    transform: scale(1.03);
}
.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
            radial-gradient(900px 500px at 70% 10%, rgba(124,58,237,.35), transparent 55%),
            radial-gradient(900px 500px at 10% 30%, rgba(37,99,235,.28), transparent 55%),
            linear-gradient(180deg, rgba(0,0,0,.50), rgba(0,0,0,.72));
    z-index:1;
}
.hero::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:-1px;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.85));
    z-index:1;
}
.hero-content{
    position: relative;
    z-index:2;
    padding-top: 90px;
    padding-bottom: 70px;
}
.kicker{
    display:inline-flex;
    gap:.5rem;
    align-items:center;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.35);
    padding: .5rem .8rem;
    border-radius: 999px;
    color: rgba(255,255,255,.85);
}
.kicker i{ color: var(--brand3); }
.hero h1{
    font-size: clamp(2.2rem, 4.5vw, 4.2rem);
    line-height: 1.02;
    text-shadow: 0 10px 40px rgba(0,0,0,.55);
}
.hero p{
    color: rgba(255,255,255,.78);
    max-width: 56ch;
    font-size: 1.05rem;
}
.hero-stats{
    display:flex; flex-wrap:wrap; gap: 12px;
    margin-top: 24px;
}
.stat{
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    padding: 14px 16px;
    min-width: 170px;
}
.stat .n{ font-weight: 700; }
.stat .t{ color: var(--muted); font-size: .9rem; }

/* Sections */
section{ padding: 80px 0; }
.section-title{
    display:flex;
    align-items:end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}
.section-title h2{
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    margin:0;
}
.section-title p{ margin:0; color: var(--muted); }

.glass-card{
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 22px;
    box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

/* About */
.about-badge{
    display:inline-flex;
    gap:.6rem;
    align-items:center;
    padding: .55rem .85rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.88);
}
.gradient-border{
    position: relative;
    border-radius: 24px;
    overflow:hidden;
}
.gradient-border::before{
    content:"";
    position:absolute;
    inset:0;
    padding:1px;
    background: linear-gradient(135deg, rgba(124,58,237,.75), rgba(37,99,235,.75), rgba(34,211,238,.55));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border-radius: 24px;
    pointer-events:none;
}
.about-photo{
    border-radius: 24px;
    background:
            radial-gradient(500px 300px at 70% 10%, rgba(124,58,237,.35), transparent 55%),
            radial-gradient(500px 300px at 10% 30%, rgba(37,99,235,.28), transparent 55%),
            linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.10);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    /* si quieres que mantenga formato poster, deja esto;
       si quieres que respete la altura natural, puedes quitar la línea de abajo */
    aspect-ratio: 4 / 5;
}

.about-photo-img{
    width: 100%;
    height: 100%;
    object-fit: cover;        /* ocupa todo el cuadro */
    object-position: center;  /* centra la imagen */

    /* Si quieres que se vea más la cara (subir encuadre), prueba: */
    /* object-position: center top; */
}


.about-photo small{ color: var(--muted); }

/* Events */
.event-row{
    padding: 18px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
    cursor: pointer;
}
.event-row:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,.05);
    border-color: rgba(124,58,237,.28);
    box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.event-row.active{
    border-color: rgba(124,58,237,.9);
    background: rgba(124,58,237,.16);
}
.pill{
    display:inline-flex; align-items:center; gap:.45rem;
    padding:.4rem .7rem;
    border-radius: 999px;
    background: rgba(124,58,237,.18);
    border: 1px solid rgba(124,58,237,.28);
    color: rgba(255,255,255,.88);
    font-size: .88rem;
    white-space: nowrap;
}
.pill.blue{
    background: rgba(37,99,235,.18);
    border-color: rgba(37,99,235,.28);
}
.event-date{
    font-family: Oxanium, Inter, system-ui, sans-serif;
    letter-spacing:.7px;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
}
.event-meta{
    color: var(--muted);
    font-size: .95rem;
}

/* Media grids */
.media-thumb{
    border-radius: 18px;
    overflow:hidden;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    transition: transform .15s ease, border-color .15s ease;
    height: 100%;
}
.media-thumb:hover{
    transform: translateY(-2px);
    border-color: rgba(37,99,235,.35);
    box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.ratio iframe{ filter: saturate(1.05) contrast(1.05); }

/* Audio */
.audio-card{
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    overflow:hidden;
}
.audio-card .head{
    padding: 16px 16px 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(37,99,235,.12));
}

/* Footer */
footer{
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.6);
}
.social a{
    display:inline-flex;
    width: 42px; height: 42px;
    align-items:center; justify-content:center;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.85);
    background: rgba(255,255,255,.03);
    text-decoration:none;
    transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.social a:hover{
    transform: translateY(-2px);
    border-color: rgba(124,58,237,.35);
    background: rgba(124,58,237,.10);
    color: #fff;
    box-shadow: var(--glow);
}

/* Helper */
.text-muted2{ color: var(--muted) !important; }

@media (max-width: 991.98px){
    section{ padding: 64px 0; }
    .hero{ min-height: 86vh; }
    .stat{ min-width: 150px; }
}