  /* ═══════════════════════════════════════════

     DESIGN SYSTEM — TOBIA BASKET

  ═══════════════════════════════════════════ */

  :root {

    --orange: #F5730A;

    --orange-light: #FF8C2A;

    --orange-dark: #C45D00;

    --blue: #0A2A6E;

    --blue-mid: #0D3A9E;

    --blue-light: #1A4FC0;

    --white: #FFFFFF;

    --off-white: #F4F4F2;

    --gray-100: #E8E8E6;

    --gray-300: #BBBBBB;

    --gray-600: #666666;

    --gray-900: #111111;

    --dark: #072661;

    --font-display: 'Bebas Neue', sans-serif;

    --font-heading: 'Barlow Condensed', sans-serif;

    --font-body: 'Barlow', sans-serif;

    --shadow-card: 0 8px 32px rgba(0,0,0,0.18);

    --shadow-hover: 0 20px 60px rgba(0,0,0,0.3);

    --radius: 4px;

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    --nav-h: 72px;

  }



  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }



  html { scroll-behavior: smooth; }



  body {

    font-family: var(--font-body);

    background: var(--white);

    color: var(--gray-900);

    overflow-x: hidden;

  }



  img { display: block; max-width: 100%; }

  a { text-decoration: none; color: inherit; }

  button { cursor: pointer; border: none; background: none; font-family: inherit; }



  /* ═══════════════════════════════════════════

     UTILITY CLASSES

  ═══════════════════════════════════════════ */

  .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

  .container--narrow { max-width: 960px; margin: 0 auto; padding: 0 24px; }

  .section { padding: 80px 0; }

  .section--dark { background: var(--dark); color: var(--white); }

  .section--blue { background: var(--blue); color: var(--white); }

  .section--orange { background: var(--orange); color: var(--white); }

  .section--gray { background: var(--off-white); }



  .label {

    font-family: var(--font-heading);

    font-weight: 700;

    font-size: 12px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: var(--orange);

    margin-bottom: 8px;

    display: block;

  }

  .label--white { color: rgba(255,255,255,0.6); }

  .label--blue { color: var(--blue-light); }



  .section-title {

    font-family: var(--font-display);

    font-size: clamp(36px, 5vw, 64px);

    line-height: 0.95;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--blue);

  }

  .section-title--white { color: var(--white); }

  .section-title--orange { color: var(--orange); }



  .btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    font-family: var(--font-heading);

    font-weight: 700;

    font-size: 14px;

    letter-spacing: 2px;

    text-transform: uppercase;

    padding: 14px 32px;

    border-radius: var(--radius);

    transition: var(--transition);

    position: relative;

    overflow: hidden;

  }

  .btn::after {

    content: '';

    position: absolute;

    inset: 0;

    background: rgba(255,255,255,0.1);

    opacity: 0;

    transition: var(--transition);

  }

  .btn:hover::after { opacity: 1; }

  .btn:hover { transform: translateY(-2px); }



  .btn--primary {

    background: var(--orange);

    color: var(--white);

    box-shadow: 0 4px 20px rgba(245,115,10,0.4);

  }

  .btn--primary:hover { box-shadow: 0 8px 30px rgba(245,115,10,0.6); }



  .btn--secondary {

    background: transparent;

    color: var(--white);

    border: 2px solid rgba(255,255,255,0.4);

  }

  .btn--secondary:hover { border-color: var(--white); }



  .btn--outline-blue {

    background: transparent;

    color: var(--blue);

    border: 2px solid var(--blue);

  }

  .btn--outline-blue:hover { background: var(--blue); color: var(--white); }



  .btn--ghost-orange {

    background: transparent;

    color: var(--orange);

    border: 2px solid var(--orange);

  }

  .btn--ghost-orange:hover { background: var(--orange); color: var(--white); }



  /* Arrow icon */

  .arrow { display: inline-block; transition: transform 0.3s; }

  .btn:hover .arrow { transform: translateX(4px); }



  /* ═══════════════════════════════════════════

     PAGE SYSTEM

  ═══════════════════════════════════════════ */

  .page { display: none; animation: fadeIn 0.4s ease; }

  .page.active { display: block; }

  @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }



  /* ═══════════════════════════════════════════

     NAVIGATION

  ═══════════════════════════════════════════ */

  .nav {

    position: fixed;

    top: 0; left: 0; right: 0;

    z-index: 1000;

    height: var(--nav-h);

    transition: var(--transition);

  }

  .nav.scrolled {

    background: rgba(8, 21, 46, 0.97);

    backdrop-filter: blur(12px);

    box-shadow: 0 2px 24px rgba(0,0,0,0.3);

  }

  .nav-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    height: 100%;

    padding: 0 32px;

    max-width: 1400px;

    margin: 0 auto;

  }

  .nav-logo {

    display: flex;

    align-items: center;

    gap: 12px;

    cursor: pointer;

  }

  .logo-mark {

    width: 44px;

    height: 44px;

    background: var(--orange);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: var(--font-display);

    font-size: 20px;

    color: var(--white);

    letter-spacing: 1px;

    flex-shrink: 0;

    box-shadow: 0 0 0 3px rgba(245,115,10,0.3);

    transition: var(--transition);

  }

  .nav-logo:hover .logo-mark { transform: rotate(-5deg) scale(1.05); }

  .logo-text { display: flex; flex-direction: column; }

  .logo-text .club { font-family: var(--font-display); font-size: 28px; color: var(--white); letter-spacing: 3px; line-height: 1; }

  .logo-text .city { font-family: var(--font-heading); font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 4px; text-transform: uppercase; }

  .nav-links {

    display: flex;

    align-items: center;

    gap: 4px;

    list-style: none;

  }

  .nav-link {

    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: rgba(255,255,255,0.75);

    padding: 8px 14px;

    border-radius: var(--radius);

    cursor: pointer;

    transition: var(--transition);

    position: relative;

  }

  .nav-link::after {

    content: '';

    position: absolute;

    bottom: 4px; left: 14px; right: 14px;

    height: 2px;

    background: var(--orange);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.3s;

  }

  .nav-link:hover { color: var(--white); }

  .nav-link:hover::after { transform: scaleX(1); }

  .nav-link.active { color: var(--orange); }

  .nav-link.active::after { transform: scaleX(1); }

  .nav-cta {

    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    background: var(--orange);

    color: var(--white);

    padding: 10px 24px;

    border-radius: var(--radius);

    cursor: pointer;

    transition: var(--transition);

    box-shadow: 0 4px 15px rgba(245,115,10,0.35);

  }

  .nav-cta:hover { background: var(--orange-light); transform: translateY(-1px); }

  .nav-hamburger {

    display: none;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;

    padding: 8px;

  }

  .hamburger-line {

    width: 24px; height: 2px;

    background: var(--white);

    border-radius: 2px;

    transition: var(--transition);

  }

  .mobile-menu {

    display: none;

    position: fixed;

    inset: 0;

    background: var(--dark);

    z-index: 999;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

  }

  .mobile-menu.open { display: flex; }

  .mobile-menu .mobile-link {

    font-family: var(--font-display);

    font-size: 40px;

    color: var(--white);

    letter-spacing: 3px;

    cursor: pointer;

    transition: var(--transition);

  }

  .mobile-menu .mobile-link:hover { color: var(--orange); }

  .mobile-close {

    position: absolute;

    top: 24px; right: 24px;

    font-size: 32px;

    color: var(--white);

    cursor: pointer;

    line-height: 1;

  }



  /* ═══════════════════════════════════════════

     HOME — HERO

  ═══════════════════════════════════════════ */

  .hero {

    position: relative;

    min-height: 100svh;

    min-height: 100vh;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: var(--dark);

  }

  .hero-bg {

    position: absolute;

    inset: 0;

    background:

      radial-gradient(ellipse at 70% 50%, rgba(10,42,110,0.6) 0%, transparent 60%),

      radial-gradient(ellipse at 20% 80%, rgba(245,115,10,0.15) 0%, transparent 50%),

      linear-gradient(135deg, #08152E 0%, #0A2A6E 50%, #08152E 100%);

  }

  .hero-pattern {

    position: absolute;

    inset: 0;

    opacity: 0.04;

    background-image:

      repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.5) 60px, rgba(255,255,255,0.5) 61px),

      repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.5) 60px, rgba(255,255,255,0.5) 61px);

  }

  .hero-ball {

    position: absolute;

    right: -80px;

    top: 50%;

    transform: translateY(-50%);

    width: 600px;

    height: 600px;

    border-radius: 50%;

    background: radial-gradient(circle at 35% 35%, #FF8C2A, #C45D00 60%, #7A3800);

    opacity: 0.12;

    animation: ballFloat 8s ease-in-out infinite;

  }

  @keyframes ballFloat {

    0%, 100% { transform: translateY(-50%) scale(1); }

    50% { transform: translateY(-52%) scale(1.03); }

  }

  .hero-lines {

    position: absolute;

    right: 0;

    top: 0;

    bottom: 0;

    width: 45%;

    opacity: 0.06;

    background:

      repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(245,115,10,1) 40px, rgba(245,115,10,1) 41px);

  }

  .hero-content {

    position: relative;

    z-index: 2;

    max-width: 1400px;

    margin: 0 auto;

    padding: calc(var(--nav-h) + 60px) 32px 140px;

    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: center;

  }

  .hero-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    animation: slideUp 0.8s ease 0.2s both;

  }

  .hero-eyebrow-line { width: 40px; height: 3px; background: var(--orange); border-radius: 2px; }

  .hero-eyebrow-text {

    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;

    color: var(--orange);

  }

  .hero-title {

    font-family: var(--font-display);

    font-size: clamp(60px, 10vw, 130px);

    line-height: 0.88;

    letter-spacing: 4px;

    text-transform: uppercase;

    color: var(--white);

    margin-bottom: 24px;

    animation: slideUp 0.8s ease 0.4s both;

  }

  .hero-title span {

    display: block;

    color: var(--orange);

    -webkit-text-stroke: 2px var(--orange);

    color: transparent;

  }

  .hero-title strong { display: block; color: var(--white); }

  .hero-sub {

    font-family: var(--font-body);

    font-size: 18px;

    font-weight: 300;

    color: rgba(255,255,255,0.65);

    max-width: 480px;

    line-height: 1.6;

    margin-bottom: 40px;

    animation: slideUp 0.8s ease 0.6s both;

  }

  .hero-actions {

    display: flex;

    gap: 16px;

    flex-wrap: wrap;

    animation: slideUp 0.8s ease 0.8s both;

  }

  .hero-stats {

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    display: flex;

    gap: 0;

    padding: 24px 32px;

    background: rgba(0,0,0,0.25);

    border-top: 1px solid rgba(255,255,255,0.06);

    animation: slideUp 0.8s ease 1s both;

    z-index: 2;

  }

  .hero-stat-item {

    flex: 1;

    display: flex;

    flex-direction: column;

    gap: 4px;

    padding: 0 16px;

    border-right: 1px solid rgba(255,255,255,0.1);

  }

  .hero-stat-item:first-child { padding-left: 0; }

  .hero-stat-item:last-child { border-right: none; }

  .hero-stat-num {

    font-family: var(--font-display);

    font-size: 40px;

    color: var(--orange);

    line-height: 1;

    letter-spacing: 2px;

  }

  .hero-stat-label {

    font-family: var(--font-heading);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: rgba(255,255,255,0.45);

  }


  @keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }



  /* ═══════════════════════════════════════════

     NEXT GAME TICKER

  ═══════════════════════════════════════════ */

  .ticker {

    background: var(--orange);

    padding: 0;

    overflow: hidden;

    height: 44px;

    display: flex;

    align-items: center;

  }

  .ticker-label {

    background: var(--blue);

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    padding: 0 20px;

    height: 100%;

    display: flex;

    align-items: center;

    white-space: nowrap;

    flex-shrink: 0;

  }

  .ticker-track {

    display: flex;

    animation: ticker 25s linear infinite;

    white-space: nowrap;

  }

  .ticker-item {

    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--white);

    padding: 0 40px;

    display: flex;

    align-items: center;

    gap: 20px;

  }

  .ticker-sep { color: rgba(255,255,255,0.4); }

  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }



  /* ═══════════════════════════════════════════

     NEXT GAME CARD

  ═══════════════════════════════════════════ */

  .next-game {

    background: var(--blue);

    padding: 60px 0;

  }

  .next-game-inner {

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 40px;

    max-width: 900px;

    margin: 0 auto;

    padding: 0 32px;

  }

  .ng-team {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;

  }

  .ng-team-logo {

    width: 80px; height: 80px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: var(--font-display);

    font-size: 28px;

    color: var(--white);

  }

  .ng-team-logo.home { background: var(--orange); }

  .ng-team-logo.away { background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2); }

  .ng-team-name {

    font-family: var(--font-heading);

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--white);

    text-align: center;

  }

  .ng-center { text-align: center; }

  .ng-vs {

    font-family: var(--font-display);

    font-size: 52px;

    color: rgba(255,255,255,0.15);

    line-height: 1;

    letter-spacing: 4px;

  }

  .ng-date {

    font-family: var(--font-heading);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--orange);

    margin-top: 8px;

  }

  .ng-time {

    font-family: var(--font-display);

    font-size: 32px;

    color: var(--white);

    letter-spacing: 3px;

    margin-top: 4px;

  }

  .ng-location {

    font-family: var(--font-body);

    font-size: 13px;

    color: rgba(255,255,255,0.45);

    letter-spacing: 1px;

    margin-top: 4px;

  }

  .ng-header {

    text-align: center;

    margin-bottom: 32px;

  }

  .countdown {

    display: flex;

    justify-content: center;

    gap: 16px;

    margin: 24px 0;

  }

  .countdown-item {

    display: flex;

    flex-direction: column;

    align-items: center;

    background: rgba(255,255,255,0.07);

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: var(--radius);

    padding: 12px 20px;

    min-width: 72px;

  }

  .countdown-num {

    font-family: var(--font-display);

    font-size: 36px;

    color: var(--orange);

    line-height: 1;

    letter-spacing: 2px;

  }

  .countdown-label {

    font-family: var(--font-heading);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: rgba(255,255,255,0.35);

    margin-top: 4px;

  }



  /* ═══════════════════════════════════════════

     NEWS GRID

  ═══════════════════════════════════════════ */

  .news-grid {

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 24px;

  }

  .news-card {

    border-radius: 8px;

    overflow: hidden;

    background: var(--white);

    box-shadow: var(--shadow-card);

    transition: var(--transition);

    cursor: pointer;

    position: relative;

  }

  .news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

  .news-card-img {

    width: 100%;

    aspect-ratio: 16/9;

    object-fit: cover;

    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);

    display: flex;

    align-items: center;

    justify-content: center;

    color: rgba(255,255,255,0.1);

    font-family: var(--font-display);

    font-size: 80px;

    letter-spacing: 4px;

    position: relative;

    overflow: hidden;

  }

  .news-card-img::after {

    content: '';

    position: absolute;

    inset: 0;

    background: linear-gradient(to bottom, transparent 50%, rgba(8,21,46,0.6));

  }

  .news-card-img.featured { aspect-ratio: 16/10; font-size: 120px; }

  .news-img-pattern {

    position: absolute;

    inset: 0;

    background-image: radial-gradient(circle, rgba(245,115,10,0.15) 1px, transparent 1px);

    background-size: 24px 24px;

  }

  .news-cat-badge {

    position: absolute;

    top: 16px; left: 16px;

    z-index: 2;

    font-family: var(--font-heading);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    background: var(--orange);

    color: var(--white);

    padding: 4px 10px;

    border-radius: 2px;

  }

  .news-body { padding: 20px; }

  .news-meta {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 10px;

  }

  .news-date {

    font-family: var(--font-heading);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--gray-300);

  }

  .news-title {

    font-family: var(--font-heading);

    font-size: 20px;

    font-weight: 700;

    line-height: 1.2;

    color: var(--gray-900);

    margin-bottom: 10px;

    transition: color 0.2s;

  }

  .news-card:hover .news-title { color: var(--orange); }

  .news-title.featured { font-size: 26px; }

  .news-excerpt {

    font-size: 14px;

    color: var(--gray-600);

    line-height: 1.6;

  }

  .news-sidebar { display: flex; flex-direction: column; gap: 16px; }

  .news-card-small {

    display: flex;

    gap: 16px;

    background: var(--white);

    border-radius: 6px;

    overflow: hidden;

    box-shadow: 0 4px 16px rgba(0,0,0,0.08);

    transition: var(--transition);

    cursor: pointer;

    padding: 12px;

    align-items: center;

  }

  .news-card-small:hover { transform: translateX(4px); box-shadow: var(--shadow-card); }

  .news-card-small-img {

    width: 72px; height: 72px;

    flex-shrink: 0;

    border-radius: 4px;

    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: var(--font-display);

    font-size: 28px;

    color: rgba(255,255,255,0.15);

    position: relative;

    overflow: hidden;

  }

  .news-card-small-body { flex: 1; min-width: 0; }

  .news-card-small-title {

    font-family: var(--font-heading);

    font-size: 15px;

    font-weight: 700;

    line-height: 1.3;

    color: var(--gray-900);

    margin-bottom: 6px;

    transition: color 0.2s;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

  }

  .news-card-small:hover .news-card-small-title { color: var(--orange); }

  .news-card-small-date {

    font-family: var(--font-heading);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--gray-300);

  }



  /* ═══════════════════════════════════════════

     SECTION HEADER

  ═══════════════════════════════════════════ */

  .section-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 40px;

    gap: 20px;

  }

  .section-header-left { display: flex; flex-direction: column; }

  .view-all {

    font-family: var(--font-heading);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--orange);

    display: flex;

    align-items: center;

    gap: 6px;

    transition: gap 0.2s;

    cursor: pointer;

    white-space: nowrap;

    flex-shrink: 0;

  }

  .view-all:hover { gap: 10px; }

  .view-all--white { color: rgba(255,255,255,0.6); }

  .view-all--white:hover { color: var(--white); }



  /* ═══════════════════════════════════════════

     RESULTS

  ═══════════════════════════════════════════ */

  /* ── Risultati ── */

  .results-list { display: flex; flex-direction: column; gap: 10px; }

  /* ── Result card (sfondo bianco, alta leggibilità) ── */

  .result-item {

    background: var(--white);

    border: 1px solid var(--gray-100);

    border-left: 5px solid var(--gray-300);

    border-radius: 10px;

    overflow: hidden;

    transition: var(--transition);

    cursor: pointer;

  }

  .result-item:hover {

    box-shadow: 0 6px 24px rgba(10,42,110,0.1);

    transform: translateY(-2px);

    border-color: var(--orange);

    border-left-color: var(--orange);

  }

  .result-item.vittoria { border-left-color: #27AE60; }

  .result-item.sconfitta { border-left-color: #E74C3C; }



  /* Banda campionato in cima (stessa della match-card) */

  .result-league-bar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 6px 20px;

    background: var(--blue);

    gap: 12px;

  }

  .result-league-name {

    font-family: var(--font-heading);

    font-size: 10px; font-weight: 700;

    letter-spacing: 2px; text-transform: uppercase;

    color: rgba(255,255,255,0.92);

    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;

  }

  .result-league-date {

    font-family: var(--font-heading);

    font-size: 10px; font-weight: 600;

    color: var(--orange);

    white-space: nowrap; flex-shrink: 0;

  }



  /* Corpo */

  .result-body {

    display: grid;

    grid-template-columns: 1fr 160px 1fr;

    align-items: center;

    gap: 16px;

    padding: 18px 20px;

  }



  .result-team { display: flex; align-items: center; gap: 12px; min-width: 0; }

  .result-team.away { flex-direction: row-reverse; }

  .result-team-logo {

    width: 44px; height: 44px;

    border-radius: 50%;

    background: var(--orange);

    display: flex; align-items: center; justify-content: center;

    font-family: var(--font-display); font-size: 14px; color: var(--white);

    flex-shrink: 0;

    overflow: hidden;

    box-shadow: 0 2px 8px rgba(245,115,10,0.3);

  }

  .result-team-logo img { width:100%; height:100%; object-fit:contain; padding:4px; }

  .result-team-logo.opp {

    background: var(--gray-100);

    color: var(--gray-600);

    box-shadow: none;

  }

  .result-team-name {

    font-family: var(--font-heading); font-size: 15px; font-weight: 700;

    letter-spacing: 0.5px; text-transform: uppercase;

    color: var(--blue);

    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;

  }

  .result-team-name.us { color: var(--orange); }

  .result-team.away .result-team-name { text-align: right; }



  /* Score centrale */

  .result-score-block {

    text-align: center;

    display: flex; flex-direction: column; align-items: center; gap: 6px;

    flex-shrink: 0;

  }

  .result-score {

    font-family: var(--font-display); font-size: 40px; line-height: 1;

    display: flex; align-items: center; gap: 8px;

    color: var(--blue);

  }

  .result-score .win { color: var(--orange); }

  .result-score-sep {

    font-family: var(--font-heading); font-size: 14px; font-weight: 300;

    color: var(--gray-300); line-height: 1;

  }

  .result-label {

    font-family: var(--font-heading); font-size: 9px; font-weight: 600;

    letter-spacing: 2px; text-transform: uppercase;

    color: var(--gray-300);

  }

  .result-campionato { display: none; } /* ora nella banda in cima */

  .result-badge {

    font-family: var(--font-heading); font-size: 10px; font-weight: 700;

    letter-spacing: 2px; text-transform: uppercase;

    padding: 4px 12px; border-radius: 20px;

    display: inline-flex; align-items: center; gap: 5px;

  }

  .result-badge::before {

    content: ''; width: 5px; height: 5px;

    border-radius: 50%; flex-shrink: 0;

  }

  .result-badge.vittoria  { background: rgba(39,174,96,0.1); color: #27AE60; border: 1px solid rgba(39,174,96,0.25); }

  .result-badge.vittoria::before  { background: #27AE60; }

  .result-badge.sconfitta { background: rgba(231,76,60,0.1); color: #E74C3C; border: 1px solid rgba(231,76,60,0.25); }

  .result-badge.sconfitta::before { background: #E74C3C; }



  /* ═══════════════════════════════════════════

     TEAMS GRID

  ═══════════════════════════════════════════ */

  .teams-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 24px;

  }

  .team-card {

    border-radius: 8px;

    overflow: hidden;

    cursor: pointer;

    transition: var(--transition);

    position: relative;

    background: var(--blue);

  }

  .team-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(10,42,110,0.4); }

  .team-card-visual {

    height: 200px;

    background: linear-gradient(135deg, var(--blue) 0%, var(--dark) 100%);

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    overflow: hidden;

  }

  .team-card-visual::before {

    content: '';

    position: absolute;

    inset: 0;

    background-image: radial-gradient(circle, rgba(245,115,10,0.08) 1px, transparent 1px);

    background-size: 20px 20px;

  }

  .team-card-icon {

    font-family: var(--font-display);

    font-size: 80px;

    color: rgba(255,255,255,0.06);

    letter-spacing: 4px;

    position: relative;

    z-index: 1;

  }

  .team-card-badge {

    position: absolute;

    top: 0; left: 0; right: 0;

    height: 4px;

  }

  .team-card-badge.orange { background: var(--orange); }

  .team-card-badge.blue-light { background: var(--blue-light); }

  .team-card-body {

    padding: 24px;

    background: var(--blue);

  }

  .team-card-tag {

    font-family: var(--font-heading);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: var(--orange);

    margin-bottom: 8px;

  }

  .team-card-name {

    font-family: var(--font-display);

    font-size: 28px;

    color: var(--white);

    letter-spacing: 2px;

    line-height: 1;

    margin-bottom: 12px;

  }

  .team-card-info {

    display: flex;

    gap: 20px;

    padding-top: 16px;

    border-top: 1px solid rgba(255,255,255,0.1);

  }

  .team-info-item { display: flex; flex-direction: column; gap: 2px; }

  .team-info-num {

    font-family: var(--font-display);

    font-size: 24px;

    color: var(--orange);

    letter-spacing: 1px;

  }

  .team-info-label {

    font-family: var(--font-heading);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: rgba(255,255,255,0.4);

  }



  /* ═══════════════════════════════════════════

     YOUTH SECTION

  ═══════════════════════════════════════════ */

  .youth-banner {

    position: relative;

    overflow: hidden;

    background: var(--dark);

    padding: 80px 0;

  }

  .youth-banner::before {

    content: '';

    position: absolute;

    top: -100px; right: -100px;

    width: 600px; height: 600px;

    border-radius: 50%;

    background: radial-gradient(circle, rgba(245,115,10,0.12) 0%, transparent 70%);

  }

  .youth-inner {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

  }

  .youth-number {

    font-family: var(--font-display);

    font-size: 180px;

    color: rgba(255,255,255,0.03);

    line-height: 0.85;

    letter-spacing: 8px;

    position: absolute;

    top: 0; right: 24px;

  }

  .youth-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

  .youth-list-item {

    display: flex;

    align-items: center;

    gap: 16px;

    font-family: var(--font-heading);

    font-size: 16px;

    font-weight: 600;

    letter-spacing: 1px;

    color: rgba(255,255,255,0.8);

  }

  .youth-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

  .youth-visual {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;

  }

  .youth-stat-card {

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 8px;

    padding: 24px;

    text-align: center;

    transition: var(--transition);

  }

  .youth-stat-card:hover { background: rgba(245,115,10,0.1); border-color: rgba(245,115,10,0.3); }

  .youth-stat-card.featured { grid-column: 1 / -1; background: rgba(245,115,10,0.1); border-color: rgba(245,115,10,0.25); }

  .youth-stat-num {

    font-family: var(--font-display);

    font-size: 52px;

    color: var(--orange);

    letter-spacing: 3px;

    line-height: 1;

  }

  .youth-stat-lbl {

    font-family: var(--font-heading);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: rgba(255,255,255,0.5);

    margin-top: 8px;

  }



  /* ═══════════════════════════════════════════

     SPONSORS

  ═══════════════════════════════════════════ */

  .sponsors-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));

    gap: 16px;

    margin-top: 40px;

  }

  .sponsor-card {

    border: 2px solid var(--gray-100);

    border-radius: 6px;

    padding: 28px 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    transition: var(--transition);

    cursor: pointer;

    text-align: center;

    min-height: 100px;

  }

  .sponsor-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-card); }

  .sponsor-name {

    font-family: var(--font-heading);

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: var(--blue);

  }

  .sponsor-type {

    font-family: var(--font-heading);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--gray-300);

  }

  .sponsor-logo-placeholder {

    background: var(--gray-100);

    border-radius: 4px;

    display: flex;

    align-items: center;

    justify-content: center;

  }



  /* ═══════════════════════════════════════════

     GALLERY GRID

  ═══════════════════════════════════════════ */

  .gallery-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    grid-template-rows: repeat(2, 200px);

    gap: 8px;

  }

  .gallery-item {

    border-radius: 4px;

    overflow: hidden;

    cursor: pointer;

    position: relative;

    background: linear-gradient(135deg, var(--blue) 0%, var(--dark) 100%);

    transition: var(--transition);

  }

  .gallery-item:hover { transform: scale(1.02); z-index: 2; }

  .gallery-item:first-child { grid-column: 1 / 3; grid-row: 1 / 3; }

  .gallery-item:nth-child(4) { grid-column: 4; grid-row: 1 / 3; }

  .gallery-inner {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: var(--font-display);

    font-size: 60px;

    color: rgba(255,255,255,0.06);

    background-image: radial-gradient(circle, rgba(245,115,10,0.06) 1px, transparent 1px);

    background-size: 16px 16px;

  }

  .gallery-item:first-child .gallery-inner { font-size: 120px; }

  .gallery-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to top, rgba(8,21,46,0.8) 0%, transparent 60%);

    opacity: 0;

    transition: var(--transition);

    display: flex;

    align-items: flex-end;

    padding: 20px;

  }

  .gallery-item:hover .gallery-overlay { opacity: 1; }

  .gallery-overlay-text {

    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: var(--white);

  }



  /* ═══════════════════════════════════════════

     SOCIAL FEED

  ═══════════════════════════════════════════ */

  .social-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

    gap: 16px;

  }

  .social-card {

    background: var(--white);

    border-radius: 8px;

    padding: 20px;

    box-shadow: 0 4px 20px rgba(0,0,0,0.08);

    border-top: 3px solid var(--orange);

    transition: var(--transition);

    cursor: pointer;

  }

  .social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

  .social-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }

  .social-avatar {

    width: 36px; height: 36px;

    border-radius: 50%;

    background: var(--blue);

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: var(--font-display);

    font-size: 14px;

    color: var(--white);

  }

  .social-handle { font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--blue); }

  .social-platform { font-family: var(--font-body); font-size: 11px; color: var(--gray-300); }

  .social-text { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

  .social-date { font-family: var(--font-heading); font-size: 11px; font-weight: 600; letter-spacing: 1px; color: var(--gray-300); text-transform: uppercase; margin-top: 12px; }



  /* ═══════════════════════════════════════════

     FOOTER

  ═══════════════════════════════════════════ */

  footer {

    background: var(--dark);

    padding: 60px 0 0;

    color: rgba(255,255,255,0.6);

  }

  .footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 48px;

    padding-bottom: 48px;

    border-bottom: 1px solid rgba(255,255,255,0.08);

  }

  .footer-brand { }

  .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }

  .footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.4); max-width: 280px; }

  .footer-socials { display: flex; gap: 12px; margin-top: 20px; }

  .social-btn {

    width: 40px; height: 40px;

    border-radius: 8px;

    background: rgba(255,255,255,0.07);

    border: 1px solid rgba(255,255,255,0.12);

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: var(--transition);

    color: rgba(255,255,255,0.7);

    text-decoration: none;

    flex-shrink: 0;

  }

  .social-btn svg { width: 18px; height: 18px; fill: currentColor; transition: var(--transition); }

  .social-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--white); transform: translateY(-2px); }

  .footer-col-title {

    font-family: var(--font-heading);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: var(--orange);

    margin-bottom: 20px;

  }

  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .footer-link {

    font-size: 14px;

    color: rgba(255,255,255,0.45);

    cursor: pointer;

    transition: color 0.2s;

  }

  .footer-link:hover { color: var(--white); }

  .footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 20px 0;

    font-size: 12px;

    color: rgba(255,255,255,0.25);

  }



  /* ═══════════════════════════════════════════

     PAGE: SQUADRE

  ═══════════════════════════════════════════ */

  .page-hero {

    background: var(--dark);

    padding: 120px 0 60px;

    position: relative;

    overflow: hidden;

  }

  .page-hero::before {

    content: '';

    position: absolute;

    top: 0; left: 0; right: 0; bottom: 0;

    background: linear-gradient(135deg, rgba(10,42,110,0.6) 0%, transparent 60%);

  }

  .page-hero-bg-text {

    position: absolute;

    bottom: -20px; right: -20px;

    font-family: var(--font-display);

    font-size: 200px;

    color: rgba(255,255,255,0.02);

    letter-spacing: 8px;

    line-height: 1;

    pointer-events: none;

  }

  .page-hero-content { position: relative; z-index: 1; }

  .page-breadcrumb {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 20px;

    font-family: var(--font-heading);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: rgba(255,255,255,0.35);

  }

  .page-breadcrumb span { color: var(--orange); }

  .page-title {

    font-family: var(--font-display);

    font-size: clamp(48px, 7vw, 96px);

    color: var(--white);

    letter-spacing: 5px;

    line-height: 0.9;

    text-transform: uppercase;

  }

  .page-subtitle {

    font-size: 16px;

    color: rgba(255,255,255,0.5);

    margin-top: 16px;

    max-width: 500px;

    line-height: 1.6;

  }

  .tab-bar {

    background: var(--blue);

    border-bottom: 1px solid rgba(255,255,255,0.1);

    position: sticky;

    top: var(--nav-h);

    z-index: 10;

    height: 58px;        /* altezza fissa — evita spostamenti al cambio tab */

    display: flex;

    align-items: stretch;

  }

  .tab-bar-inner {

    display: flex;

    align-items: stretch;

    overflow-x: auto;

    scrollbar-width: none;

    max-width: 1280px;

    width: 100%;

    margin: 0 auto;

    padding: 0 24px;

  }

  .tab-bar-inner::-webkit-scrollbar { display: none; }

  .tab-btn {

    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: rgba(255,255,255,0.5);

    padding: 0 24px;

    height: 100%;

    white-space: nowrap;

    cursor: pointer;

    transition: var(--transition);

    border-bottom: 3px solid transparent;

    display: inline-flex;

    align-items: center;

  }

  .tab-btn:hover { color: var(--white); }

  .tab-btn.active { color: var(--orange); border-bottom-color: var(--orange); }

  .tab-panel { display: none; }

  .tab-panel.active { display: block; animation: fadeIn 0.3s ease; }



  /* Roster */

  .roster-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));

    gap: 20px;

  }

  .player-card {

    background: var(--white);

    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 4px 20px rgba(0,0,0,0.08);

    transition: var(--transition);

    cursor: pointer;

    text-align: center;

  }

  .player-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

  .player-visual {

    height: 180px;

    background: linear-gradient(135deg, var(--blue) 0%, var(--dark) 100%);

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    overflow: hidden;

  }

  .player-number {

    font-family: var(--font-display);

    font-size: 80px;

    color: rgba(255,255,255,0.08);

    letter-spacing: 2px;

    position: relative;

    z-index: 1;

  }

  .player-card-badge {

    position: absolute;

    top: 12px; right: 12px;

    font-family: var(--font-display);

    font-size: 20px;

    color: var(--orange);

    background: rgba(245,115,10,0.15);

    border: 1px solid rgba(245,115,10,0.3);

    width: 36px; height: 36px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

  }

  .player-body { padding: 16px 12px; }

  .player-name {

    font-family: var(--font-heading);

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: var(--blue);

    line-height: 1.2;

  }

  .player-role {

    font-family: var(--font-heading);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--orange);

    margin-top: 4px;

  }

  .coach-card {

    background: var(--white);

    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 4px 20px rgba(0,0,0,0.08);

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 20px;

    transition: var(--transition);

  }

  .coach-card:hover { transform: translateX(4px); box-shadow: var(--shadow-card); }

  .coach-avatar {

    width: 64px; height: 64px;

    border-radius: 50%;

    background: linear-gradient(135deg, var(--blue), var(--blue-mid));

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: var(--font-display);

    font-size: 24px;

    color: var(--white);

    flex-shrink: 0;

    border: 3px solid var(--orange);

    overflow: hidden;

  }

  .coach-avatar img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center top;

    display: block;

  }

  .coach-info { flex: 1; }

  .coach-name { font-family: var(--font-heading); font-size: 18px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); }

  .coach-role { font-family: var(--font-heading); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-top: 2px; }



  /* ═══════════════════════════════════════════

     PAGE: NEWS

  ═══════════════════════════════════════════ */

  .news-full-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

  }



 /* ═══════════════════════════════════════════

     PAGE: PARTITE

  ═══════════════════════════════════════════ */

  .calendar-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 24px;

  }

  .cal-nav {

    display: flex;

    align-items: center;

    gap: 16px;

  }

  .cal-nav-btn {

    width: 36px; height: 36px;

    border-radius: 4px;

    border: 2px solid var(--gray-100);

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: var(--transition);

    font-size: 16px;

    color: var(--blue);

  }

  .cal-nav-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

  .cal-month {

    font-family: var(--font-heading);

    font-size: 20px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--blue);

  }

  /* ── Calendario partite ── */

  .matches-list { display: flex; flex-direction: column; gap: 8px; }

  /* ── Match card (struttura: league-bar + match-body) ── */

  /* ══════════════════════════════════════════

     MATCH CARD — CALENDARIO

  ══════════════════════════════════════════ */

  .match-item {

    background: var(--white);

    border: 1px solid var(--gray-100);

    border-radius: 12px;

    overflow: hidden;

    transition: var(--transition);

    cursor: pointer;

    box-shadow: 0 2px 8px rgba(10,42,110,0.05);

  }

  .match-item:hover {

    box-shadow: 0 8px 28px rgba(10,42,110,0.12);

    transform: translateY(-3px);

    border-color: rgba(245,115,10,0.4);

  }



  /* Banda campionato */

  .match-league-bar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 7px 18px;

    background: var(--blue);

    gap: 12px;

  }

  .match-league-name {

    font-family: var(--font-heading);

    font-size: 11px; font-weight: 700;

    letter-spacing: 2.5px; text-transform: uppercase;

    color: var(--white);

    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;

  }

  .match-league-round {

    font-family: var(--font-heading);

    font-size: 10px; font-weight: 600;

    color: var(--orange);

    white-space: nowrap; flex-shrink: 0;

  }



  /* Corpo — flex row, tutti gli elementi in fila */

  .match-body {

    display: flex;

    align-items: stretch;

    flex-wrap: nowrap;

    min-height: 64px;

    overflow: hidden;

  }



  /* Data */

  .match-date-block {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 14px 14px;

    background: var(--off-white);

    border-right: 1px solid var(--gray-100);

    flex: 0 0 58px;

    width: 58px;

  }

  .match-day   { font-family: var(--font-display); font-size: 28px; color: var(--blue); line-height: 1; }

  .match-month { font-family: var(--font-heading); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-300); margin-top: 2px; }



  /* Area squadre — prende tutto lo spazio disponibile */

  .match-teams-area {

    display: flex;

    align-items: center;

    flex: 1 1 0;

    min-width: 0;

    overflow: hidden;

  }



  /* Squadra */

  .match-team {

    font-family: var(--font-heading);

    font-size: 15px; font-weight: 700;

    letter-spacing: 0.5px; text-transform: uppercase;

    color: var(--blue);

    padding: 14px 12px;

    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;

    flex: 1;

    min-width: 0;

  }

  .match-team.us { color: var(--orange); }

  .match-team.right { text-align: right; }



  /* VS badge */

  .match-vs {

    font-family: var(--font-heading);

    font-size: 9px; font-weight: 800;

    letter-spacing: 2px;

    color: var(--white);

    background: var(--blue);

    border-radius: 3px;

    padding: 3px 7px;

    flex-shrink: 0;

    align-self: center;

  }



  /* Info orario + campo */

  .match-info {

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    justify-content: center;

    gap: 3px;

    padding: 14px 18px;

    background: var(--off-white);

    border-left: 1px solid var(--gray-100);

    flex: 0 0 auto;

    min-width: 100px;

  }

  .match-time {

    font-family: var(--font-display);

    font-size: 22px;

    color: var(--orange);

    letter-spacing: 1px; line-height: 1;

  }

  .match-competition {

    font-family: var(--font-heading);

    font-size: 9px; font-weight: 600;

    letter-spacing: 1px; text-transform: uppercase;

    color: var(--gray-300);

    text-align: right;

  }

  .match-competition.campionato { display: none; }



  /* ── Mobile match card ── */

  @media (max-width: 600px) {

    .match-body { min-height: unset; }

    .match-date-block { flex: 0 0 48px; width: 48px; padding: 12px 8px; }

    .match-day { font-size: 20px; }

    .match-month { font-size: 8px; letter-spacing: 1px; }

    .match-team { font-size: 12px; padding: 10px 6px; letter-spacing: 0; }

    .match-vs { font-size: 8px; padding: 2px 4px; }

    .match-info { flex: 0 0 auto; min-width: 80px; padding: 10px 10px; }

    .match-time { font-size: 17px; }

    .match-competition { font-size: 8px; letter-spacing: 0.5px; }

    .match-league-bar { padding: 6px 12px; }

    .match-league-name { font-size: 10px; letter-spacing: 1.5px; }

    .match-league-round { font-size: 9px; }

  }



  /* ── Risultati (score display nella pagina partite) ── */

  .match-score-display {

    font-family: var(--font-display);

    font-size: 30px;

    color: var(--blue);

    letter-spacing: 4px;

    text-align: center;

    flex-shrink: 0;

  }

  .match-score-display .win { color: var(--orange); }



  /* ── Esito partita giocata ── */

  .match-esito {

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 4px;

    flex-shrink: 0;

  }

  .esito-pill {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    font-family: var(--font-heading);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    padding: 5px 12px;

    border-radius: 20px;

  }

  .esito-pill::before {

    content: '';

    width: 7px; height: 7px;

    border-radius: 50%;

    flex-shrink: 0;

  }

  .esito-pill.win  { background: rgba(39,174,96,0.12);  color: #1E8449; border: 1px solid rgba(39,174,96,0.25); }

  .esito-pill.win::before  { background: #27AE60; }

  .esito-pill.loss { background: rgba(192,57,43,0.10); color: #C0392B; border: 1px solid rgba(192,57,43,0.2); }

  .esito-pill.loss::before { background: #E74C3C; }



  /* Standings Table */

  .standings-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

  .standings-table th {

    background: var(--blue);

    color: rgba(255,255,255,0.6);

    font-family: var(--font-heading);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    padding: 14px 16px;

    text-align: left;

  }

  .standings-table th:not(:first-child) { text-align: center; }

  .standings-table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-100); font-size: 14px; }

  .standings-table td:not(:first-child) { text-align: center; }

  .standings-table tr:last-child td { border-bottom: none; }

  .standings-table tr:hover td { background: var(--off-white); }

  .standings-table .us-row td { background: rgba(245,115,10,0.06); }

  .standings-table .us-row td:first-child { border-left: 3px solid var(--orange); }

  .standings-table .pos { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--gray-600); }

  .standings-table .team-n { font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.5px; color: var(--blue); }

  .standings-table .pts { font-family: var(--font-heading); font-weight: 700; color: var(--orange); font-size: 15px; }



  /* ═══════════════════════════════════════════

     PAGE: SOCIETA

  ═══════════════════════════════════════════ */

  .timeline { position: relative; padding-left: 32px; }

  .timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--orange), var(--blue)); }

  .timeline-item { position: relative; padding-bottom: 40px; }

  .timeline-dot {

    position: absolute;

    left: -39px;

    top: 4px;

    width: 14px; height: 14px;

    border-radius: 50%;

    background: var(--orange);

    border: 2px solid var(--white);

    box-shadow: 0 0 0 3px rgba(245,115,10,0.2);

  }

  .timeline-year {

    font-family: var(--font-display);

    font-size: 28px;

    color: var(--orange);

    letter-spacing: 2px;

    line-height: 1;

    margin-bottom: 8px;

  }

  .timeline-text { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

  .staff-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }

  .staff-card {

    background: var(--white);

    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 4px 20px rgba(0,0,0,0.08);

    text-align: center;

    transition: var(--transition);

  }

  .staff-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

  .staff-visual {

    height: 260px;

    background: linear-gradient(135deg, var(--blue), var(--dark));

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: var(--font-display);

    font-size: 56px;

    color: rgba(255,255,255,0.12);

    position: relative;

    overflow: hidden;

  }

  .staff-visual::after {

    content: '';

    position: absolute;

    bottom: 0; left: 0; right: 0;

    height: 4px;

    background: var(--orange);

  }

  .staff-body { padding: 20px; }

  .staff-name { font-family: var(--font-heading); font-size: 17px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); }

  .staff-role { font-family: var(--font-heading); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-top: 4px; }



  /* ═══════════════════════════════════════════

     PAGE: CONTATTI

  ═══════════════════════════════════════════ */

  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

  .contact-info-item {

    display: flex;

    gap: 16px;

    padding: 20px 0;

    border-bottom: 1px solid var(--gray-100);

  }

  .contact-icon {

    width: 44px; height: 44px;

    background: rgba(245,115,10,0.1);

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;

    flex-shrink: 0;

  }

  .contact-info-label { font-family: var(--font-heading); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }

  .contact-info-text { font-size: 15px; color: var(--gray-600); line-height: 1.5; }

  .contact-form { display: flex; flex-direction: column; gap: 16px; }

  .form-group { display: flex; flex-direction: column; gap: 6px; }

  .form-label { font-family: var(--font-heading); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); }

  .form-input, .form-textarea {

    padding: 14px 16px;

    border: 2px solid var(--gray-100);

    border-radius: 6px;

    font-family: var(--font-body);

    font-size: 15px;

    color: var(--gray-900);

    transition: border-color 0.2s;

    outline: none;

    background: var(--white);

    width: 100%;

  }

  .form-input:focus, .form-textarea:focus { border-color: var(--orange); }

  .form-textarea { resize: vertical; min-height: 120px; }

  .map-placeholder {

    background: linear-gradient(135deg, var(--blue) 0%, var(--dark) 100%);

    border-radius: 8px;

    height: 300px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 24px;

    position: relative;

    overflow: hidden;

    cursor: pointer;

    text-decoration: none;

  }

  .map-placeholder::before {

    content: '';

    position: absolute;

    inset: 0;

    background-image: radial-gradient(circle, rgba(245,115,10,0.08) 1px, transparent 1px);

    background-size: 24px 24px;

  }

  .map-icon { font-size: 48px; position: relative; z-index: 1; }

  .map-text {

    font-family: var(--font-heading);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: rgba(255,255,255,0.6);

    position: relative;

    z-index: 1;

  }



  /* ═══════════════════════════════════════════

     PAGE: SETTORE GIOVANILE (full)

  ═══════════════════════════════════════════ */

  .youth-full-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));

    gap: 24px;

  }

  .youth-team-card {

    background: var(--white);

    border-radius: 8px;

    overflow: hidden;

    box-shadow: var(--shadow-card);

    transition: var(--transition);

  }

  .youth-team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

  .youth-team-header {

    padding: 24px;

    background: var(--blue);

    position: relative;

  }

  .youth-team-age {

    font-family: var(--font-display);

    font-size: 52px;

    color: rgba(255,255,255,0.07);

    position: absolute;

    top: 8px; right: 16px;

    letter-spacing: 4px;

  }

  .youth-team-title { font-family: var(--font-heading); font-size: 22px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); position: relative; z-index: 1; }

  .youth-team-subtitle { font-family: var(--font-heading); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-top: 4px; position: relative; z-index: 1; }

  .youth-team-body { padding: 20px; }

  .youth-team-stat { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }

  .youth-team-stat:last-child { border-bottom: none; }

  .youth-team-stat-label { font-family: var(--font-heading); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-300); }

  .youth-team-stat-val { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--blue); }



  /* ═══════════════════════════════════════════

     PAGE: GALLERY

  ═══════════════════════════════════════════ */

  .gallery-full-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));

    gap: 12px;

  }

  .gallery-full-item {

    aspect-ratio: 4/3;

    border-radius: 6px;

    overflow: hidden;

    cursor: pointer;

    position: relative;

    background: linear-gradient(135deg, var(--blue) 0%, var(--dark) 100%);

    transition: var(--transition);

  }

  .gallery-full-item:hover { transform: scale(1.03); z-index: 2; box-shadow: var(--shadow-hover); }

  .gallery-full-inner {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background-image: radial-gradient(circle, rgba(245,115,10,0.06) 1px, transparent 1px);

    background-size: 16px 16px;

    font-family: var(--font-display);

    font-size: 48px;

    color: rgba(255,255,255,0.05);

  }

  .gallery-full-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to top, rgba(8,21,46,0.85) 0%, transparent 60%);

    opacity: 0;

    transition: var(--transition);

    display: flex;

    align-items: flex-end;

    padding: 16px;

  }

  .gallery-full-item:hover .gallery-full-overlay { opacity: 1; }



  /* ═══════════════════════════════════════════

     ISCRIZIONI CTA

  ═══════════════════════════════════════════ */

  .cta-banner {

    background: var(--orange);

    padding: 60px 0;

    position: relative;

    overflow: hidden;

  }

  .cta-banner::before {

    content: '';

    position: absolute;

    top: 0; right: 0; bottom: 0;

    width: 40%;

    background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.05) 20px, rgba(255,255,255,0.05) 21px);

  }

  .cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

  }

  .cta-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 60px); color: var(--white); letter-spacing: 3px; line-height: 0.95; text-transform: uppercase; }

  .cta-text { font-size: 16px; color: rgba(255,255,255,0.75); margin-top: 12px; max-width: 480px; line-height: 1.6; }

  .cta-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

  .btn--white { background: var(--white); color: var(--orange); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }

  .btn--white:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.25); }



  /* ═══════════════════════════════════════════

     PAGE: SPONSOR

  ═══════════════════════════════════════════ */

  .sponsor-tier { margin-bottom: 60px; }

  .sponsor-tier-title {

    font-family: var(--font-display);

    font-size: 36px;

    color: var(--blue);

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 8px;

  }

  .sponsor-tier-sep { width: 60px; height: 3px; background: var(--orange); border-radius: 2px; margin-bottom: 24px; }

  .sponsor-tier-grid { display: grid; gap: 16px; }

  .sponsor-tier-grid.main { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

  .sponsor-tier-grid.standard { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); align-items: stretch; }

  .sponsor-tier-grid.partner { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }

  /* ── Sponsor big card (colonna) ── */

  .sponsor-big-card {

    border: 2px solid var(--gray-100);

    border-radius: 10px;

    padding: 28px 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    gap: 16px;

    transition: var(--transition);

    cursor: pointer;

    background: var(--white);

  }

  .sponsor-big-card:hover {

    border-color: var(--orange);

    box-shadow: var(--shadow-card);

    transform: translateY(-4px);

  }



  /* Contenitore logo: altezza fissa + immagine contenuta */

  .sponsor-big-logo {

    width: 100%;

    height: 140px;

    border-radius: 8px;

    background: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border: 1px solid var(--gray-100);

    flex-shrink: 0;

  }

  .sponsor-big-logo img {

    max-width: 85%;

    max-height: 110px;

    width: auto;

    height: auto;

    object-fit: contain;

    display: block;

  }



  /* Main sponsor: logo più grande */

  .sponsor-tier-grid.main .sponsor-big-logo {

    height: 180px;

  }

  .sponsor-tier-grid.main .sponsor-big-logo img {

    max-height: 150px;

  }



  .sponsor-big-name {

    font-family: var(--font-heading);

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: var(--blue);

    line-height: 1.2;

  }

  .sponsor-big-type {

    font-family: var(--font-heading);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: var(--orange);

    margin-top: -8px;

  }

  .sponsor-big-desc { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

  /* ═══════════════════════════════════════════

     RESPONSIVE

  ═══════════════════════════════════════════ */

  /* ══════════════════════════════════════════

     RESPONSIVE 1024px

  ══════════════════════════════════════════ */

  @media (max-width: 1024px) {

    .news-grid { grid-template-columns: 1fr; }

    .news-sidebar { flex-direction: row; flex-wrap: wrap; }

    .news-card-small { flex: 1 1 260px; }

    .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }

    .gallery-item:first-child, .gallery-item:nth-child(4) { grid-column: auto; grid-row: auto; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

    .youth-inner { grid-template-columns: 1fr; gap: 40px; }

    .contact-grid { grid-template-columns: 1fr; gap: 40px; }

    .match-item { grid-template-columns: 68px 1fr 40px 1fr 120px; }

    .match-competition.campionato { display: none; }

    /* Inline 4-col stats → 2 col */

    [style*="repeat(4,1fr)"], [style*="repeat(4, 1fr)"] {

      grid-template-columns: repeat(2,1fr) !important;

    }

  }



  /* ══════════════════════════════════════════

     RESPONSIVE 768px

  ══════════════════════════════════════════ */

  @media (max-width: 768px) {

    :root { --nav-h: 60px; }



    /* ── Nav ── */

    .nav-inner { padding: 0 16px; }

    .nav-links, .nav-cta { display: none; }

    .nav-hamburger { display: flex; }



    /* ── Contenitori ── */

    .container { padding: 0 16px; }

    .section { padding: 48px 0; }



    /* ── Hero ── */

    .hero { min-height: 100svh; min-height: 100vh; display: flex; flex-direction: column; }

    .hero-content {

      padding: calc(var(--nav-h) + 32px) 16px 0;

      flex: 1;

      display: flex;

      flex-direction: column;

      justify-content: center;

    }

    .hero-title { font-size: clamp(100px, 12vw, 72px); letter-spacing: 2px; }

    .hero-sub { font-size: 15px; max-width: 100%; margin-bottom: 28px; }

    .hero-actions { flex-wrap: wrap; gap: 12px; }

    .hero-scroll { display: none; }

    /* Stats hero: era position:absolute, ora in fondo al flex */

    .hero-stats {

      position: static;

      display: flex;

      flex-wrap: nowrap;

      overflow-x: auto;

      -webkit-overflow-scrolling: touch;

      scrollbar-width: none;

      gap: 0;

      padding: 24px 16px 28px;

      background: rgba(0,0,0,0.3);

      border-top: 1px solid rgba(255,255,255,0.06);

      margin-top: auto;

    }

    .hero-stats::-webkit-scrollbar { display: none; }

    .hero-stat-item {

      flex: 0 0 auto;

      padding: 0 18px;

      border-right: 1px solid rgba(255,255,255,0.1);

    }

    .hero-stat-item:last-child { border-right: none; }

    .hero-stat-num { font-size: 28px; }

    .hero-stat-label { font-size: 9px; }



    /* ── Ticker ── */

    .ticker-label { font-size: 10px; padding: 0 12px; }

    .ticker-item { font-size: 11px; }



    /* ── Next game ── */

    .next-game { padding: 36px 0; }

    .next-game-inner {

      grid-template-columns: 1fr;

      gap: 16px;

      padding: 0 16px;

      text-align: center;

    }

    .ng-team { align-items: center; }

    .ng-team-logo { width: 60px; height: 60px; font-size: 20px; }

    .ng-vs { font-size: 36px; }

    .ng-time { font-size: 26px; }

    .countdown { gap: 8px; justify-content: center; }

    .countdown-item { min-width: 60px; padding: 10px 12px; }

    .countdown-num { font-size: 26px; }



    /* ── Section headers ── */

    .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }

    .section-title { font-size: clamp(30px, 8vw, 52px); }



    /* ── News ── */

    .news-full-grid { grid-template-columns: 1fr; }

    .news-sidebar { flex-direction: column; }

    .news-card-small { flex: 1 1 auto; }



    /* ── Teams ── */

    .teams-grid { grid-template-columns: 1fr 1fr; gap: 16px; }



    /* ── Risultati ── */

    .result-body { grid-template-columns: 1fr 130px 1fr; gap: 8px; padding: 14px 12px; }

    .result-score { font-size: 28px; }

    .result-team-name { font-size: 11px; letter-spacing: 0; }

    .result-team-logo { width: 34px; height: 34px; font-size: 11px; }

    .result-badge { display: none; }

    /* match mobile gestito nel @media 600px */



    /* match-body flex: override rimosso */



    /* ── Gallery ── */

    .gallery-grid, .gallery-full-grid { grid-template-columns: 1fr 1fr; }



    /* ── CTA ── */

    .cta-inner { flex-direction: column; gap: 24px; padding: 0 16px; }

    .cta-title { font-size: clamp(28px, 8vw, 44px); }

    .cta-actions { width: 100%; }

    .cta-actions .btn { width: 100%; text-align: center; justify-content: center; }



    /* ── Footer ── */

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }

    .footer-desc { max-width: 100%; }

    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 11px; }



    /* ── Page hero ── */

    .page-hero { padding: 88px 0 36px; }

    .page-hero-bg-text { font-size: 90px; opacity: 0.06; }

    .page-title { font-size: clamp(36px, 10vw, 64px); }

    .page-subtitle { font-size: 14px; max-width: 100%; }



    /* ── Tabs ── */

    .tab-btn { padding: 14px 14px; font-size: 12px; }



    /* ── Staff ── */

    .staff-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }



    /* ── Roster ── */

    .roster-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }



    /* ── Sponsor ── */

    .sponsor-big-card { flex-direction: column; text-align: center; padding: 24px 20px; }

    .sponsor-tier-grid.main { grid-template-columns: 1fr; }

    .sponsor-tier-grid.standard { grid-template-columns: 1fr 1fr; }



    /* ── Modal news ── */

    .news-modal { padding: 12px; align-items: flex-end; }

    .news-modal-inner { max-height: 92vh; border-radius: 16px 16px 0 0; }

    .news-modal-content { padding: 20px 16px; }

    .news-modal-title { font-size: 20px; }

    .news-modal-header { height: 120px; }



    /* ── Inline grids (tutti i 1fr 1fr con gap largo) ── */

    [style*="grid-template-columns:1fr 1fr"],

    [style*="grid-template-columns: 1fr 1fr"] {

      grid-template-columns: 1fr !important;

      gap: 28px !important;

    }

    /* Eccezione: griglie 2-col piccole (valori, metodologia) mantengono 2 col */

    [style*="grid-template-columns:1fr 1fr"][style*="gap:16px"],

    [style*="grid-template-columns:1fr 1fr"][style*="gap:12px"] {

      grid-template-columns: 1fr 1fr !important;

      gap: 12px !important;

    }

    /* 4-col stats → 2 col */

    [style*="repeat(4,1fr)"], [style*="repeat(4, 1fr)"] {

      grid-template-columns: repeat(2,1fr) !important;

      gap: 16px !important;

    }

  }



  /* ══════════════════════════════════════════

     RESPONSIVE 480px

  ══════════════════════════════════════════ */

  @media (max-width: 480px) {

    /* Hero */

    .hero-title { font-size: 100px; letter-spacing: 1px; }

    .hero-stat-num { font-size: 24px; }

    .hero-stat-item { padding: 0 14px; }

    .hero-actions .btn { width: 100%; text-align: center; }



    /* Next game */

    .countdown-item { min-width: 52px; padding: 8px 10px; }

    .countdown-num { font-size: 22px; }

    .ng-time { font-size: 22px; }

    .ng-team-logo { width: 52px; height: 52px; }



    /* Teams */

    .teams-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

    .team-card-visual { height: 130px; }

    .team-card-name { font-size: 18px; }



    /* Risultati su telefoni piccoli */

    .result-item { grid-template-columns: 1fr 110px 1fr; padding: 12px 10px; gap: 6px; }

    .result-score { font-size: 22px; }

    .result-team-logo { width: 28px; height: 28px; font-size: 10px; }

    .result-team-name { font-size: 9px; }

    .result-badge { display: none; } /* nascosto a 480: bordo colorato già comunica l'esito */



    /* Calendario */

    .match-item { grid-template-columns: 44px 1fr 26px 1fr; padding: 12px 10px; gap: 6px; }

    .match-day { font-size: 22px; }

    .match-month { font-size: 9px; }

    .match-team { font-size: 11px; }

    .match-vs { font-size: 9px; }



    /* Roster */

    .roster-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }

    .player-number { font-size: 60px; }

    .player-name { font-size: 12px; }



    /* Gallery */

    .gallery-full-grid { grid-template-columns: 1fr 1fr; gap: 8px; }

    .gallery-full-item { aspect-ratio: 1; }



    /* Staff */

    .staff-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }



    /* Page hero */

    .page-title { font-size: 34px; letter-spacing: 2px; }

    .page-hero-bg-text { display: none; }



    /* Tabs scroll */

    .tab-bar-inner { gap: 0; }

    .tab-btn { padding: 14px 12px; font-size: 11px; }



    /* 4-col stats rimangono 2-col */

    [style*="repeat(4,1fr)"], [style*="repeat(4, 1fr)"] {

      grid-template-columns: repeat(2,1fr) !important;

    }

    /* 1fr 1fr con gap grande → 1 col */

    [style*="grid-template-columns:1fr 1fr"],

    [style*="grid-template-columns: 1fr 1fr"] {

      grid-template-columns: 1fr !important;

    }

    /* piccole 2-col card → restano 2 col */

    [style*="grid-template-columns:1fr 1fr"][style*="gap:16px"],

    [style*="grid-template-columns:1fr 1fr"][style*="gap:12px"] {

      grid-template-columns: 1fr 1fr !important;

    }

  }

  /* ═══════════════════════════════════════════

     MOBILE FIXES — SAFE OVERRIDES

  ═══════════════════════════════════════════ */

  .mobile-menu { z-index: 1001; }



  @media (max-width: 1024px) {

    /* match-body usa flex — nessun override grid necessario */

  }



  @media (max-width: 768px) {

    .mobile-menu {

      justify-content: flex-start;

      padding: calc(var(--nav-h) + 20px) 24px 32px;

      overflow-y: auto;

      overscroll-behavior: contain;

    }

    .mobile-menu .mobile-link {

      font-size: clamp(30px, 10vw, 40px);

      text-align: center;

      width: 100%;

    }



    /* match-body usa flex: il responsive è gestito dal @media 600px nel CSS principale */

  }



  @media (max-width: 480px) {

    .mobile-menu { padding-inline: 16px; }



    /* match-body 480 — gestito nel CSS principale @media 600px */



    .hero-actions .btn {

      justify-content: center;

    }

    .hero-actions {

      display: grid;

      grid-template-columns: 1fr;

      gap: 12px;

      width: 100%;

      max-width: 100%;

    }

    .hero-actions .btn,

    .hero-actions .hero-mobile-cta {

      width: 100%;

      justify-content: center;

      text-align: center;

      display: inline-flex;

      align-items: center;

      min-height: 58px;

      padding-inline: 18px;

    }

    .hero-mobile-cta {

      border: 2px solid rgba(255,255,255,0.22);

      background: rgba(255,255,255,0.06);

      color: var(--white);

      box-shadow: 0 8px 28px rgba(0,0,0,0.18);

    }

    .hero-mobile-cta:hover {

      background: rgba(255,255,255,0.1);

      border-color: rgba(255,255,255,0.35);

      transform: translateY(-2px);

    }

    .hero-pattern {

      display: flex;

      align-items: center;

      justify-content: center;

      pointer-events: none;

    }

    .hero-pattern img {

      display: block;

      width: min(92vw, 560px) !important;

      max-width: 92%;

      height: auto;

      margin: 0 auto;

      object-fit: contain;

      opacity: 0.7;

      transform: none !important;

    }

  }



  /* ═══════════════════════════════════════════

     FIP / DATA STATES

  ═══════════════════════════════════════════ */

  .fip-loading {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 32px 0;

    color: rgba(255,255,255,0.4);

    font-family: var(--font-heading);

    font-size: 13px;

    letter-spacing: 2px;

    text-transform: uppercase;

    justify-content: center;

  }

  .section--dark .fip-loading { color: rgba(255,255,255,0.4); }

  .fip-loading:not(.section--dark .fip-loading) { color: var(--gray-600); }

  .fip-spinner {

    width: 20px; height: 20px;

    border: 2px solid rgba(245,115,10,0.3);

    border-top-color: var(--orange);

    border-radius: 50%;

    animation: spin 0.8s linear infinite;

    flex-shrink: 0;

  }

  @keyframes spin { to { transform: rotate(360deg); } }

  .fip-error {

    background: rgba(235,87,87,0.08);

    border: 1px solid rgba(235,87,87,0.2);

    border-radius: 8px;

    padding: 28px;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

  }

  .fip-error span { font-size: 28px; }

  .fip-error p { font-family: var(--font-heading); font-size: 15px; font-weight: 600; color: var(--gray-900); }

  .fip-error small { font-size: 12px; color: var(--gray-600); }

  .fip-error code { background: var(--off-white); padding: 2px 6px; border-radius: 3px; font-size: 11px; }

  .fip-source {

    font-family: var(--font-body);

    font-size: 12px;

    color: var(--gray-300);

    margin-top: 12px;

    text-align: right;

  }

  .fip-source a { color: var(--orange); }

  .no-data {

    font-family: var(--font-heading);

    font-size: 14px;

    letter-spacing: 1px;

    color: rgba(255,255,255,0.35);

    text-align: center;

    padding: 32px 0;

  }

  /* Trasferta badge nella next-game */

  .ng-away-badge {

    display: inline-block;

    font-family: var(--font-heading);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    background: rgba(245,115,10,0.2);

    color: var(--orange);

    border: 1px solid rgba(245,115,10,0.4);

    padding: 2px 8px;

    border-radius: 2px;

    margin-left: 6px;

    vertical-align: middle;

  }

  /* Countdown live */

  .countdown-live {

    font-family: var(--font-heading);

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: var(--orange);

    animation: pulse 1s ease-in-out infinite;

    padding: 16px 0;

  }

  @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }



  /* ═══════════════════════════════════════════

     NEXT GAME MOBILE LAYOUT FIX

  ═══════════════════════════════════════════ */

  .next-game-inner--balanced {

    grid-template-columns: 1fr auto 1fr;

    grid-template-areas:

      "teamA meta teamB";

    align-items: center;

  }

  .ng-team-a { grid-area: teamA; }

  .ng-team-b { grid-area: teamB; }

  .ng-center-top { display: none; }

  .ng-meta {

    grid-area: meta;

    text-align: center;

    min-width: 0;

  }

  .ng-meta .countdown {

    justify-content: center;

  }



  @media (max-width: 768px) {

    .next-game-inner--balanced {

      grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);

      grid-template-areas:

        "teamA vs teamB"

        "meta meta meta";

      gap: 14px 10px;

      align-items: start;

    }

    .ng-center-top {

      grid-area: vs;

      display: flex;

      align-items: center;

      justify-content: center;

      align-self: center;

      min-width: 38px;

      padding-top: 2px;

    }

    .ng-meta {

      margin-top: 2px;

      padding-top: 2px;

    }

    .ng-team {

      gap: 8px;

      min-width: 0;

    }

    .ng-team-name {

      font-size: 13px;

      letter-spacing: 1.2px;

      line-height: 1.2;

      white-space: normal;

      text-wrap: balance;

      overflow: visible;

      text-overflow: clip;

      max-width: 100%;

    }

    .ng-vs {

      font-size: 28px;

      letter-spacing: 2px;

      margin: 0;

    }

    .ng-date {

      margin-top: 0;

      font-size: 13px;

      line-height: 1.35;

      letter-spacing: 1.5px;

    }

    .ng-time {

      font-size: 28px;

      margin-top: 8px;

    }

    .ng-location {

      font-size: 13px;

      line-height: 1.35;

      margin-top: 8px;

    }

    .countdown {

      flex-wrap: wrap;

      row-gap: 8px;

      column-gap: 8px;

      margin: 18px 0 0;

    }

    .countdown-item {

      min-width: 58px;

      padding: 10px 10px;

    }

  }



  @media (max-width: 480px) {

    .next-game-inner--balanced {

      gap: 12px 8px;

      padding: 0 14px;

    }

    .ng-team-logo {

      width: 56px;

      height: 56px;

      font-size: 20px;

    }

    .ng-team-name {

      font-size: 12px;

      letter-spacing: 1px;

    }

    .ng-vs {

      font-size: 24px;

    }

    .ng-date {

      font-size: 12px;

      letter-spacing: 1.2px;

    }

    .ng-time {

      font-size: 24px;

    }

    .countdown {

      display: grid;

      grid-template-columns: repeat(4, minmax(0, 1fr));

      gap: 8px;

      width: 100%;

    }

    .countdown-item {

      min-width: 0;

      width: 100%;

      padding: 8px 6px;

    }

    .countdown-num {

      font-size: 22px;

    }

    .countdown-label {

      font-size: 9px;

      letter-spacing: 1.4px;

    }

  }



  /* ═══════════════════════════════════════════

     NEWS MODAL

  ═══════════════════════════════════════════ */

  .news-modal {

    position: fixed;

    inset: 0;

    z-index: 2000;

    background: rgba(8,21,46,0.85);

    backdrop-filter: blur(8px);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    opacity: 0;

    pointer-events: none;

    transition: opacity 0.3s ease;

  }

  .news-modal.open { opacity: 1; pointer-events: all; }

  .news-modal-inner {

    background: var(--white);

    border-radius: 12px;

    max-width: 720px;

    width: 100%;

    max-height: 90vh;

    overflow-y: auto;

    animation: modalSlide 0.35s ease;

    box-shadow: 0 40px 100px rgba(0,0,0,0.5);

  }

  @keyframes modalSlide { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

  .news-modal-header {

    height: 180px;

    border-radius: 12px 12px 0 0;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    padding: 20px;

    position: relative;

  }

  .news-modal-close {

    width: 36px; height: 36px;

    border-radius: 50%;

    background: rgba(255,255,255,0.15);

    border: 1px solid rgba(255,255,255,0.2);

    color: var(--white);

    font-size: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: var(--transition);

    flex-shrink: 0;

    margin-left: auto;

  }

  .news-modal-close:hover { background: rgba(255,255,255,0.3); }

  .news-modal-content { padding: 32px; }

  .news-modal-date {

    font-family: var(--font-heading);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: var(--gray-300);

    margin-bottom: 12px;

  }

  .news-modal-title {

    font-family: var(--font-heading);

    font-size: 26px;

    font-weight: 700;

    line-height: 1.2;

    color: var(--blue);

    margin-bottom: 20px;

  }

  .news-modal-body-text {

    font-size: 16px;

    color: var(--gray-600);

    line-height: 1.8;

  }



  /* ═══════════════════════════════════════════

     LIGHTBOX GALLERY

  ═══════════════════════════════════════════ */

  .gallery-full-item {

    position: relative;

    cursor: pointer;

    overflow: hidden;

    border-radius: 8px;

    background: var(--dark);

    aspect-ratio: 1;

  }

  .gallery-full-item:hover .gallery-upload-hint { opacity: 1; }



  /* Stato "nessuna foto": mostra istruzione upload */

  .gallery-no-photo {

    width: 100%; height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: linear-gradient(135deg, var(--blue) 0%, var(--dark) 100%);

    color: rgba(255,255,255,0.3);

    font-family: var(--font-heading);

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;

    gap: 8px;

    pointer-events: none;

  }

  .gallery-no-photo-icon { font-size: 32px; opacity: 0.4; }

  .gallery-upload-hint {

    position: absolute;

    inset: 0;

    background: rgba(245,115,10,0.85);

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: var(--font-heading);

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--white);

    opacity: 0;

    transition: opacity 0.3s;

    cursor: pointer;

  }



  /* LIGHTBOX */

  .lightbox {

    position: fixed;

    inset: 0;

    z-index: 3000;

    background: rgba(8, 21, 46, 0.97);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    pointer-events: none;

    transition: opacity 0.3s ease;

    padding: 20px;

  }

  .lightbox.open { opacity: 1; pointer-events: all; }



  .lightbox-inner {

    position: relative;

    max-width: 1100px;

    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 16px;

  }

  .lightbox-top {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 4px;

  }

  .lightbox-counter {

    font-family: var(--font-heading);

    font-size: 12px;

    letter-spacing: 3px;

    color: rgba(255,255,255,0.4);

    text-transform: uppercase;

  }

  .lightbox-close {

    width: 40px; height: 40px;

    border-radius: 50%;

    background: rgba(255,255,255,0.1);

    border: 1px solid rgba(255,255,255,0.2);

    color: var(--white);

    font-size: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: var(--transition);

    flex-shrink: 0;

  }

  .lightbox-close:hover { background: var(--orange); border-color: var(--orange); }



  .lightbox-stage {

    width: 100%;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 300px;

    max-height: 70vh;

  }

  .lightbox-img {

    max-width: 100%;

    max-height: 70vh;

    object-fit: contain;

    border-radius: 6px;

    display: block;

    animation: lbFadeIn 0.25s ease;

  }

  @keyframes lbFadeIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }



  /* Placeholder quando la foto non è stata ancora caricata */

  .lightbox-placeholder {

    width: 100%;

    max-height: 70vh;

    min-height: 320px;

    border-radius: 6px;

    background: linear-gradient(135deg, var(--blue) 0%, var(--dark) 100%);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 16px;

    border: 2px dashed rgba(245,115,10,0.3);

    padding: 40px;

    animation: lbFadeIn 0.25s ease;

  }

  .lightbox-placeholder-icon { font-size: 64px; opacity: 0.35; }

  .lightbox-placeholder-title {

    font-family: var(--font-display);

    font-size: 24px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: rgba(255,255,255,0.7);

  }

  .lightbox-placeholder-sub {

    font-family: var(--font-heading);

    font-size: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: rgba(255,255,255,0.3);

    text-align: center;

    max-width: 320px;

    line-height: 1.6;

  }

  .lightbox-placeholder-path {

    font-family: monospace;

    font-size: 12px;

    color: var(--orange);

    background: rgba(245,115,10,0.1);

    padding: 6px 14px;

    border-radius: 4px;

    border: 1px solid rgba(245,115,10,0.3);

  }



  .lightbox-nav {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 48px; height: 48px;

    border-radius: 50%;

    background: rgba(255,255,255,0.1);

    border: 1px solid rgba(255,255,255,0.2);

    color: var(--white);

    font-size: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: var(--transition);

    z-index: 1;

    user-select: none;

  }

  .lightbox-nav:hover { background: var(--orange); border-color: var(--orange); }

  .lightbox-prev { left: -24px; }

  .lightbox-next { right: -24px; }

  @media (max-width: 768px) {

    .lightbox-prev { left: 4px; }

    .lightbox-next { right: 4px; }

  }



  .lightbox-caption {

    font-family: var(--font-heading);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: rgba(255,255,255,0.6);

    text-align: center;

  }

  .lightbox-dots {

    display: flex;

    gap: 6px;

    flex-wrap: wrap;

    justify-content: center;

    max-width: 300px;

  }

  .lightbox-dot {

    width: 6px; height: 6px;

    border-radius: 50%;

    background: rgba(255,255,255,0.2);

    cursor: pointer;

    transition: var(--transition);

    flex-shrink: 0;

  }

  .lightbox-dot.active { background: var(--orange); transform: scale(1.4); }



 /* ══════════════════════════════════════════

     STORE PAGE

  ══════════════════════════════════════════ */



  /* Nav store highlight */

  .store-nav-link { color: var(--orange) !important; }

  .store-nav-link.active { color: var(--orange) !important; }

  .store-mobile-link { color: var(--orange) !important; font-weight: 700; }



  /* Hero store */

  .store-hero {

    background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 60%, var(--blue-mid) 100%);

    padding: calc(var(--nav-h) + 64px) 0 64px;

    text-align: center;

    position: relative;

    overflow: hidden;

  }

  .store-hero::before {

    content: 'STORE';

    position: absolute;

    font-family: var(--font-display);

    font-size: clamp(120px, 25vw, 260px);

    color: rgba(255,255,255,0.04);

    top: 50%; left: 50%;

    transform: translate(-50%,-50%);

    white-space: nowrap;

    pointer-events: none;

    letter-spacing: 20px;

  }

  .store-hero-eyebrow {

    font-family: var(--font-heading);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 5px;

    text-transform: uppercase;

    color: var(--orange);

    margin-bottom: 16px;

  }

  .store-hero-title {

    font-family: var(--font-display);

    font-size: clamp(52px, 8vw, 96px);

    color: var(--white);

    line-height: 0.95;

    margin-bottom: 20px;

    letter-spacing: 2px;

  }

  .store-hero-sub {

    font-family: var(--font-body);

    font-size: 17px;

    color: rgba(255,255,255,0.65);

    max-width: 520px;

    margin: 0 auto 36px;

    line-height: 1.6;

  }

  .store-hero-cta {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: var(--orange);

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    padding: 16px 36px;

    border-radius: 4px;

    text-decoration: none;

    transition: var(--transition);

    box-shadow: 0 8px 32px rgba(245,115,10,0.4);

  }

  .store-hero-cta:hover {

    background: var(--orange-light);

    transform: translateY(-3px);

    box-shadow: 0 16px 40px rgba(245,115,10,0.5);

    color: var(--white);

  }

  .store-hero-cta .arrow { transition: transform 0.3s; }

  .store-hero-cta:hover .arrow { transform: translateX(5px); }



  /* Banner acquisto sticky */

  .store-buy-banner {

    background: var(--orange);

    padding: 14px 0;

    position: sticky;

    top: var(--nav-h);

    z-index: 200;

    box-shadow: 0 4px 20px rgba(245,115,10,0.35);

  }

  .store-buy-banner-inner {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

  }

  .store-buy-banner-text {

    font-family: var(--font-heading);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--white);

  }

  .store-buy-banner-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: var(--white);

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    padding: 8px 22px;

    border-radius: 3px;

    text-decoration: none;

    transition: var(--transition);

  }

  .store-buy-banner-link:hover {

    background: var(--dark);

    color: var(--white);

  }



  /* Categoria tabs */

  .store-cats {

    display: flex;

    gap: 8px;

    flex-wrap: wrap;

    margin-bottom: 36px;

  }

  .store-cat-btn {

    font-family: var(--font-heading);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    padding: 8px 20px;

    border-radius: 3px;

    border: 2px solid var(--gray-100);

    background: transparent;

    color: var(--gray-600);

    cursor: pointer;

    transition: var(--transition);

  }

  .store-cat-btn:hover,

  .store-cat-btn.active {

    background: var(--blue);

    border-color: var(--blue);

    color: var(--white);

  }



  /* Griglia prodotti */

  .store-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;

  }



  /* Product card */

  .product-card {

    background: var(--white);

    border: 1px solid var(--gray-100);

    border-radius: 10px;

    overflow: hidden;

    transition: var(--transition);

    display: flex;

    flex-direction: column;

    cursor: pointer;

  }

  .product-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 48px rgba(10,42,110,0.14);

    border-color: var(--orange);

  }

  .product-card-img {

    aspect-ratio: 1 / 1;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    overflow: hidden;

  }

  .product-card-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

  }

  .product-card:hover .product-card-img img { transform: scale(1.05); }

  .product-img-placeholder {

    width: 100%;

    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 12px;

    font-family: var(--font-display);

    font-size: 48px;

    color: rgba(255,255,255,0.6);

  }

  .product-img-placeholder span {

    font-family: var(--font-heading);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: rgba(255,255,255,0.5);

  }

  .product-badge {

    position: absolute;

    top: 12px;

    left: 12px;

    font-family: var(--font-heading);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    padding: 4px 10px;

    border-radius: 2px;

  }

  .product-badge.new { background: var(--orange); color: var(--white); }

  .product-badge.limited { background: var(--blue); color: var(--white); }

  .product-badge.bestseller { background: #27AE60; color: var(--white); }



  .product-card-body {

    padding: 18px 18px 20px;

    flex: 1;

    display: flex;

    flex-direction: column;

    gap: 6px;

  }

  .product-cat-tag {

    font-family: var(--font-heading);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;

    color: var(--orange);

  }

  .product-name {

    font-family: var(--font-heading);

    font-size: 17px;

    font-weight: 700;

    letter-spacing: 0.5px;

    color: var(--blue);

    text-transform: uppercase;

    line-height: 1.2;

  }

  .product-desc {

    font-family: var(--font-body);

    font-size: 13px;

    color: var(--gray-600);

    line-height: 1.5;

    flex: 1;

  }

  .product-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 14px;

    border-top: 1px solid var(--gray-100);

    margin-top: 8px;

  }

  .product-price {

    font-family: var(--font-display);

    font-size: 26px;

    color: var(--blue);

    letter-spacing: 1px;

    line-height: 1;

  }

  .product-price sup {

    font-family: var(--font-heading);

    font-size: 14px;

    font-weight: 700;

    vertical-align: super;

    letter-spacing: 0;

  }

  .product-buy-btn {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    background: var(--blue);

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    padding: 9px 16px;

    border-radius: 3px;

    text-decoration: none;

    transition: var(--transition);

    white-space: nowrap;

  }

  .product-buy-btn:hover {

    background: var(--orange);

    color: var(--white);

    transform: translateX(2px);

  }



  /* CTA section fondo */

  .store-cta-section {

    background: linear-gradient(135deg, var(--blue) 0%, var(--dark) 100%);

    padding: 72px 0;

    text-align: center;

    margin-top: 64px;

    position: relative;

    overflow: hidden;

  }

  .store-cta-section::before {

    content: '';

    position: absolute;

    inset: 0;

    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") repeat;

  }

  .store-cta-title {

    font-family: var(--font-display);

    font-size: clamp(36px, 5vw, 60px);

    color: var(--white);

    letter-spacing: 2px;

    margin-bottom: 14px;

    position: relative;

  }

  .store-cta-sub {

    font-family: var(--font-body);

    font-size: 16px;

    color: rgba(255,255,255,0.6);

    margin-bottom: 36px;

    position: relative;

  }

  .store-cta-btns {

    display: flex;

    gap: 16px;

    justify-content: center;

    flex-wrap: wrap;

    position: relative;

  }



  /* Responsive */

  @media (max-width: 1024px) {

    .store-grid { grid-template-columns: repeat(3, 1fr); }

  }

  @media (max-width: 768px) {

    .store-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .store-buy-banner-inner { gap: 12px; }

  }

  @media (max-width: 480px) {

    .store-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

    .product-card-body { padding: 12px 12px 14px; }

    .product-name { font-size: 14px; }

    .product-price { font-size: 22px; }

    .product-buy-btn { font-size: 10px; padding: 7px 12px; }

  }





  /* ── Iscriviti ora nel hero (sia desktop che mobile) ── */

  .hero-iscriviti {

    font-family: var(--font-heading);

    font-size: 13px; font-weight: 700;

    letter-spacing: 1.5px; text-transform: uppercase;

    background: rgba(255,255,255,0.12);

    border: 2px solid rgba(255,255,255,0.3);

    color: var(--white);

    padding: 14px 28px;

    border-radius: var(--radius);

    cursor: pointer;

    transition: var(--transition);

    display: inline-flex; align-items: center;

    text-decoration: none;

  }

  .hero-iscriviti:hover {

    background: var(--orange);

    border-color: var(--orange);

    color: var(--white);

    transform: translateY(-2px);

    box-shadow: 0 8px 24px rgba(245,115,10,0.4);

  }





  /* ── Giovanile: filtro centri su mobile ── */

  .centro-tabs {

    display: none; /* nascosto su desktop */

    gap: 8px;

    flex-wrap: wrap;

    margin-bottom: 24px;

  }

  .centro-tab-btn {

    font-family: var(--font-heading);

    font-size: 11px; font-weight: 700;

    letter-spacing: 2px; text-transform: uppercase;

    padding: 8px 16px;

    border-radius: 4px;

    border: 2px solid var(--gray-100);

    background: transparent;

    color: var(--blue);

    cursor: pointer;

    transition: var(--transition);

    flex: 1;

    text-align: center;

  }

  .centro-tab-btn.active,

  .centro-tab-btn:hover {

    background: var(--blue);

    border-color: var(--blue);

    color: var(--white);

  }



  /* ── Centro sections: spacing interno ── */

  .centro-section { margin-bottom: 48px; padding-top: 8px; }

  .centro-section:not(:first-of-type) { margin-top: 0; }

  .centro-section .section-title { margin-top: 0; }



  @media (max-width: 768px) {

    .centro-tabs { display: flex; }

    .centro-section { display: none; margin-bottom: 24px; }

    .centro-section.active { display: block; }

  }





  /* ══════════════════════════════════════════

     GALLERY — SISTEMA AD ALBUM

  ══════════════════════════════════════════ */



  /* Card album (griglia eventi) */

  .album-card {

    position: relative;

    border-radius: 10px;

    overflow: hidden;

    cursor: pointer;

    aspect-ratio: 4/3;

    background: var(--blue);

    box-shadow: 0 4px 20px rgba(0,0,0,0.15);

    transition: var(--transition);

  }

  .album-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }

  .album-cover {

    width: 100%; height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;

  }

  .album-card:hover .album-cover { transform: scale(1.06); }

  .album-placeholder {

    width: 100%; height: 100%;

    display: flex; flex-direction: column;

    align-items: center; justify-content: center;

    gap: 8px;

    background: linear-gradient(135deg, var(--blue) 0%, var(--dark) 100%);

    font-size: 48px;

  }

  .album-placeholder-label {

    font-family: var(--font-heading);

    font-size: 10px; font-weight: 700;

    letter-spacing: 2px; text-transform: uppercase;

    color: rgba(255,255,255,0.4);

  }

  .album-overlay {

    position: absolute; inset: 0;

    background: linear-gradient(to top, rgba(8,21,46,0.92) 0%, rgba(8,21,46,0.2) 55%, transparent 100%);

    display: flex; flex-direction: column;

    justify-content: flex-end;

    padding: 20px;

    transition: var(--transition);

  }

  .album-cat-tag {

    font-family: var(--font-heading);

    font-size: 9px; font-weight: 700;

    letter-spacing: 3px; text-transform: uppercase;

    color: var(--orange);

    margin-bottom: 6px;

  }

  .album-title {

    font-family: var(--font-heading);

    font-size: 17px; font-weight: 700;

    letter-spacing: 0.5px; text-transform: uppercase;

    color: var(--white);

    line-height: 1.2;

    margin-bottom: 8px;

  }

  .album-meta {

    display: flex; align-items: center; justify-content: space-between;

  }

  .album-count {

    font-family: var(--font-heading);

    font-size: 10px; font-weight: 600;

    letter-spacing: 2px; text-transform: uppercase;

    color: rgba(255,255,255,0.5);

  }

  .album-open-btn {

    font-family: var(--font-heading);

    font-size: 10px; font-weight: 700;

    letter-spacing: 1.5px; text-transform: uppercase;

    color: var(--white);

    background: var(--orange);

    padding: 5px 12px; border-radius: 3px;

    opacity: 0;

    transform: translateY(4px);

    transition: var(--transition);

  }

  .album-card:hover .album-open-btn { opacity: 1; transform: translateY(0); }



  /* Modal album */

  .album-modal {

    position: fixed; inset: 0;

    z-index: 2500;

    background: rgba(8,21,46,0.96);

    display: flex; flex-direction: column;

    opacity: 0; pointer-events: none;

    transition: opacity 0.3s ease;

    overflow-y: auto;

  }

  .album-modal.open { opacity: 1; pointer-events: all; }

  .album-modal-header {

    position: sticky; top: 0; z-index: 10;

    background: rgba(8,21,46,0.98);

    border-bottom: 1px solid rgba(255,255,255,0.08);

    display: flex; align-items: center; justify-content: space-between;

    padding: 16px 32px;

    backdrop-filter: blur(12px);

    flex-shrink: 0;

  }

  .album-modal-title {

    font-family: var(--font-display);

    font-size: 28px; letter-spacing: 2px; text-transform: uppercase;

    color: var(--white);

  }

  .album-modal-subtitle {

    font-family: var(--font-heading);

    font-size: 11px; font-weight: 600;

    letter-spacing: 3px; text-transform: uppercase;

    color: var(--orange);

    margin-top: 2px;

  }

  .album-modal-close {

    width: 44px; height: 44px;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.15);

    color: var(--white); font-size: 20px;

    display: flex; align-items: center; justify-content: center;

    cursor: pointer; transition: var(--transition);

    flex-shrink: 0;

  }

  .album-modal-close:hover { background: var(--orange); border-color: var(--orange); }

  .album-modal-body {

    padding: 32px;

    flex: 1;

  }

  .album-photos-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));

    gap: 12px;

  }

  .album-photo-thumb {

    aspect-ratio: 4/3;

    border-radius: 8px;

    overflow: hidden;

    cursor: pointer;

    position: relative;

    background: var(--blue);

    transition: var(--transition);

  }

  .album-photo-thumb:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }

  .album-photo-thumb img {

    width: 100%; height: 100%;

    object-fit: cover; display: block;

    transition: transform 0.4s ease;

  }

  .album-photo-thumb:hover img { transform: scale(1.08); }

  .album-photo-placeholder {

    width: 100%; height: 100%;

    display: flex; flex-direction: column;

    align-items: center; justify-content: center;

    gap: 6px;

    background: linear-gradient(135deg, var(--blue-mid), var(--dark));

    color: rgba(255,255,255,0.3);

    font-size: 28px;

  }

  .album-photo-placeholder span {

    font-family: var(--font-heading);

    font-size: 9px; letter-spacing: 2px; text-transform: uppercase;

  }

  .album-photo-hover {

    position: absolute; inset: 0;

    background: rgba(8,21,46,0.5);

    display: flex; align-items: center; justify-content: center;

    opacity: 0; transition: var(--transition);

    font-size: 28px;

  }

  .album-photo-thumb:hover .album-photo-hover { opacity: 1; }



  @media (max-width: 600px) {

    .album-modal-header { padding: 14px 16px; }

    .album-modal-title { font-size: 20px; }

    .album-modal-body { padding: 16px; }

    .album-photos-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

    .album-title { font-size: 14px; }

  }




  /* ═══════════════════════════════════════════
     SPONSOR MARQUEE — logo wall scorrevole
  ═══════════════════════════════════════════ */
  .sponsor-strip {
    background: #ffffff;
    padding: 60px 0 56px;
    overflow: hidden;
    position: relative;
  }
  /* Sfumature laterali che mascherano il loop */
  .sponsor-strip::before,
  .sponsor-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
  }
  .sponsor-strip::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
  }
  .sponsor-strip::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
  }
  .sponsor-marquee-wrap {
    overflow: hidden;
    width: 100%;
  }
  .sponsor-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: sponsorScroll 32s linear infinite;
  }
  /* Pausa al hover sulla strip */
  .sponsor-strip:hover .sponsor-marquee-track {
    animation-play-state: paused;
  }
  @keyframes sponsorScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .sponsor-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 64px;
    height: 100px;
    border-right: 1px solid #E8E8E8;
    cursor: pointer;
    flex-shrink: 0;
  }
  .sponsor-logo-item img {
    max-height: 68px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(1);
    opacity: 0.30;
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.3s ease;
  }
  .sponsor-logo-item:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
  }
  /* Nasconde il vecchio .sponsors-grid se rimane nel DOM */
  .sponsors-grid { display: none !important; }
  .sponsor-card  { display: none !important; }

  @media (max-width: 640px) {
    .sponsor-logo-item {
      padding: 0 28px;
      height: 80px;
    }
    .sponsor-logo-item img {
      max-height: 48px;
      max-width: 130px;
    }
    .sponsor-strip::before,
    .sponsor-strip::after {
      width: 60px;
    }
  }
  
  /* ═══════════════════════════════════════════
   DROPDOWN MENU — EVENTI
═══════════════════════════════════════════ */

.nav-link-dropdown {
  position: relative;
}

.nav-dropdown-arrow {
  font-size: 10px;
  margin-left: 3px;
  transition: transform 0.25s ease;
  display: inline-block;
}

.nav-link-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(7, 38, 97, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  min-width: 230px;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  list-style: none;
}

/* Triangolino freccia sopra */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(7, 38, 97, 0.98);
}

.nav-link-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.nav-dropdown-item:hover {
  color: var(--orange);
  border-left-color: var(--orange);
  background: rgba(245, 115, 10, 0.1);
}

.nav-dropdown-icon {
  font-size: 15px;
}

.nav-dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 4px 0;
}


/* ═══════════════════════════════════════════
   MOBILE MENU — EVENTI SUB-VOCI
═══════════════════════════════════════════ */

.mobile-eventi-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.mobile-link-eventi {
  cursor: pointer;
  user-select: none;
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.mobile-eventi-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.mobile-eventi-sub {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  width: 100%;
}

.mobile-eventi-sub.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.mobile-sub-link {
  font-family: var(--font-heading);
  font-size: 22px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  padding: 4px 0;
}

.mobile-sub-link:hover {
  color: var(--orange);
}


/* ═══════════════════════════════════════════
   PAGE — EVENTI (lista tornei)
═══════════════════════════════════════════ */

.eventi-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 60px) 0 70px;
  position: relative;
  overflow: hidden;
}

.eventi-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(245,115,10,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(10,42,110,0.5) 0%, transparent 50%);
}

.eventi-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.eventi-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.eventi-hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--orange);
}

.eventi-hero-eyebrow-text {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
}

.eventi-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.eventi-hero h1 strong {
  color: var(--orange);
}

.eventi-hero-desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.6;
}


/* ─── Filtri tornei ─── */
.eventi-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 32px 0 0;
}

.eventi-filter-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}

.eventi-filter-btn:hover,
.eventi-filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}


/* ─── Grid tornei ─── */
.tornei-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  padding-top: 40px;
}

.torneo-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}

.torneo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.torneo-card-visual {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.torneo-card-visual-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}

.torneo-card-visual-bg.orange-gradient {
  background: radial-gradient(ellipse at 60% 40%, var(--orange) 0%, var(--dark) 70%);
}

.torneo-card-visual-bg.blue-gradient {
  background: radial-gradient(ellipse at 40% 60%, var(--blue-light) 0%, var(--dark) 70%);
}

.torneo-card-visual-bg.dark-gradient {
  background: radial-gradient(ellipse at 50% 50%, #1a1a2e 0%, var(--dark) 70%);
}

.torneo-card-icon-big {
  font-size: 64px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}

.torneo-card-status {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  color: var(--white);
}

.torneo-card-status.aperte {
  background: #22c55e;
  box-shadow: 0 0 16px rgba(34,197,94,0.5);
}

.torneo-card-status.prossimo {
  background: var(--orange);
  box-shadow: 0 0 16px rgba(245,115,10,0.5);
}

.torneo-card-status.passato {
  background: var(--gray-600);
}

.torneo-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.torneo-card-category {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
}

.torneo-card-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  line-height: 1.1;
}

.torneo-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}

.torneo-card-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-600);
}

.torneo-card-meta-item span:first-child {
  font-size: 14px;
}

.torneo-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.torneo-card-teams {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gray-600);
}

.torneo-card-cta {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
}

.torneo-card:hover .torneo-card-cta {
  gap: 8px;
}


/* ═══════════════════════════════════════════
   PAGE — SINGOLO TORNEO
═══════════════════════════════════════════ */

.torneo-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 60px) 0 70px;
  position: relative;
  overflow: hidden;
}

.torneo-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.torneo-hero-deco::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(245,115,10,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(10,42,110,0.5) 0%, transparent 50%);
}

.torneo-hero-deco-icon {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(120px, 18vw, 220px);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

.torneo-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.torneo-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.3s ease;
  margin-bottom: 28px;
  padding: 0;
  background: none;
  border: none;
}

.torneo-back-btn:hover { color: var(--orange); }

.torneo-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.torneo-hero-eyebrow-line {
  width: 36px; height: 2px;
  background: var(--orange);
}

.torneo-hero-eyebrow-text {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
}

.torneo-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.92;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.torneo-hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.torneo-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.torneo-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.torneo-badge .badge-icon {
  font-size: 15px;
}

.torneo-badge.highlight {
  background: rgba(245,115,10,0.15);
  border-color: rgba(245,115,10,0.4);
  color: var(--orange-light);
}

.torneo-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* ─── Torneo: corpo pagina ─── */
.torneo-body {
  background: var(--off-white);
}

.torneo-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
  align-items: start;
}

/* Colonna principale */
.torneo-main {}

.torneo-section-block {
  background: var(--white);
  border-radius: 10px;
  padding: 36px;
  margin-bottom: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.torneo-section-block h2 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-100);
}

.torneo-descrizione {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-600);
}

.torneo-descrizione p + p {
  margin-top: 14px;
}

.torneo-descrizione strong {
  color: var(--blue);
}

/* Programma giornate */
.programma-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.programma-giorno {
  border-left: 4px solid var(--orange);
  padding-left: 20px;
}

.programma-giorno-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.programma-giorno-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.programma-slot-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.programma-slot {
  display: flex;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-600);
}

.programma-slot-time {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--blue);
  min-width: 56px;
}

/* Categorie partecipanti */
.categorie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.categoria-chip {
  background: var(--off-white);
  border: 2px solid var(--gray-100);
  border-radius: 6px;
  padding: 14px 12px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--blue);
  transition: var(--transition);
}

.categoria-chip:hover {
  border-color: var(--orange);
  background: rgba(245,115,10,0.05);
}

.categoria-chip .cat-icon {
  font-size: 22px;
  margin-bottom: 6px;
  display: block;
}


/* Colonna laterale sidebar */
.torneo-sidebar {}

.torneo-info-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.torneo-info-card-header {
  background: var(--dark);
  padding: 20px 24px;
}

.torneo-info-card-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

.torneo-info-rows {
  padding: 0 24px;
}

.torneo-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}

.torneo-info-row:last-child {
  border-bottom: none;
}

.torneo-info-row-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.torneo-info-row-content {}

.torneo-info-row-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 2px;
}

.torneo-info-row-value {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
}

.torneo-info-cta {
  padding: 20px 24px;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.torneo-info-cta .btn {
  width: 100%;
  justify-content: center;
}


/* ─── Edizioni passate ─── */
.edizioni-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.edizione-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: 6px;
  border-left: 4px solid var(--blue-light);
}

.edizione-anno {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--blue);
  min-width: 60px;
}

.edizione-info {
  flex: 1;
}

.edizione-vincitore {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}

.edizione-dettaglio {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-600);
}

.edizione-trophy { font-size: 20px; }


/* ═══════════════════════════════════════════
   RESPONSIVE EVENTI
═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .torneo-layout {
    grid-template-columns: 1fr;
  }
  .torneo-info-card {
    position: static;
  }
  .torneo-sidebar {
    order: -1;
  }
}

@media (max-width: 768px) {
  .tornei-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .torneo-section-block {
    padding: 24px 20px;
  }
  .torneo-layout {
    padding: 32px 16px;
  }
  .torneo-hero h1,
  .eventi-hero h1 {
    font-size: 52px;
  }
  .torneo-hero-badges {
    gap: 8px;
  }
  .torneo-badge {
    font-size: 11px;
    padding: 6px 12px;
  }
  .categorie-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  .nav-dropdown {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .torneo-hero-actions {
    flex-direction: column;
  }
  .torneo-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}