:root {
    --black: #000000;
    --white: #ffffff;
    --gray: #1a1a1a;
    --dark-gray: #111111;
    --white-gray: #666666;
    --font-main: 'Poppins', sans-serif;

    /* Brand Colors for Event */
    --gold: #f2df90;
    --pink: #e53363;
    --blue: #1f3ca2;
    --green: #2cb798;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================================
   HEADER
   ========================================= */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: var(--black);
    padding: 15px 0;
    border-bottom: 1px solid var(--gray);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 24px;
    width: auto;
}

.streaming-icons {
    display: flex;
    gap: 20px;
}

.streaming-icons a {
    color: var(--white);
    font-size: 1.2rem;
}

/* =========================================
   HERO / COUNTDOWN
   ========================================= */


.hero {
    height: 100vh;
    height: 100svh;
    height: calc(var(--vh, 1vh) * 100);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding-top: 60px;
    /* Offset for fixed header */
    position: relative;
    overflow: hidden;
}

.hero-bg,
.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 100%;
    /* El 100% asegura que la imagen toque el fondo, por lo que sube lo máximo posible a la vista */
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title-section {
    width: 100%;
    padding-bottom: 4vh;
    /* Espacio desde el fondo del viewport */
}

.hero-title-section h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 0px;
    /* Reducido un poco para acercarlo al párrafo */
    letter-spacing: 3px;
    text-transform: none;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.event-date {
    margin-top: 5px;
    /* Ajustado visualmente para el H1 en vez de los 35px del contador */
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.hero-actions {
    margin-top: 15px;
}

.btn-kick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 30px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;

    /* Efecto Liquid Glass Sutil */
    background: rgba(255, 255, 255, 0.05);
    /* Un poquito más que el 0.03 original, pero menos que el 0.1 de antes */
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Borde intermedio */
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.05);

    transition: all 0.3s ease;
}

.btn-kick:hover {
    background: rgba(255, 255, 255, 0.1);
    /* Efecto hover */
    transform: translateY(-2px);
}


/* =========================================
   EVENT DETAILS
   ========================================= */
.event-details {
    padding: 80px 0 40px;
    background-color: var(--dark-gray);
    text-align: center;
}

.details-content {
    max-width: 1000px;
    margin: 0 auto;
}

.details-content p {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.details-content strong {
    font-weight: 600;
}

/* =========================================
   SPECIAL GUESTS
   ========================================= */
.special-guests {
    padding: 40px 0;
    background-color: var(--black);
    /* Fondo gris oscuro para contrastar con el negro de arriba y abajo */
    text-align: center;
}

.special-guests h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    /* Rosa a Azul (Neón Vibrante) */
    background: linear-gradient(to right, var(--pink), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.guests-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.guest-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 10px 15px 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    transition: all 0.3s ease;
    gap: 10px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex: 0 1 calc(25% - 23px);
    /* 4 columnas en desktop */
    min-width: 250px;
}

.guest-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.guest-logo-container {
    width: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guest-logo {
    max-width: 75px;
    height: auto;
    filter: grayscale(100%) brightness(200%);
    transition: all 0.4s ease;
}

.stive-logo .guest-logo {
    max-width: 95px;
}

.guest-card:hover .guest-logo {
    filter: grayscale(0%) brightness(100%);
    transform: scale(1.05);
}

.guest-card h3 {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.6;
    letter-spacing: 1px;
    margin: 0;
    transition: all 0.3s ease;
}

.guest-card:hover h3 {
    opacity: 1;
}



.social-menu {
    /* Quitamos el absolute de aquí para que el hijo sea relativo a la tarjeta */
    position: static;
}

.social-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 12;
    /* Por encima de todo */
}

.social-toggle:hover,
.social-toggle.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--green);
    color: var(--green);
}

.social-toggle.active {
    transform: rotate(90deg);
}

.social-links {
    position: absolute;
    bottom: 5px;
    /* Pegado al final de la caja */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    display: flex;
    gap: 12px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10;
}

.social-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.social-links a {
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none !important;
}

.social-links a:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

/* =========================================
   TICKET CTA (HOLOGRAPHIC REDESIGN)
   ========================================= */
.event-cta {
    padding: 160px 20px;
    background-color: var(--black);
    text-align: center;
}

.holographic-ticket {
    width: 100%;
    margin: 0 auto;
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

@media (min-width: 992px) {
    .holographic-ticket {
        flex-direction: row;
        align-items: stretch;
        /* Cambio a stretch para que las secciones internas ocupen todo el alto */
    }
}

/* El resplandor holográfico rotatorio */
.holographic-ticket::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -150%;
    width: 400%;
    height: 400%;
    /* Utilizamos conic-gradient para el efecto láser/holograma */
    background: conic-gradient(from 0deg, transparent 0%, rgba(242, 223, 144, 0.25) 20%, rgba(229, 51, 99, 0.25) 40%, rgba(31, 60, 162, 0.25) 60%, rgba(44, 183, 152, 0.25) 80%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}



.ticket-info {
    flex: 2;
    padding: 60px;
    position: relative;
    z-index: 1;
    border-right: 2px dashed rgba(255, 255, 255, 0.2);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ticket-action {
    flex: 1;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.4);
}

/* Botón centrado en la acción */

.ticket-label {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: max-content;
}

.ticket-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1.1;
}

.ticket-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--black);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-glow:hover {
    transform: scale(1.02);
}

.btn-glow svg {
    transition: transform 0.3s ease;
}

.btn-glow:hover svg {
    transform: translateX(4px);
}

/* =========================================
   EVENT SCHEDULE
   ========================================= */
.event-schedule {
    padding: 40px 0 80px;
    background-color: var(--dark-gray);
    /* Fondo gris oscuro para separar visualmente The Guests y The CTA */
    text-align: center;
}

.event-schedule h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    /* Azul a Verde Agua */
    background: linear-gradient(to right, var(--blue), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.schedule-table-container {
    max-width: 750px;
    margin: 0 auto;
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    text-align: left;
}

.schedule-table th,
.schedule-table td {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-table th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: var(--gold);
    /* Cambiado a Dorado */
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

.schedule-table tbody tr {
    transition: background 0.3s ease;
}

.schedule-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

.schedule-table td {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    font-size: 1rem;
}

.schedule-table td:last-child {
    font-weight: 500;
}


/* =========================================
   FOOTER
   ========================================= */
footer {
    background-color: var(--dark-gray);
    padding: 50px 0 30px;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-logo {
    height: 24px;
    width: auto;
    margin-bottom: 20px;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.social-icons a {
    color: var(--white);
    font-size: 1.3rem;
    opacity: 0.8;
}

.social-icons a:hover {
    opacity: 1;
}

.copyright {
    font-size: 0.9rem;
    color: var(--white-gray);
}

/* =========================================
   RESPONSIVE (MOBILE)
   ========================================= */
@media (max-width: 900px) {
    .guest-card {
        flex: 0 1 calc(50% - 15px);
        /* 2 columnas en tablet */
    }
}

@media (max-width: 768px) {
    .hero-title-section {
        margin-top: 60vh;
        /* Sube todo el bloque para móviles */
    }

    .hero-title-section h1 {
        font-size: 3rem;
    }

    .hero-bg,
    .hero-img {
        object-position: center center;
    }

    .details-content h2,
    .special-guests h2,
    .event-schedule h2 {
        font-size: 1.8rem;
    }

    .event-cta .container {
        padding: 0;
    }

    .holographic-ticket {
        flex-direction: column;
        padding: 0;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ticket-info {
        border-right: none;
        border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
        padding: 50px 30px;
        text-align: center;
        align-items: center;
    }

    .ticket-action {
        padding: 50px 30px;
        justify-content: center;
    }

    .ticket-info h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hero-title-section h1 {
        font-size: 2.2rem;
    }

    .guest-card {
        flex: 0 1 100%;
        /* 1 columna en celulares */
    }

    .schedule-table th,
    .schedule-table td {
        padding: 15px;
        font-size: 0.9rem;
    }
}