/* ============================================ */
/*  FB TEULADA-MORAIRA - Main Stylesheet        */
/*  Design: Modern, Sporty, Premium             */
/*  Colors: Orange (#F57C00), Black, White      */
/* ============================================ */

/* ----- RESET & BASE ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px; line-height: 1.6; color: #e0e0e0;
    background-color: #0d0d0d; overflow-x: hidden;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
input, textarea { font: inherit; }

/* ----- CONTAINER ----- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ----- SITE HEADER ----- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0.75rem 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    background: transparent;
}
.site-header.scrolled {
    background: rgba(13, 13, 13, 0.97); padding: 0.4rem 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.header-container {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
}
.header-logo { display: flex; align-items: center; gap: 0.75rem; }
.header-logo img { width: 44px; height: 44px; transition: transform 0.3s ease; }
.header-logo:hover img { transform: scale(1.05); }
.header-logo-text {
    font-size: 1.15rem; font-weight: 800; color: #fff;
    letter-spacing: -0.02em;
}
.header-logo-text::after {
    content: ''; display: block; width: 100%; height: 2px;
    background: linear-gradient(90deg, #F57C00, transparent);
    margin-top: 1px; border-radius: 1px;
}

/* Navigation */
.nav-list { display: flex; gap: 0.25rem; }
.nav-list a {
    display: block; padding: 0.5rem 0.9rem;
    color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.3px; border-radius: 6px;
    transition: color 0.3s, background 0.3s;
    position: relative;
}
.nav-list a:hover, .nav-list a.active { color: #fff; background: rgba(245, 124, 0, 0.15); }
.nav-list a::after {
    content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
    height: 2px; background: #F57C00; border-radius: 1px;
    transition: left 0.3s ease, right 0.3s ease;
}
.nav-list a:hover::after, .nav-list a.active::after { left: 0.9rem; right: 0.9rem; }

/* Hamburguer */
.header-hamburger {
    display: none; flex-direction: column; gap: 5px; padding: 8px;
    z-index: 1001;
}
.hamburger-line {
    display: block; width: 26px; height: 2.5px; background: #fff;
    border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.header-hamburger.active .hamburger-line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.header-hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.header-hamburger.active .hamburger-line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ----- HERO SECTION ----- */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    justify-content: center; overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(245, 124, 0, 0.12) 0%, transparent 60%);
    z-index: 1;
}
.hero-bg-pattern {
    position: absolute; inset: 0; z-index: 0;
    background-image: 
        linear-gradient(rgba(245, 124, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 124, 0, 0.03) 1px, transparent 1px),
        url('../img/equipo-2025-2026.webp');
    background-size: 60px 60px, 60px 60px, cover;
    background-position: 0 0, 0 0, center;
    filter: brightness(0.45);
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero:hover .hero-bg-pattern { transform: scale(1); }
.hero-content {
    position: relative; z-index: 2; text-align: center;
    max-width: 800px; padding: 2rem;
}
.hero-badge {
    display: inline-flex; padding: 0.4rem 1.2rem; margin-bottom: 1.5rem;
    border: 1px solid rgba(245, 124, 0, 0.3);
    border-radius: 100px; font-size: 0.8rem; font-weight: 500;
    color: #F57C00; letter-spacing: 1px; text-transform: uppercase;
    background: rgba(245, 124, 0, 0.08);
}
.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 900;
    line-height: 1.05; color: #fff; margin-bottom: 1rem;
    letter-spacing: -0.03em;
}
.hero-title::after {
    content: ''; display: block; width: 80px; height: 4px;
    background: linear-gradient(90deg, #F57C00, #FF8F00);
    margin: 1.2rem auto 0; border-radius: 2px;
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem); font-weight: 300;
    color: rgba(255,255,255,0.7); margin-bottom: 0.75rem;
    letter-spacing: 2px;
}
.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.5); margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 2; text-align: center; color: rgba(255,255,255,0.4);
    font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
}
.hero-scroll-arrow {
    width: 20px; height: 20px; margin: 0.5rem auto 0;
    border-right: 2px solid rgba(245, 124, 0, 0.6);
    border-bottom: 2px solid rgba(245, 124, 0, 0.6);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.6; }
    50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ----- BUTTONS ----- */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 2rem; border-radius: 50px;
    font-size: 0.9rem; font-weight: 600; letter-spacing: 0.3px;
    transition: all 0.3s ease; cursor: pointer;
    text-align: center; justify-content: center;
}
.btn-primary {
    background: linear-gradient(135deg, #F57C00, #FF8F00);
    color: #fff; box-shadow: 0 4px 20px rgba(245, 124, 0, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245, 124, 0, 0.4); }
.btn-outline {
    background: transparent; color: #fff;
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: #F57C00; color: #F57C00; transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.arrow { display: inline-block; transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ----- SECTIONS ----- */
.section {
    padding: 5rem 0; position: relative;
}
.section:nth-child(even) { background: #111; }
.section-header {
    text-align: center; margin-bottom: 3.5rem;
}
.section-tag {
    display: inline-block; padding: 0.3rem 1rem; margin-bottom: 1rem;
    border-radius: 100px; font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px;
    background: rgba(245, 124, 0, 0.1);
    color: #F57C00; border: 1px solid rgba(245, 124, 0, 0.2);
}
.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
    color: #fff; line-height: 1.15; letter-spacing: -0.02em;
}
.section-desc {
    text-align: center; color: rgba(255,255,255,0.6);
    max-width: 600px; margin: -2rem auto 3rem; font-size: 1.05rem;
}
.section-actions { text-align: center; margin-top: 3rem; }

/* ----- CLUB SECTION ----- */
.club-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.club-intro { font-size: 1.15rem; color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; line-height: 1.7; }
.club-text p { color: rgba(255,255,255,0.6); margin-bottom: 1rem; line-height: 1.7; }
.club-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.stat-item { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 900; color: #F57C00; display: block; line-height: 1.1; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

.club-visual { position: relative; }
.club-image-wrapper { position: relative; border-radius: 16px; overflow: hidden; }
.club-image-wrapper img { width: 100%; height: auto; border-radius: 16px; }
.club-image-accent {
    position: absolute; top: -12px; right: -12px; width: 100%; height: 100%;
    border: 2px solid rgba(245, 124, 0, 0.2); border-radius: 20px; z-index: -1;
}

/* ----- VALUES ----- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; padding: 2rem 1.5rem; text-align: center;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); background: rgba(245, 124, 0, 0.06); border-color: rgba(245, 124, 0, 0.2); }
.value-icon {
    width: 56px; height: 56px; margin: 0 auto 1.25rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px; background: rgba(245, 124, 0, 0.1);
    color: #F57C00; transition: transform 0.3s ease, background 0.3s ease;
}
.value-card:hover .value-icon { transform: scale(1.1); background: rgba(245, 124, 0, 0.18); }
.value-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; }
.value-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ----- NEWS CARDS ----- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.news-grid-full { grid-template-columns: repeat(3, 1fr); }
.news-card {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.news-card-link { display: flex; flex-direction: column; height: 100%; }
.news-card-image { position: relative; overflow: hidden; aspect-ratio: 400/260; }
.news-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover .news-card-image img { transform: scale(1.05); }
.news-category {
    position: absolute; top: 0.75rem; left: 0.75rem;
    padding: 0.25rem 0.75rem; border-radius: 50px;
    background: rgba(245, 124, 0, 0.9); color: #fff;
    font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.news-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.news-date { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 0.5rem; }
.news-card-body h2, .news-card-body h3 {
    font-size: 1rem; font-weight: 700; color: #fff;
    margin-bottom: 0.5rem; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-card-body p {
    font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.5;
    flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.news-read-more {
    margin-top: 1rem; font-size: 0.8rem; font-weight: 600; color: #F57C00;
    display: inline-flex; align-items: center; gap: 0.25rem;
}

/* ----- SPONSORS ----- */
.section-sponsors { background: #0a0a0a; overflow: hidden; }
.sponsors-carousel { overflow: hidden; position: relative; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.sponsors-track {
    display: flex; gap: 3rem; align-items: center;
    animation: scrollSponsors 30s linear infinite;
    width: max-content;
}
.sponsor-item {
    flex-shrink: 0; display: flex; flex-direction: column; align-items: center;
    gap: 0.5rem; padding: 1rem 1.5rem;
    border: 1px solid transparent; border-radius: 12px;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.sponsor-item:hover { border-color: rgba(245, 124, 0, 0.2); background: rgba(245, 124, 0, 0.04); }
.sponsor-item img { width: 120px; height: auto; filter: grayscale(1) brightness(0.8); transition: filter 0.4s ease, transform 0.4s ease; }
.sponsor-item:hover img { filter: grayscale(0) brightness(1); transform: scale(1.05); }
.sponsor-name { font-size: 0.7rem; color: rgba(255,255,255,0.3); text-align: center; }
@keyframes scrollSponsors {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ----- TEAMS ----- */
.teams-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card {
    border-radius: 16px; overflow: hidden;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-decoration: none; color: inherit; display: block;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.team-card-image { position: relative; overflow: hidden; aspect-ratio: 380/260; }
.team-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-card-image img { transform: scale(1.05); }
.team-card-overlay {
    position: absolute; inset: 0;
    background: rgba(245, 124, 0, 0.85);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.4s ease;
}
.team-card:hover .team-card-overlay { opacity: 1; }
.team-card-cta { color: #fff; font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-bottom: 2px solid #fff; padding-bottom: 2px; }
.team-card-body { padding: 1.25rem; }
.team-card-body h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }
.team-card-body p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ----- EQUIPOS PAGE ----- */
.eq-header { margin-bottom: 3rem; }
.eq-header-rule {
    width: 48px; height: 3px; background: #F57C00;
    border: none; margin-bottom: 1rem;
}
.eq-header-tag {
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.15em; color: #F57C00; margin-bottom: 0.75rem; display: block;
}
.eq-header h1 {
    font-size: clamp(2rem, 5vw, 3rem); font-weight: 800;
    color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.eq-header h1 span { color: #F57C00; }
.eq-header p {
    font-size: 1.05rem; color: rgba(255,255,255,0.55);
    max-width: 600px; line-height: 1.7;
}

/* Grid */
.eq-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .eq-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .eq-grid { grid-template-columns: repeat(3, 1fr); }
}
.eq-grid .eq-hero { grid-column: 1 / -1; }
@media (min-width: 1024px) {
    .eq-grid .eq-hero { grid-column: span 2; }
}
.eq-grid .eq-combined { grid-column: 1 / -1; }
@media (min-width: 1024px) {
    .eq-grid .eq-combined { grid-column: span 2; }
}

/* Hero Card (1.er Equipo) */
.eq-hero {
    position: relative; border-radius: 12px; overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    min-height: 360px;
}
.eq-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.eq-hero-image {
    position: absolute; inset: 0; z-index: 0;
}
.eq-hero-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s ease;
}
.eq-hero:hover .eq-hero-image img { transform: scale(1.05); }
.eq-hero-gradient {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.5) 40%, transparent 100%);
}
.eq-hero-badges {
    position: absolute; top: 1rem; right: 1rem; z-index: 3;
    display: flex; gap: 0.5rem;
}
.eq-badge {
    display: inline-block; padding: 0.3rem 0.75rem;
    border-radius: 50px; font-size: 0.6rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    backdrop-filter: blur(6px);
}
.eq-badge--primary { background: rgba(245,124,0,0.9); color: #fff; }
.eq-badge--surface { background: rgba(255,255,255,0.85); color: #111; }
.eq-hero-content {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    padding: 2rem;
}
.eq-hero-name {
    font-size: 1.5rem; font-weight: 700; color: #fff;
    margin-bottom: 0.5rem; line-height: 1.2;
    transition: color 0.3s ease;
}
.eq-hero:hover .eq-hero-name { color: #F57C00; }
.eq-hero-desc {
    font-size: 0.9rem; color: rgba(255,255,255,0.6);
    max-width: 500px; line-height: 1.6; margin-bottom: 1.25rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.eq-hero-meta {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
}
.eq-hero-stats {
    display: flex; gap: 1.5rem;
}
.eq-hero-stat {
    display: flex; align-items: center; gap: 0.35rem;
    font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.05em; color: rgba(255,255,255,0.5);
}
.eq-hero-stat svg { color: #F57C00; flex-shrink: 0; }

/* Standard Card */
.eq-card {
    border-radius: 12px; overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex; flex-direction: column;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.eq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.eq-card-image {
    position: relative; overflow: hidden;
    aspect-ratio: 16/10; background: rgba(255,255,255,0.03);
}
.eq-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s ease;
}
.eq-card:hover .eq-card-image img { transform: scale(1.05); }
.eq-card-image--empty img { display: none; }
.eq-card-image-fallback {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.1);
}
.eq-card-image-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(13,13,13,0.6) 0%, transparent 50%);
}
.eq-card-badge {
    position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2;
    padding: 0.25rem 0.65rem; border-radius: 50px;
    font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255,255,255,0.85); color: #111;
    backdrop-filter: blur(6px);
}
.eq-card-number {
    position: absolute; bottom: 0.5rem; right: 0.75rem; z-index: 1;
    font-size: 3.5rem; font-weight: 800; line-height: 1;
    color: rgba(255,255,255,0.06); pointer-events: none; user-select: none;
}
.eq-card-body {
    padding: 1.25rem; display: flex; flex-direction: column; flex: 1;
}
.eq-card-name {
    font-size: 1.1rem; font-weight: 700; color: #fff;
    margin-bottom: 0.4rem; line-height: 1.3;
}
.eq-card-desc {
    font-size: 0.85rem; color: rgba(255,255,255,0.5);
    line-height: 1.6; margin-bottom: 1rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.eq-card-footer {
    margin-top: auto; padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: space-between;
}
.eq-card-footer-label {
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: rgba(255,255,255,0.35);
}
.eq-card-arrow {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: background 0.3s, color 0.3s;
}
.eq-card:hover .eq-card-arrow {
    background: #F57C00; color: #fff;
}

/* Combined Module (Benjamín & Prebenjamín) */
.eq-combined {
    display: grid; grid-template-columns: 1fr;
    border-radius: 12px; overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 768px) {
    .eq-combined { grid-template-columns: 1fr 1fr; }
}
.eq-combined-text {
    padding: 2rem; display: flex; flex-direction: column; justify-content: center;
    position: relative;
}
.eq-combined-text::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 160px; height: 160px; border-radius: 50%;
    background: rgba(245,124,0,0.06); filter: blur(40px);
    pointer-events: none;
}
.eq-combined-tag {
    display: flex; align-items: center; gap: 0.5rem;
    margin-bottom: 1rem;
}
.eq-combined-tag svg { color: #F57C00; }
.eq-combined-tag span {
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.15em; color: rgba(255,255,255,0.4);
}
.eq-combined-title {
    font-size: 1.4rem; font-weight: 700; color: #fff;
    margin-bottom: 0.5rem; line-height: 1.2;
}
.eq-combined-desc {
    font-size: 0.9rem; color: rgba(255,255,255,0.5);
    line-height: 1.7; margin-bottom: 1.5rem;
}
.eq-combined-links { display: flex; flex-direction: column; gap: 0.75rem; }
.eq-combined-link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem; border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
}
.eq-combined-link:hover {
    background: rgba(245,124,0,0.08);
    border-color: rgba(245,124,0,0.25);
}
.eq-combined-link-name {
    font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.15rem;
}
.eq-combined-link-meta {
    font-size: 0.65rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; color: rgba(255,255,255,0.35);
}
.eq-combined-link svg {
    color: #F57C00; transition: transform 0.3s;
}
.eq-combined-link:hover svg { transform: translateX(3px); }
.eq-combined-image {
    position: relative; min-height: 280px; overflow: hidden;
}
.eq-combined-image img {
    width: 100%; height: 100%; object-fit: cover;
}
.eq-combined-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(13,13,13,0.3) 0%, transparent 40%);
}
@media (min-width: 768px) {
    .eq-combined-image-overlay {
        background: linear-gradient(to left, rgba(13,13,13,0.15) 0%, transparent 40%);
    }
}
.eq-combined-stat {
    position: absolute; bottom: 1.5rem; right: 1.5rem;
    background: rgba(255,255,255,0.9); backdrop-filter: blur(6px);
    padding: 0.75rem 1rem; border-radius: 6px;
    text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.eq-combined-stat-num {
    font-size: 1.5rem; font-weight: 800; color: #111; line-height: 1;
}
.eq-combined-stat-label {
    font-size: 0.55rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: #666; margin-top: 0.2rem;
}

/* ----- SINGLE TEAM (equipo.php) ----- */
.eq-hero-banner {
    position: relative; min-height: 55vh; display: flex; align-items: flex-end;
    padding: 8rem 0 3rem; overflow: hidden;
}
.eq-hero-banner-bg {
    position: absolute; inset: 0;
}
.eq-hero-banner-bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.eq-hero-banner-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(to top, #0d0d0d 0%, rgba(13,13,13,0.7) 40%, rgba(13,13,13,0.2) 70%, rgba(13,13,13,0.35) 100%);
}
.eq-hero-banner-content {
    position: relative; z-index: 1; width: 100%;
    display: flex; flex-direction: column;
}
.eq-hero-banner-content > .eq-hero-back { order: 1; }
.eq-hero-banner-content > .eq-hero-badges { order: 2; }
.eq-hero-banner-content > .eq-hero-title { order: 3; }
.eq-hero-banner-content > .eq-hero-stats { order: 4; }
.eq-hero-back {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4); margin-bottom: 1.25rem;
    transition: color 0.3s;
}
.eq-hero-back:hover { color: #F57C00; }
.eq-hero-back svg { transition: transform 0.3s; }
.eq-hero-back:hover svg { transform: translateX(-3px); }
.eq-hero-badges {
    display: flex; gap: 0.5rem; margin-bottom: 0.75rem; flex-wrap: wrap;
}
.eq-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: #fff;
    line-height: 1.05; margin-bottom: 1rem; text-transform: uppercase;
}
.eq-hero-meta {
    display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1.5rem;
}
.eq-hero-meta-item {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.8rem; color: rgba(255,255,255,0.5);
}
.eq-hero-meta-item svg { color: #F57C00; flex-shrink: 0; }
.eq-hero-stats {
    display: flex; gap: 2rem; padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.04); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.06); border-radius: 12px;
    width: fit-content;
}
.eq-hero-stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; }
.eq-hero-stat-item + .eq-hero-stat-item { padding-left: 2rem; border-left: 1px solid rgba(255,255,255,0.08); }
.eq-hero-stat-num { font-size: 1.5rem; font-weight: 800; color: #F57C00; line-height: 1; }
.eq-hero-stat-label {
    font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: rgba(255,255,255,0.4);
}

/* Section header bar */
.eq-section-head {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
}
.eq-section-head-bar { width: 4px; height: 1.5rem; background: #F57C00; border-radius: 2px; }
.eq-section-head h2 {
    font-size: 1.3rem; font-weight: 700; color: #fff; text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Coach cards */
.eq-coaches-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem;
}
.eq-coach-card {
    border-radius: 12px; overflow: hidden;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.eq-coach-card:hover {
    border-color: rgba(245,124,0,0.3); transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.eq-coach-photo {
    position: relative; aspect-ratio: 3/4; overflow: hidden;
    background: rgba(255,255,255,0.04);
    display: flex; align-items: center; justify-content: center;
}
.eq-coach-photo img {
    width: 100%; height: 100%; object-fit: cover;
}
.eq-coach-photo svg { color: rgba(255,255,255,0.15); }
.eq-coach-info {
    padding: 0.75rem; background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.eq-coach-name {
    font-size: 0.85rem; font-weight: 600; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 0.15rem;
}
.eq-coach-role {
    font-size: 0.55rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: #F57C00;
}

/* Player filters */
.eq-position-filters {
    display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem;
}

/* Player grid */
.eq-player-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem;
}
.eq-player-card {
    border-radius: 12px; overflow: hidden;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.eq-player-card:hover {
    border-color: rgba(245,124,0,0.3); transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.eq-player-photo {
    position: relative; aspect-ratio: 3/4; overflow: hidden;
    background: rgba(255,255,255,0.04);
    display: flex; align-items: center; justify-content: center;
}
.eq-player-photo img {
    width: 100%; height: 100%; object-fit: cover;
}
.eq-player-number {
    position: absolute; top: 0.5rem; left: 0.5rem;
    width: 28px; height: 28px; border-radius: 50%;
    background: #F57C00; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 800; line-height: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.eq-player-info {
    padding: 0.75rem; background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.eq-player-name {
    font-size: 0.85rem; font-weight: 600; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 0.15rem;
}
.eq-player-position {
    font-size: 0.55rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: rgba(255,255,255,0.35);
}

/* Matches split */
.eq-matches-grid {
    display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 768px) {
    .eq-matches-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.eq-match-head {
    display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem;
}
.eq-match-head-dot {
    width: 12px; height: 12px; border-radius: 50%;
}
.eq-match-head-dot--last { background: rgba(255,255,255,0.3); }
.eq-match-head-dot--next { background: #F57C00; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245,124,0,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(245,124,0,0); }
}
.eq-match-head h3 {
    font-size: 0.85rem; font-weight: 700; color: #fff;
    text-transform: uppercase; letter-spacing: 0.06em;
}
.eq-match-card {
    border-radius: 12px; padding: 1.5rem; overflow: hidden;
}
.eq-match-card--light {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
}
.eq-match-card--dark {
    background: rgba(245,124,0,0.06); border: 1px solid rgba(245,124,0,0.15);
    border-left: 4px solid #F57C00;
}
.eq-match-status-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1.25rem; padding-bottom: 1rem;
}
.eq-match-card--light .eq-match-status-row { border-bottom: 1px solid rgba(255,255,255,0.06); }
.eq-match-card--dark .eq-match-status-row { border-bottom: 1px solid rgba(255,255,255,0.08); }
.eq-match-status-badge {
    font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; padding: 0.25rem 0.6rem; border-radius: 50px;
}
.eq-match-status-badge--done { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }
.eq-match-status-badge--next { background: rgba(245,124,0,0.15); color: #F57C00; }
.eq-match-date-text { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.eq-match-date-text--dark { color: rgba(255,255,255,0.5); }
.eq-match-teams {
    display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
    margin-bottom: 1rem;
}
.eq-match-team { display: flex; flex-direction: column; align-items: center; flex: 1; gap: 0.5rem; }
.eq-match-crest {
    width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.eq-match-crest--light { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); }
.eq-match-crest--dark { background: rgba(255,255,255,0.08); border: 2px solid rgba(245,124,0,0.3); }
.eq-match-crest img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.eq-match-team-name {
    font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.6);
    text-align: center; line-height: 1.2;
}
.eq-match-team-name--dark { color: rgba(255,255,255,0.8); }
.eq-match-score-block {
    display: flex; align-items: baseline; gap: 0.25rem;
}
.eq-match-score {
    font-size: 1.8rem; font-weight: 900; color: #F57C00; line-height: 1;
}
.eq-match-dash {
    font-size: 1.2rem; font-weight: 600; color: rgba(255,255,255,0.2); margin: 0 0.1rem;
}
.eq-match-vs {
    font-size: 1.3rem; font-weight: 800; color: rgba(255,255,255,0.15);
    font-style: italic;
}
.eq-match-tournament {
    text-align: center; font-size: 0.65rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.3);
}
.eq-match-tournament--dark { color: rgba(255,255,255,0.5); }
.eq-match-time-text {
    text-align: center; font-size: 1rem; font-weight: 700; color: #F57C00;
    margin: 0.5rem 0 0.25rem;
}
.eq-match-venue-text {
    display: flex; align-items: center; justify-content: center; gap: 0.3rem;
    font-size: 0.75rem; color: rgba(255,255,255,0.4); text-align: center;
}

/* Competiciones */
.eq-comp-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem;
}
.eq-comp-card {
    padding: 1.25rem; border-radius: 12px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.eq-comp-card:hover {
    background: rgba(245,124,0,0.04); border-color: rgba(245,124,0,0.15);
    transform: translateY(-2px);
}
.eq-comp-head {
    display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem;
}
.eq-comp-type {
    font-size: 0.55rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: #F57C00;
    background: rgba(245,124,0,0.12); padding: 0.15rem 0.5rem; border-radius: 50px;
}
.eq-comp-level {
    font-size: 0.55rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.05); padding: 0.15rem 0.5rem; border-radius: 50px;
}
.eq-comp-name {
    font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; line-height: 1.3;
}
.eq-comp-position {
    display: flex; align-items: baseline; gap: 0.1rem; margin-bottom: 0.75rem;
    padding: 0.6rem 0.8rem; border-radius: 8px;
    background: rgba(245,124,0,0.08); border: 1px solid rgba(245,124,0,0.15);
}
.eq-comp-position-num {
    font-size: 1.6rem; font-weight: 900; color: #F57C00; line-height: 1;
}
.eq-comp-position-suffix {
    font-size: 0.9rem; font-weight: 700; color: #F57C00; margin-right: 0.4rem;
}
.eq-comp-position-label {
    font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: rgba(255,255,255,0.4);
}
.eq-comp-meta {
    display: flex; flex-wrap: wrap; gap: 0.5rem; padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.eq-comp-meta-item {
    font-size: 0.65rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.06em; color: rgba(255,255,255,0.3);
}

/* Foto completa del equipo */
.eq-fullphoto {
    padding: 2rem 0 0;
}
.eq-fullphoto-inner {
    width: 90%; max-width: 1200px;
    margin-top: -100px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    border-radius: 12px; overflow: hidden;
}
.eq-fullphoto-inner img {
    width: 100%; height: auto; display: block;
}
.eq-fullphoto--mobile { display: none; }

/* Empty state */
.eq-empty {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.75rem; padding: 3rem 1rem; text-align: center;
}
.eq-empty svg { color: rgba(255,255,255,0.15); }
.eq-empty p { font-size: 0.9rem; color: rgba(255,255,255,0.35); }

/* ----- MATCHES ----- */
.matches-list { display: flex; flex-direction: column; gap: 0.75rem; }
.match-item {
    display: flex; align-items: center; gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; transition: background 0.3s ease, border-color 0.3s ease;
}
.match-item:hover { background: rgba(245, 124, 0, 0.04); border-color: rgba(245, 124, 0, 0.15); }
.match-date { text-align: center; min-width: 56px; }
.match-day { display: block; font-size: 1.5rem; font-weight: 900; color: #fff; line-height: 1; }
.match-month { font-size: 0.65rem; text-transform: uppercase; color: rgba(255,255,255,0.4); letter-spacing: 1px; }
.match-crest { width: 36px; height: 36px; object-fit: contain; border-radius: 6px; flex-shrink: 0; }
.match-info { flex: 1; }
.match-competition { font-size: 0.7rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 0.1rem; }
.match-rival { font-size: 1rem; font-weight: 600; color: #fff; }
.match-details { text-align: center; }
.match-time { display: block; font-size: 0.9rem; font-weight: 600; color: #F57C00; }
.match-venue { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.match-result { text-align: center; }
.match-score { font-size: 1.4rem; font-weight: 900; color: #F57C00; }
.match-status { min-width: 90px; text-align: right; }
.badge {
    display: inline-block; padding: 0.2rem 0.75rem; border-radius: 50px;
    font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-upcoming { background: rgba(245, 124, 0, 0.15); color: #F57C00; }
.badge-done { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }
.no-matches { text-align: center; color: rgba(255,255,255,0.4); padding: 2rem; }

/* ----- FILTERS (temporadas / torneos) ----- */
.filter-bar {
    display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.5rem;
}
.filter-btn {
    display: inline-block; padding: 0.5rem 1rem; border-radius: 8px;
    font-size: 0.9rem; font-weight: 600; text-decoration: none;
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.2s;
}
.filter-btn:hover { background: rgba(245,124,0,0.1); color: #F57C00; border-color: rgba(245,124,0,0.3); }
.filter-btn--active { background: #F57C00; color: #fff; border-color: #F57C00; }
.filter-tag {
    display: inline-block; padding: 0.3rem 0.75rem; border-radius: 50px;
    font-size: 0.75rem; font-weight: 600; text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px;
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.2s;
}
.filter-tag:hover { background: rgba(245,124,0,0.1); color: #F57C00; }
.filter-tag--active { background: rgba(245,124,0,0.2); color: #F57C00; border-color: rgba(245,124,0,0.4); }

/* ----- GALLERY ----- */
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px; gap: 0.75rem;
}
.gallery-item {
    overflow: hidden; border-radius: 12px; cursor: pointer;
    position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-placeholder { display: none; text-align: center; padding: 3rem; color: rgba(255,255,255,0.3); }
.gallery-grid:empty + .gallery-placeholder { display: block; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.95);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    color: #fff; font-size: 2rem; cursor: pointer; width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1); border-radius: 50%;
    transition: background 0.3s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ----- CTA SECTION ----- */
.section-cta {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #0d0d0d, #1a0a00);
    padding: 6rem 0; text-align: center;
}
.cta-bg {
    position: absolute; inset: 0; opacity: 0.05;
    background: radial-gradient(circle at 50% 50%, #F57C00 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 1.5rem; }
.cta-content p { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ----- FOOTER ----- */
.site-footer { position: relative; background: #080808; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-bg {
    position: absolute; inset: 0; opacity: 0.03;
    background: radial-gradient(ellipse at 50% 0%, #F57C00 0%, transparent 60%);
}
.footer-content { position: relative; z-index: 1; padding: 4rem 1.5rem 2rem; max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { }
.footer-brand img { margin-bottom: 1rem; }
.footer-brand h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 0.3rem; }
.footer-brand > p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
    border-radius: 10px; background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.6); transition: all 0.3s ease;
}
.footer-social a:hover { background: #F57C00; color: #fff; transform: translateY(-2px); }

.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.25rem; }
.footer-contact li, .footer-links li { margin-bottom: 0.6rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; color: #F57C00; }
.footer-contact a, .footer-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color 0.3s; }
.footer-contact a:hover, .footer-links a:hover { color: #F57C00; }

.footer-sponsors { margin-bottom: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-sponsors h4 { font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
.footer-sponsors-logos { display: flex; gap: 2rem; flex-wrap: wrap; align-items: center; }
.sponsor-thumb img { width: 70px; height: auto; filter: grayscale(1) brightness(0.6); transition: filter 0.3s ease; }
.sponsor-thumb:hover img { filter: grayscale(0) brightness(1); }

.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.04); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.heart { color: #F57C00; }
.footer-tagline { font-style: italic; }

/* ----- PAGE HERO (inner pages) ----- */
.page-hero {
    position: relative; padding: 10rem 0 4rem;
    background: linear-gradient(135deg, #0d0d0d, #1a0a00);
    overflow: hidden;
}
.page-hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(245, 124, 0, 0.08) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; margin: 1rem 0 0.5rem; }
.page-hero-content p { color: rgba(255,255,255,0.5); font-size: 1.05rem; }

/* ----- SINGLE NEWS ----- */
.single-news { padding: 8rem 0 3rem; }
.single-news-container { max-width: 800px; }
.single-news-header { margin-bottom: 2rem; }
.single-news-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.single-news-meta time { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.single-news-header h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: #fff; line-height: 1.15; }
.single-news-image { margin-bottom: 2.5rem; border-radius: 16px; overflow: hidden; }
.single-news-image img { width: 100%; height: auto; }
.single-news-content { color: rgba(255,255,255,0.7); line-height: 1.8; font-size: 1.05rem; }
.single-news-content p { margin-bottom: 1.5rem; }
.single-news-footer {
    margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.single-news-share { display: flex; align-items: center; gap: 0.75rem; }
.single-news-share span { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.single-news-share a {
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    border-radius: 8px; background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}
.single-news-share a:hover { background: #F57C00; color: #fff; }

/* ----- SCROLL INDICATOR (sidebar) ----- */
.scroll-indicator {
    position: fixed; right: 1.5rem; top: 50%; transform: translateY(-50%);
    z-index: 50; display: flex; flex-direction: column; gap: 8px;
    opacity: 0; transition: opacity 0.5s ease;
}
.scroll-indicator.visible { opacity: 1; }
.scroll-dot {
    width: 3px; height: 24px; border-radius: 2px;
    background: rgba(255,255,255,0.15); transition: background 0.3s ease, height 0.3s ease;
}

/* ----- ANIMATIONS (reveal) ----- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-fade { opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-fade.visible { opacity: 1; }

/* Hero entrance */
.hero-content .reveal-fade { opacity: 0; }
.hero-content .hero-badge { transition-delay: 0.1s; }
.hero-content .hero-title { transition-delay: 0.2s; }
.hero-content .hero-subtitle { transition-delay: 0.35s; }
.hero-content .hero-desc { transition-delay: 0.5s; }
.hero-content .hero-actions { transition-delay: 0.65s; }
.hero-loaded .hero-content .reveal-fade { opacity: 1; }

/* ----- EMPTY STATE ----- */
.empty-state { text-align: center; padding: 4rem 2rem; color: rgba(255,255,255,0.4); }

/* ============================================ */
/*  RESPONSIVE - MOBILE FIRST                   */
/* ============================================ */

@media (max-width: 1024px) {
    .club-grid { grid-template-columns: 1fr; gap: 3rem; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item--wide { grid-column: span 1; }
    .gallery-item--tall { grid-row: span 1; }
}

@media (max-width: 768px) {
    .header-nav {
        position: fixed; inset: 0; z-index: 999;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        display: flex; align-items: center; justify-content: center;
        opacity: 0; visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    .header-nav.open { opacity: 1; visibility: visible; }
    .nav-list { flex-direction: column; gap: 0.5rem; text-align: center; }
    .nav-list a { font-size: 1.2rem; padding: 0.8rem 1.5rem; }
    .header-hamburger { display: flex; }

    .section { padding: 3.5rem 0; }
    .values-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .news-grid, .news-grid-full { grid-template-columns: 1fr; }
    .teams-grid { grid-template-columns: 1fr; }
    .club-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

    .match-item { flex-wrap: wrap; gap: 0.75rem; }
    .match-status { width: 100%; text-align: left; }

    .eq-hero { min-height: 300px; }
    .eq-hero-content { padding: 1.5rem; }
    .eq-hero-name { font-size: 1.3rem; }
    .eq-combined-image { min-height: 220px; }

    .eq-hero-banner { min-height: 45vh; padding-top: 6rem; }
    .eq-hero-banner-content > .eq-hero-badges { order: 3; }
    .eq-hero-banner-content > .eq-hero-title { order: 2; }
    .eq-hero-title { font-size: clamp(1.5rem, 5vw, 2.5rem); }
    .eq-fullphoto { display: none; }
    .eq-fullphoto--mobile { display: block; margin-top: 1rem; width: 100%; border-radius: 0; overflow: hidden; }
    .eq-fullphoto--mobile img { width: 100%; height: auto; display: block; }
    .eq-player-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.75rem; }
    .eq-match-card { padding: 1.25rem; }
    .eq-match-score { font-size: 1.5rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .hazte-grid { grid-template-columns: 1fr !important; }

    .scroll-indicator { display: none; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }

    .single-news-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .hero-actions, .cta-actions { flex-direction: column; }
    .btn { width: 100%; }
    .values-grid { grid-template-columns: 1fr; }
    .club-stats { grid-template-columns: repeat(2, 1fr); }
    .header-logo-text { font-size: 1rem; }
    .hero-title { font-size: 2.2rem; }
    .eq-hero-stats { display: none; }
    .eq-hero-content { padding: 1.25rem; }
    .eq-hero-name { font-size: 1.15rem; }
    .eq-combined-text { padding: 1.5rem; }

    .eq-hero-banner { min-height: 40vh; padding: 5rem 0 2rem; }
    .eq-hero-stats { gap: 1rem; padding: 0.75rem 1rem; }
    .eq-hero-stat-num { font-size: 1.2rem; }
    .eq-player-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .eq-coaches-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
}

/* Utility: reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
