/* ============================================
   VOLTAGIACCHETTA — Landing Page
   Theme: Red/Blue Modern Sports
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --red: #DC2626;
  --red-dark: #991B1B;
  --red-light: #EF4444;
  --blue: #1E3A8A;
  --blue-dark: #0F1E5C;
  --blue-light: #3B82F6;
  --black: #0A0E1A;
  --dark: #111827;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --white: #FFFFFF;
  --gradient: linear-gradient(135deg, var(--red) 0%, var(--blue) 100%);
  --gradient-dark: linear-gradient(135deg, var(--red-dark) 0%, var(--blue-dark) 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.25);
  --shadow-red: 0 10px 40px rgba(220,38,38,0.35);
  --shadow-blue: 0 10px 40px rgba(30,58,138,0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 14, 26, 0.95);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.05em;
}

.logo-badge {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  font-size: 20px;
  box-shadow: var(--shadow-red);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.logo-img {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transform: none;
  filter: drop-shadow(0 4px 12px rgba(220,38,38,0.45));
}

.logo:hover .logo-badge {
  transform: rotate(5deg) scale(1.1);
}

.logo:hover .logo-img {
  transform: rotate(8deg) scale(1.1);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('WhatsApp%20Image%202026-05-11%20at%2018.55.02.jpeg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) saturate(1.2);
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220,38,38,0.4) 0%, rgba(15,23,42,0.7) 50%, rgba(30,58,138,0.5) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(220,38,38,0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(30,58,138,0.4) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 40px 24px;
  max-width: 1000px;
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.hero-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red);
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero h1 {
  font-size: clamp(38px, 9vw, 140px);
  line-height: 0.95;
  margin: 0 0 20px;
  letter-spacing: -0.015em;
  background: linear-gradient(180deg, #fff 0%, #fff 50%, var(--red-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 80px rgba(220,38,38,0.3);
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(220,38,38,0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.6;
  animation: bounceDown 2s ease infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  position: relative;
  padding: 0 32px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 2px;
  background: var(--red);
}

.section-eyebrow::before { left: 0; }
.section-eyebrow::after { right: 0; }

.section-title {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--black);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-dark {
  background: var(--black);
  color: white;
}

.section-dark .section-title { color: white; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

.section-gradient {
  background: var(--gradient);
  color: white;
}

.section-gradient .section-eyebrow { color: white; }
.section-gradient .section-eyebrow::before,
.section-gradient .section-eyebrow::after { background: white; }
.section-gradient .section-title { color: white; }
.section-gradient .section-subtitle { color: rgba(255,255,255,0.85); }

/* ============================================
   PRESIDENT
   ============================================ */
.president-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.president-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.president-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.15;
  z-index: 1;
}

.president-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.president-image:hover img {
  transform: scale(1.05);
}

.president-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  background: var(--white);
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  box-shadow: var(--shadow-md);
}

.president-info h2 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--black);
  margin-bottom: 8px;
}

.president-info .role {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  margin-bottom: 20px;
}

.president-info p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.president-quote {
  border-left: 4px solid var(--red);
  padding-left: 20px;
  margin-top: 24px;
  font-style: italic;
  font-size: 18px;
  color: var(--blue);
  font-weight: 500;
}

/* ============================================
   SPONSOR
   ============================================ */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.sponsor-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.sponsor-card-main {
  grid-column: 1 / -1;
  padding: 56px 40px;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
}

.sponsor-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.15);
}

.sponsor-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  opacity: 0.85;
  margin-bottom: 14px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
}

.sponsor-card-main .sponsor-label {
  background: rgba(255,255,255,0.25);
  opacity: 1;
}

.sponsor-logo {
  margin: 0 auto 20px;
  background: white;
  border-radius: 18px;
  padding: 18px 24px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  min-height: 96px;
  width: fit-content;
  max-width: 100%;
}

.sponsor-card-main .sponsor-logo {
  padding: 24px 36px;
  min-height: 120px;
  max-width: 460px;
}

.sponsor-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.sponsor-card-main .sponsor-logo img {
  max-height: 100px;
}

.sponsor-logo-link {
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.sponsor-logo-link:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.32);
}

.sponsor-logo-link:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.sponsor-logo-link::after {
  content: '↗';
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sponsor-logo-link:hover::after {
  opacity: 0.8;
  transform: translate(2px, -2px);
}

.sponsor-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  background: linear-gradient(135deg, #fff 0%, var(--red-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  line-height: 1;
}

.sponsor-card-main .sponsor-name {
  font-size: clamp(48px, 8vw, 90px);
  margin-bottom: 16px;
}

.sponsor-tagline {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.6;
}

.sponsor-card-main .sponsor-tagline {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   STATS / STAGIONE
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

/* ============================================
   ROSA / PLAYERS
   ============================================ */
.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.player-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease;
  position: relative;
}

.player-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.player-avatar {
  height: 200px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.player-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, transparent 70%);
}

.player-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  color: white;
  line-height: 1;
  position: relative;
  text-shadow: 4px 4px 0 rgba(0,0,0,0.15);
}

.player-silhouette {
  width: 70%;
  max-width: 130px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(2px 6px 12px rgba(0,0,0,0.25));
  transition: transform 0.35s ease;
}

.player-card:hover .player-silhouette {
  transform: scale(1.08) translateY(-4px);
}

.player-silhouette text {
  paint-order: stroke;
  stroke: rgba(0,0,0,0.08);
  stroke-width: 1;
}

.player-info {
  padding: 20px;
  text-align: center;
}

.player-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.player-role {
  font-size: 12px;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ============================================
   CALENDAR / MATCHES
   ============================================ */
.matches-list {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.match-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease;
}

.match-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.match-date {
  text-align: center;
  padding: 12px;
  background: var(--gradient);
  color: white;
  border-radius: 12px;
}

.match-date .day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  line-height: 1;
}

.match-date .month {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 4px;
}

.match-teams {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.match-vs {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.match-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--black);
}

.match-meta {
  font-size: 13px;
  color: var(--gray);
}

.match-result {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--black);
  padding: 8px 16px;
  background: var(--gray-light);
  border-radius: 10px;
  min-width: 90px;
  text-align: center;
}

.match-result.win { background: #DCFCE7; color: #166534; }
.match-result.loss { background: #FEE2E2; color: #991B1B; }
.match-result.draw { background: #FEF3C7; color: #92400E; }

/* ============================================
   NEWS
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.news-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: all 0.4s ease;
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.news-image {
  height: 220px;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.08);
}

.news-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.news-date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.news-content {
  padding: 24px;
}

.news-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.1;
}

.news-excerpt {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: gap 0.3s ease;
}

.news-card:hover .news-read {
  gap: 12px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  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.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: multiply;
}

.gallery-item:hover::after {
  opacity: 0.4;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.contact-card {
  background: var(--white);
  padding: 36px 24px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--gradient);
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: white;
  box-shadow: var(--shadow-red);
}

.contact-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 8px;
}

.contact-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--black);
  letter-spacing: 0.02em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: white;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 48px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.footer-logo {
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0 6px 20px rgba(220,38,38,0.35));
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  max-width: 360px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
  letter-spacing: 0.1em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--red-light);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  color: white;
}

.social-links a:hover {
  background: var(--gradient);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.admin-link {
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.3);
  color: var(--red-light);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}

.admin-link:hover {
  background: var(--red);
  color: white;
}

/* ============================================
   MODAL (Login + News Detail)
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: white;
  border-radius: 24px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: slideUp 0.4s ease;
}

.modal-content.large {
  max-width: 700px;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-light);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--red);
  color: white;
}

.modal h2 {
  font-size: 36px;
  margin-bottom: 8px;
  color: var(--black);
}

.modal-subtitle {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-family: 'Inter', sans-serif;
}

.form-error {
  background: #FEE2E2;
  color: #991B1B;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  display: none;
}

.form-error.show {
  display: block;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--black);
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .president-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .match-card {
    grid-template-columns: 80px 1fr;
  }
  .match-result {
    grid-column: 1 / -1;
  }
  section { padding: 60px 0; }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .container { padding: 0 16px; }
  .modal-content { padding: 24px 18px; max-height: 92vh; overflow-y: auto; }
  .modal { padding: 12px; align-items: flex-end; }
  .modal-content { border-radius: 20px; }
  .stat-number { font-size: 56px; }
  .player-number { font-size: 80px; }

  .hero { min-height: 90vh; padding-top: 70px; }
  .hero h1 { font-size: clamp(36px, 12vw, 56px); letter-spacing: -0.02em; }
  .hero-subtitle { font-size: 15px; margin-bottom: 28px; }
  .hero-tag { font-size: 11px; padding: 6px 14px; }
  .btn { padding: 14px 24px; font-size: 14px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { flex: 1; min-width: 140px; }

  .section-title { font-size: 38px; }
  .section-eyebrow { font-size: 11px; padding: 0 28px; }
  .section-subtitle { font-size: 15px; }
  .section-header { margin-bottom: 36px; }

  .players-grid { gap: 14px; grid-template-columns: repeat(2, 1fr); }
  .player-avatar { height: 130px; }
  .player-number { font-size: 64px; }
  .player-name { font-size: 18px; }
  .player-role { font-size: 10px; }
  .player-info { padding: 14px 10px; }

  .news-grid { gap: 18px; grid-template-columns: 1fr; }
  .news-image { height: 180px; }

  .match-card {
    grid-template-columns: 64px 1fr;
    gap: 14px;
    padding: 16px;
  }
  .match-date { padding: 8px; }
  .match-date .day { font-size: 24px; }
  .match-date .month { font-size: 10px; }
  .match-name { font-size: 18px; }
  .match-result {
    grid-column: 1 / -1;
    font-size: 24px;
    padding: 8px;
    min-width: 0;
  }

  .president-image { aspect-ratio: 1/1; }
  .president-info h2 { font-size: 32px; }
  .president-info p { font-size: 15px; }

  .sponsor-card { padding: 32px 22px; }
  .sponsor-card-main { padding: 40px 24px; }
  .sponsor-logo { width: 90px; height: 90px; }
  .sponsor-card-main .sponsor-logo { width: 110px; height: 110px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-item { border-radius: 12px; }

  .contact-icon { width: 56px; height: 56px; font-size: 24px; }
  .contact-value { font-size: 18px; }

  .footer { padding: 60px 0 24px; }
  .footer-brand h3 { font-size: 36px; }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* evita zoom auto su iOS */
    padding: 14px 14px;
  }
}

/* ============================================
   FAQ — SEO Section
   ============================================ */
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-light);
  padding: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}

.faq-item[open] {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  padding: 22px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 28px;
  font-weight: 400;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--red);
}

.faq-item p {
  padding: 0 28px 24px;
  margin: 0;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

.faq-item p a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 500px) {
  .faq-item summary {
    padding: 18px 20px;
    font-size: 15px;
  }
  .faq-item p {
    padding: 0 20px 20px;
    font-size: 14px;
  }
}

/* ============================================
   IMAGE UPLOAD COMPONENT (Admin)
   ============================================ */
.image-upload {
  background: #F9FAFB;
  border: 2px dashed #E5E7EB;
  border-radius: 14px;
  padding: 14px;
  transition: border-color 0.2s ease;
}

.image-upload:hover {
  border-color: var(--red);
}

.image-preview {
  width: 100%;
  min-height: 160px;
  background: white;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}

.image-preview.has-image {
  min-height: 0;
}

.image-preview img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  display: block;
}

.image-placeholder {
  text-align: center;
  color: #9CA3AF;
  padding: 24px;
  font-size: 14px;
}

.image-placeholder-icon {
  font-size: 44px;
  margin-bottom: 8px;
  opacity: 0.5;
}

.image-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.image-pick-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.image-loading {
  margin-top: 10px;
  font-size: 13px;
  color: var(--red);
  text-align: center;
  font-weight: 600;
}

.form-help {
  font-size: 12px;
  color: #6B7280;
  margin-top: 8px;
  line-height: 1.5;
}

/* ============================================
   ADMIN MOBILE OPTIMIZATIONS
   ============================================ */
@media (max-width: 700px) {
  .dash-header { padding: 20px 0; }
  .dash-header h1 { font-size: 26px; }
  .dash-header p { font-size: 11px; }
  .dash-actions { width: 100%; justify-content: stretch; }
  .dash-actions .btn { flex: 1; padding: 12px 14px; font-size: 12px; }

  .tabs-inner { padding: 0 12px; }
  .tab-btn { padding: 14px 14px; font-size: 12px; }

  .panel { padding: 24px 0 60px; }
  .panel-header { margin-bottom: 18px; }
  .panel-header h2 { font-size: 28px; }
  .panel-header p { font-size: 13px; }
  .panel-header .btn-add { width: 100%; justify-content: center; }

  .admin-card { padding: 18px; }
  .admin-card-header {
    flex-direction: column;
    align-items: stretch !important;
  }
  .admin-card-info h3 { font-size: 18px; }
  .admin-card-actions {
    width: 100%;
    justify-content: stretch;
  }
  .admin-card-actions .btn { flex: 1; justify-content: center; }

  .login-box { padding: 36px 24px; }
  .login-box h1 { font-size: 32px; }
}

