/* --- PALETA DE COLORES HYPERION --- */
:root {
    --bg-black: #000000;
    --text-white: #ffffff;
    --hyperion-orange: #fa632d;
    --hyperion-yellow: #fae621;
    --hyperion-green: #6fcf97; /* color para el “greenwall” */
}

/* clase adicional para resaltar en verde */
.highlight-green { color: var(--hyperion-green); }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    scroll-behavior: smooth; 
    overflow-x: hidden;
}

/* --- NAVBAR Y ANIMACIÓN SCROLL --- */
/* navbar styled like Everon example: translucent with blur and subtle border */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.25); /* semi-transparent dark tint */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background 0.4s ease, padding 0.4s ease;
}

.nav-links a {
    color: var(--text-white);
}

.nav-links a:hover {
    color: var(--hyperion-orange);
}

/* hide mobile menu button since nav is full-width */
.mobile-menu-btn { display: none; }
.mobile-menu-btn {
    display: none; /* remove mobile menu button so only links appear */
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.25); /* más opaco al desplazarse */
    padding: 15px 50px;
    border-bottom: 3px solid var(--hyperion-orange);
    box-shadow: 0 5px 20px rgba(0,0,0,0.8);
}

/* --- ESTILOS DEL LOGO EN IMAGEN --- */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 55px; 
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover {
    transform: scale(1.08); 
    filter: drop-shadow(0 0 8px rgba(250, 99, 45, 0.6)); 
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--hyperion-orange);
}

.nav-tienda { color: var(--hyperion-yellow) !important; }

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* usa n1.png por defecto; sustituye por banner-index.jpg u otra imagen si la agregas */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.85)), url('images/noticias/n1.png') center/cover no-repeat;
    padding-top: 80px; 
}

.hero-content { max-width: 900px; }

/* containers for hero sections with image placeholders */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hero-text {
    flex: 1;
}
.hero-image {
    flex: 1;
    min-height: 400px; /* altura de reserva para la imagen */
    background-color: #111;
    border: 2px dashed #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
}
.hero-image::before {
    content: "AQUÍ VA LA IMAGEN";
}

.subtitle {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.title {
    font-size: 90px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 50px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.highlight { color: var(--hyperion-orange); }

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.promo-text {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 2px;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background-color: transparent;
    color: var(--text-white);
    border: 3px solid var(--hyperion-orange);
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--hyperion-orange);
    color: var(--bg-black);
    box-shadow: 0 0 25px rgba(250, 99, 45, 0.6);
    transform: translateY(-5px);
}

/* --- SECCIONES GENERALES --- */
section { padding: 100px 10%; }
.seccion-oscura { background-color: #050505; }

.section-title {
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 60px;
    border-left: 8px solid var(--hyperion-yellow);
    padding-left: 20px;
    letter-spacing: 1px;
}

/* --- SALA DE SELECCIÓN DE EQUIPOS --- */
.teams-split-screen {
    display: flex;
    width: 100%;
    height: 100vh;
    padding-top: 76px;
    background-color: var(--bg-black);
}

.team-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-right: 2px solid #111;
    transition: flex 0.4s ease, filter 0.4s ease, opacity 0.8s ease-out, transform 0.8s ease-out;
    position: relative;
    overflow: hidden;
    filter: brightness(0.4) grayscale(80%);
}

.team-panel:hover {
    flex: 1.3; 
    filter: brightness(1) grayscale(0%);
    box-shadow: inset 0 0 100px rgba(250, 99, 45, 0.2);
}

.bg-val {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.85)), url('images/equipos/valo.PNG') center/cover no-repeat;
}

.bg-cod {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.85)), url('images/equipos/cod.jpg') center/cover no-repeat;
}

.bg-gow {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.85)), url('images/equipos/hyg.png') center/cover no-repeat;
}

.team-panel h2 {
    color: var(--text-white);
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 2;
    margin-top: 20px;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.9);
    transition: color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.team-panel:hover h2 {
    color: var(--hyperion-orange);
    transform: scale(1.1);
}

.logo-equipo {
    width: 120px;
    height: 120px;
    background-color: transparent;
    border: 2px solid var(--text-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.team-panel:hover .logo-equipo { border-color: var(--hyperion-orange); }

/* --- GRID Y TARJETAS --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* --- SOCIOS / PATROCINADORES --- */
.partner-tiers {
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.96), rgba(2, 2, 2, 1));
    padding: 80px 10%;
}
.partner-tiers .tier-group {
    margin-bottom: 50px;
}
.partner-tiers h2,
.partner-tiers h3,
.success-case h3,
.call-to-action h2,
.community-benefits h2 {
    color: var(--text-white);
}
.partner-tiers .tier-group h3 {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-left: 6px solid var(--hyperion-yellow);
    padding-left: 14px;
}
.sponsor-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.sponsor-card {
    background: #101010;
    border: 1px solid #292929;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}
.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(250, 99, 45, 0.28);
    border-color: var(--hyperion-orange);
}
.sponsor-card img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    background: #0b0b0b;
    filter: grayscale(100%) brightness(70%);
    transition: filter 0.4s ease, transform 0.4s ease;
    padding: 20px;
}
.sponsor-card:hover img {
    filter: grayscale(0%) brightness(100%);
    transform: scale(1.02);
}
.sponsor-card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sponsor-card-content h4 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
}
.sponsor-card-content p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.5;
}
.sponsor-card-content .sponsor-actions {
    margin-top: auto;
}
.sponsor-card-content .btn-secondary {
    display: inline-block;
    padding: 10px 14px;
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #444;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.sponsor-card-content .btn-secondary:hover {
    background: var(--hyperion-orange);
    color: var(--bg-black);
    border-color: var(--hyperion-orange);
}
.success-case,
.call-to-action,
.community-benefits {
    padding: 70px 10%;
    background-color: #050505;
    border-top: 1px solid #222;
}
.success-case .case-grid,
.community-benefits .benefit-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.success-case .case-card,
.community-benefits .benefit-card {
    background: #111;
    border: 1px solid #232323;
    border-radius: 12px;
    padding: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.success-case .case-card:hover,
.community-benefits .benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--hyperion-yellow);
}
.success-case .case-card p,
.community-benefits .benefit-card p {
    color: #dcdcdc;
    font-size: 14px;
}
.call-to-action .cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}
.call-to-action .cta-actions a {
    flex: 1;
    min-width: 220px;
}
.call-to-action .btn-cta {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    color: #000;
    background: var(--hyperion-yellow);
    padding: 14px 18px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid var(--hyperion-yellow);
}
.call-to-action .btn-cta:hover {
    background: var(--hyperion-orange);
    border-color: var(--hyperion-orange);
    color: #fff;
}
.call-to-action p,
.community-benefits p {
    color: #ddd;
    margin-top: 8px;
}

/* --- STORE SECTION STYLING --- */
.store-section { background-color: #000; color: #fff; }
.store-hero h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #111;
    border: 1px solid #222;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    min-height: 520px;
}

.product-card .carousel {
    border-bottom: 1px solid #222;
}

.product-info {
    padding: 18px 18px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-sizes {
    margin: 14px 0 18px;
    display: flex;
    gap: 10px;
}

.product-sizes .size-option {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    color: #eee;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.product-sizes .size-option:hover {
    background: rgba(250, 99, 45, 0.18);
    transform: translateY(-1px);
}

.product-sizes .size-option.active {
    background: var(--hyperion-orange);
    border-color: var(--hyperion-orange);
    color: #0b0a0a;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--hyperion-orange);
    box-shadow: 0 10px 20px rgba(250,99,45,0.15);
}

.product-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.carousel {
    position: relative;
    overflow: hidden;
    height: 300px; /* Adjust height as needed */
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* --- MODAL DE IMAGENES --- */
.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.image-modal.active {
    display: flex;
}

.image-modal .modal-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    background: #0b0b0b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.image-modal .modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    border-radius: 8px;
    display: grid;
    place-items: center;
    z-index: 10;
}

.image-modal .modal-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-modal .modal-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.image-modal .modal-slide.active {
    display: block;
}

.image-modal .modal-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.image-modal .modal-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    font-size: 22px;
    border-radius: 10px;
    cursor: pointer;
    z-index: 10;
}

.image-modal .modal-btn.prev {
    left: 16px;
}

.image-modal .modal-btn.next {
    right: 16px;
}

.image-modal .modal-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

/* --- MODAL DE COLABORACIONES --- */
#colaboracion-modal .modal-content {
    max-width: 800px;
    background: #0b0b0b;
    border-radius: 12px;
    overflow-y: auto;
    max-height: 90vh;
}

#colaboracion-content h2 {
    color: var(--hyperion-orange);
    font-size: 28px;
    margin-bottom: 20px;
}

#colaboracion-content h3 {
    color: var(--text-white);
    font-size: 20px;
    margin: 20px 0 10px 0;
    border-left: 4px solid var(--hyperion-yellow);
    padding-left: 10px;
}

#colaboracion-content p {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 15px;
}

#colaboracion-content ul {
    color: #ddd;
    margin: 10px 0 20px 20px;
}

#colaboracion-content li {
    margin-bottom: 8px;
}

/* --- ESTILOS PARA MODAL DE COLABORACIONES --- */
.tag-alianza {
    background: var(--hyperion-orange);
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    margin-left: 8px;
}

.main-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #ddd;
    margin: 15px 0 20px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.stat-item {
    background: #111;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #333;
}

.stat-item i {
    font-size: 24px;
    color: var(--hyperion-orange);
    margin-bottom: 8px;
    display: block;
}

.stat-item span {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.timeline-highlights {
    margin: 25px 0;
}

.timeline-highlights h4 {
    color: var(--hyperion-yellow);
    font-size: 18px;
    margin-bottom: 15px;
    border-left: 4px solid var(--hyperion-yellow);
    padding-left: 10px;
}

.milestones {
    list-style: none;
    padding: 0;
}

.milestones li {
    background: #111;
    margin-bottom: 12px;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--hyperion-orange);
    color: #ddd;
    line-height: 1.5;
}

.milestones strong {
    color: var(--hyperion-orange);
}

.social-reach {
    background: #111;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
}

.social-reach p {
    color: #ccc;
    margin: 0;
}

.social-reach i {
    color: var(--hyperion-orange);
    margin: 0 8px;
    font-size: 18px;
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-white);
}

.product-price {
    font-size: 18px;
    font-weight: 900;
    color: var(--hyperion-orange);
    margin-bottom: 10px;
}

.product-sizes span {
    background: #222;
    padding: 4px 8px;
    margin-right: 5px;
    font-size: 12px;
    border-radius: 4px;
    color: #ccc;
}

.btn-add {
    background: var(--hyperion-orange);
    color: #000;
    text-align: center;
    padding: 12px;
    font-weight: 900;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    margin-top: auto;
}

.btn-add:hover {
    transform: scale(1.05);
}

.player-card {
    background-color: #0f0f0f;
    border: 1px solid #222;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease, opacity 0.8s ease-out, transform 0.8s ease-out;
    cursor: pointer;
}

.player-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--hyperion-orange);
    box-shadow: 0 15px 40px rgba(250, 99, 45, 0.15);
}

.img-placeholder {
    width: 100%;
    height: 450px;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #555;
    font-weight: 900;
    font-size: 16px;
    border-bottom: 3px solid #222;
    transition: border-color 0.3s ease;
}

.player-card:hover .img-placeholder { border-color: var(--hyperion-orange); }

/* overlay behaviour: player-info will slide up on hover */
.player-card {
    position: relative;
}

/* make the image container responsive and enable zoom effect */
.img-placeholder {
    width: 100%;
    /* fixed height provides consistency and reduces cropping; ajusta según necesidad */
    height: 450px;
    background-color: #1a1a1a;
    background-size: cover; /* asegurar que el recuadro quede lleno */
    background-position: center center;
    background-repeat: no-repeat; /* evitar que la imagen se repita */
    transition: transform 0.5s ease;
    position: relative; /* para colocar texto encima */
}

/* caption that sits at bottom of image box so names are always visible */
.img-placeholder .img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px 12px;
    background: rgba(0,0,0,0.6);
    color: var(--text-white);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 18px;
    pointer-events: none;
}

.player-card:hover .img-placeholder {
    transform: scale(1.1);
}

/* convert player-info into an always-visible footer instead of overlay */
.player-info {
    position: static;
    bottom: auto;
    left: auto;
    width: 100%;
    background: #0f0f0f;
    padding: 20px 25px;
    transform: none;
    transition: none;
    color: var(--text-white);
}

.player-card:hover .player-info {
    /* nothing to change on hover */
    transform: none;
}

/* social icons pop in a little later */
.player-card .socials a {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
}

.player-card:hover .socials a {
    opacity: 1;
    transform: translateY(0);
}

/* additional utility: follower count badge */
.follower-count {
    font-size: 24px;
    font-weight: 900;
    color: var(--hyperion-orange);
    margin-top: 8px;
}

/* optional entrance animation when the card becomes visible */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.player-card.show {
    animation: fadeInUp 0.6s ease forwards;
}

.real-name {
    color: var(--hyperion-yellow);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.gamertag {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.role {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
}
/* --- Estilo para la biografía del creador --- */
.creator-bio {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    margin-top: -10px;
    margin-bottom: 20px;
}
.socials a {
    color: #aaa;
    margin-right: 18px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    transition: color 0.3s ease;
}

.socials a:hover { color: var(--hyperion-orange); }


/* ==========================================================================
   NUEVA SECCIÓN DE SOCIOS (ESTILO PESTAÑAS / TABS)
   ========================================================================== */
.partners-page {
    padding: 150px 10% 100px 10%;
    background-color: var(--bg-black);
}

.partners-section {
    padding: 50px 10%;
    background-color: var(--bg-black);
    text-align: center;
}

.sponsor-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.sponsor-logos img {
    height: 80px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.sponsor-logos img:hover {
    filter: grayscale(0%);
}

/* --- MARQUEE DE SOCIOS / PATROCINADORES --- */
.sponsor-marquee {
    overflow: hidden;
    padding: 40px 0;
    position: relative;
}

.sponsor-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll-sponsors 16s linear infinite;
}

.sponsor-track a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.sponsor-track img {
    height: 60px;
    filter: grayscale(90%);
    transition: filter 0.25s ease, transform 0.25s ease;
}

.sponsor-track img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@keyframes scroll-sponsors {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

/* Fila de pestañas */
.sponsor-tabs {
    display: flex;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    margin-bottom: 40px;
    background-color: #050505;
}

.tab-btn {
    flex: 1;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #111;
    color: #666;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab-btn img {
    max-height: 40px;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--text-white);
    background-color: #0a0a0a;
}

.tab-btn:hover img {
    filter: grayscale(0%) opacity(1);
}

.tab-btn.active {
    color: var(--text-white);
    background-color: #0a0a0a;
    border-top: 3px solid var(--hyperion-yellow); 
    box-shadow: inset 0 10px 20px rgba(250, 230, 33, 0.05);
}

.tab-btn.active img {
    filter: grayscale(0%) opacity(1);
}

/* Contenedor Inferior */
.sponsor-pane {
    display: none; 
    gap: 30px;
    animation: fadeIn 0.5s ease; 
}

.sponsor-pane.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Lado Izquierdo: Visual */
.collab-visual {
    flex: 1.2;
    min-height: 450px;
    background-color: #111;
    border: 1px solid #222;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.collab-logo {
    max-height: 80px;
    max-width: 200px;
    z-index: 2;
}

.sponsor-text-logo {
    font-size: 40px;
    font-weight: 900;
    color: var(--text-white);
}

.collab-x {
    font-size: 40px;
    font-weight: 900;
    color: var(--text-white);
    margin: 0 40px;
    z-index: 2;
}

/* Lado Derecho: Info */
.collab-info {
    flex: 1;
    background-color: #080808;
    border: 1px solid #222;
    border-radius: 4px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.collab-info h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: 2px;
    color: var(--text-white);
}

.collab-info p {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

@media (max-width: 900px) {
    .sponsor-pane.active {
        flex-direction: column;
    }
    .sponsor-tabs {
        flex-wrap: wrap;
    }
    .tab-btn {
        min-width: 50%;
    }
}

/* --- REDES SOCIALES --- */
.social-media-section {
    background-color: #050505;
    padding: 60px 20px;
    text-align: center;
    border-top: 2px solid #222;
    border-bottom: 2px solid #222;
}

.social-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #111;
    border: 2px solid #333;
    border-radius: 8px;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 28px;
    height: 28px;
}

.social-icon:hover {
    background-color: var(--hyperion-orange);
    border-color: var(--hyperion-orange);
    color: var(--bg-black);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(250, 99, 45, 0.3);
}

/* ==========================================================================
   FOOTER (ESTILO MINIMALISTA)
   ========================================================================== */
.footer {
    background-color: #050505;
    padding: 70px 50px 40px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--hyperion-orange), transparent);
    box-shadow: 0 0 15px 2px rgba(255, 102, 0, 0.4);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
}

/* --- Lado Izquierdo --- */
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Esto arregla el estiramiento del logo */
    gap: 15px;
}

.footer-logo {
    height: 35px;
    width: auto;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.copyright {
    color: #666;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* --- Lado Derecho --- */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* --- Iconos Sociales --- */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #888;
    font-size: 18px; 
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
}

.social-icons a:hover {
    color: var(--hyperion-orange);
    background: rgba(255, 102, 0, 0.1);
    border-color: var(--hyperion-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.2);
}

/* --- ANIMACIONES JS (SCROLL REVEAL) --- */
.hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Retrasos escalonados */
.card-grid .player-card:nth-child(1) { transition-delay: 0.1s; }
.card-grid .player-card:nth-child(2) { transition-delay: 0.2s; }
.card-grid .player-card:nth-child(3) { transition-delay: 0.3s; }
.card-grid .player-card:nth-child(4) { transition-delay: 0.4s; }
.teams-split-screen .team-panel:nth-child(1) { transition-delay: 0.1s; }
.teams-split-screen .team-panel:nth-child(2) { transition-delay: 0.3s; }
.teams-split-screen .team-panel:nth-child(3) { transition-delay: 0.5s; }
/* ==========================================================================
   ADAPTACIÓN PARA MÓVILES (RESPONSIVE DESIGN)
   ========================================================================== */

/* Botón del menú hamburguesa (Oculto en PC, solo se ve en celular) */
.mobile-menu-btn {
    display: none;
    color: var(--text-white);
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--hyperion-orange);
}
/* ==========================================================================
   LECTURA DE NOTICIA INDIVIDUAL (LA PLANTILLA)
   ========================================================================== */
.article-hero {
    height: 70vh; /* Ocupa el 70% de la pantalla para impactar */
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end; /* Alinea el contenido abajo */
    padding: 60px 10%;
    margin-top: 0; 
}

.article-hero-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* Asegura que el texto esté encima del fondo */
}

.back-link {
    color: #aaa;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: inline-block;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--hyperion-orange);
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.article-title {
    font-size: 45px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--text-white);
}

.article-body {
    background-color: var(--bg-black);
    padding: 60px 10%;
}

.article-content {
    max-width: 800px; /* Ancho ideal para leer sin cansar la vista */
    margin: 0 auto;
}

.article-content p {
    font-size: 17px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 25px;
}

.lead-text {
    font-size: 22px !important;
    font-weight: 700;
    color: var(--text-white) !important;
    line-height: 1.6 !important;
    margin-bottom: 40px !important;
}

.article-quote {
    border-left: 5px solid var(--hyperion-orange);
    padding: 20px 30px;
    margin: 40px 0;
    background-color: #0a0a0a;
    font-size: 20px;
    font-style: italic;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.5;
}

.article-quote span {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: var(--hyperion-yellow);
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.article-share {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #222;
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-share span {
    font-weight: 900;
    font-size: 12px;
    color: #666;
    letter-spacing: 2px;
}

.article-share a {
    color: var(--text-white);
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-share a:hover {
    color: var(--hyperion-orange);
}

@media (max-width: 768px) {
    /* --- NAVBAR MÓVIL --- */
    .mobile-menu-btn {
        display: block; 
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%; /* Oculto fuera de la pantalla a la derecha */
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: right 0.4s ease;
    }

    .nav-links.active {
        right: 0; 
    }

    .nav-links a {
        font-size: 20px;
        margin-bottom: 20px;
    }

    /* --- HERO SECTION MÓVIL --- */
    .title {
        font-size: 50px; 
        margin-bottom: 30px;
    }

    .subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .btn-primary {
        padding: 15px 30px;
        font-size: 14px;
    }

    /* --- SECCIONES GENERALES --- */
    section, .partners-page {
        padding: 60px 5% !important; 
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    /* --- SELECCIÓN DE EQUIPOS MÓVIL --- */
    .teams-split-screen {
        flex-direction: column; 
        height: auto;
        min-height: 100vh;
    }

    .team-panel {
        min-height: 33.33vh; 
        border-right: none;
        border-bottom: 2px solid #111;
    }

    /* --- SOCIOS / SPONSORS MÓVIL --- */
    .sponsor-pane.active {
        flex-direction: column;
    }
    
    .sponsor-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        min-width: 50%;
        font-size: 12px;
        padding: 20px 10px;
    }

    .sponsor-logos {
        flex-direction: column;
        gap: 20px;
    }

    .sponsor-logos img {
        height: 60px;
    }

    /* --- MARQUEE MÓVIL --- */
    .sponsor-marquee {
        padding: 30px 0;
    }

    .sponsor-track {
        gap: 40px;
        animation-duration: 12s;
    }

    .sponsor-track img {
        height: 50px;
    }

    .collab-visual {
        min-height: 200px;
    }

    .collab-logo {
        max-width: 120px;
    }

    .sponsor-text-logo {
        font-size: 24px;
    }

    .collab-info {
        padding: 30px 20px;
    }

    .collab-info h3 {
        font-size: 24px;
    }
}
/* ==========================================================================
   SECCIÓN DE NOTICIAS (ESTILO REVISTA / CARTAS GRANDES)
   ========================================================================== */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--hyperion-yellow);
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 40px; /* Borde redondeado como en la referencia */
    transition: all 0.3s ease;
}

.btn-outline i {
    margin-right: 8px;
}

.btn-outline:hover {
    background-color: var(--hyperion-yellow);
    color: var(--bg-black);
}

.news-grid {
    display: grid;
    /* Las tarjetas se ajustan automáticamente. Mínimo 320px de ancho */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Manda la fecha arriba y el título abajo */
    height: 400px; /* Altura imponente para las fotos */
    padding: 30px;
    text-decoration: none;
    border: 1px solid #222;
    border-radius: 4px;
    background-position: center;
    background-size: cover;
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Efecto al pasar el mouse por la noticia */
.news-card:hover {
    transform: translateY(-10px);
    border-color: var(--hyperion-orange);
    box-shadow: 0 15px 30px rgba(0,0,0,0.8);
}

.news-top {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.news-date {
    color: var(--text-white);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8); /* Sombra para que se lea en fondos claros */
}

.news-tag {
    color: var(--hyperion-yellow); /* Etiqueta amarilla estilo OpTic */
}

.news-bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-bottom h3 {
    color: var(--text-white);
    font-size: 26px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.news-card:hover .news-bottom h3 {
    color: var(--hyperion-yellow);
}

.read-more {
    color: var(--text-white);
    font-size: 13px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.news-card:hover .read-more {
    color: var(--hyperion-orange);
    letter-spacing: 1px; /* La flecha se mueve sutilmente hacia la derecha */
}
/* Adaptación del encabezado de noticias para móviles */
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

/* --- ABOUT AND STREAMS SECTIONS --- */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.about-content .main-desc {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.5;
}
.social-links-about {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}
.social-links-about .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #444;
    text-decoration: none;
    font-weight: 800;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.social-links-about .btn-secondary:hover {
    background: var(--hyperion-orange);
    color: var(--bg-black);
    border-color: var(--hyperion-orange);
}

.streams-section {
    padding: 80px 10%;
    background-color: var(--bg-black);
}
.stream-container {
    background: #0b0b0b;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #292929;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: inline-block;
}