:root{
  --bg:#05070f;
  --panel:#0b1220;
  --panel2:#0f1a30;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --line:#1f2a44;
  --brand:#0ea5e9;
  --brand2:#22c55e;
  --danger:#ef4444;
  --warn:#f59e0b;
  --radius:18px;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --max:1200px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: radial-gradient(1000px 600px at 20% 10%, rgba(14,165,233,.18), transparent 60%),
              radial-gradient(900px 520px at 80% 20%, rgba(34,197,94,.12), transparent 60%),
              var(--bg);
  line-height:1.45;
}
a{color:inherit; text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%; height:auto}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden
}
.skip-link:focus{left:20px; top:20px; width:auto; height:auto; padding:10px 14px; background:var(--panel); border:1px solid var(--line); border-radius:12px; z-index:9999}
.topbar{
  border-bottom:1px solid rgba(255,255,255,.06);
  background:rgba(5,7,15,.55);
  backdrop-filter: blur(10px);
}
.topbar .row{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding:10px 0;
  font-size:13px; color:var(--muted);
}
.topbar .left, .topbar .right{display:flex; gap:14px; align-items:center}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(11,18,32,.55);
  text-decoration:none;
}
.pill strong{color:var(--text)}
.pill:hover{border-color:rgba(14,165,233,.55); text-decoration:none}
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(5,7,15,.65);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header .row{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:14px}
.brand{display:flex; align-items:center; gap:12px}
.brand img{width:150px; height:auto}
.nav{
  display:flex; align-items:center; gap:18px;
}
.nav a{
  font-weight:650;
  font-size:14px;
  padding:10px 12px;
  border-radius:12px;
  color:rgba(229,231,235,.92);
}
.nav a:hover{background:rgba(255,255,255,.06); text-decoration:none}
.nav .cta{
  background:linear-gradient(135deg, rgba(14,165,233,.25), rgba(34,197,94,.18));
  border:1px solid rgba(14,165,233,.35);
}
.menu-btn{
  display:none;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(11,18,32,.55);
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  font-weight:700;
  cursor:pointer;
}
.menu-btn:focus{outline:2px solid rgba(14,165,233,.6); outline-offset:2px}
.hero{
  position:relative;
  padding:26px 0 22px;
}
.hero .frame{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(11,18,32,.65), rgba(11,18,32,.35));
  box-shadow:var(--shadow);
  aspect-ratio:16 / 7;
  min-height:340px;
  aspect-ratio: 16/7;
  min-height: 340px;
  position:relative;
}
.hero .frame::after{content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.55));}

.hero .frame img{display:block; width:100%; height:100%; object-fit:cover; filter:contrast(1.05) saturate(1.05)}
.hero .overlay{
  position:absolute; inset:auto 0 0 0;
  padding:18px 0 0;
}
.hero .headline{
  margin-top:-92px;
  padding:22px;
  display:grid;
  gap:10px;
  max-width:720px;
}
.kicker{color:var(--muted); font-weight:700; letter-spacing:.12em; text-transform:uppercase; font-size:12px}
.h1{font-size:44px; line-height:1.05; margin:0; font-weight:900}
.lead{color:rgba(229,231,235,.86); margin:0; font-size:16px}
.hero .actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:6px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(11,18,32,.55);
  font-weight:800;
  text-decoration:none;
}
.btn.primary{
  border-color:rgba(14,165,233,.5);
  background:linear-gradient(135deg, rgba(14,165,233,.35), rgba(34,197,94,.15));
}
.btn:hover{filter:brightness(1.06); text-decoration:none}
.grid{display:grid; gap:18px}
.section{padding:22px 0}
.section-title{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:14px;
  margin-bottom:12px
}
.section-title h2{margin:0; font-size:20px; font-weight:900}
.section-title .more{color:var(--muted); font-weight:800}
.card{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background:rgba(11,18,32,.55);
  overflow:hidden;
}
.card .pad{padding:16px}
.card .meta{display:flex; gap:10px; align-items:center; flex-wrap:wrap; color:var(--muted); font-size:13px}
.tag{
  display:inline-flex; align-items:center;
  padding:4px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.15);
  color:rgba(229,231,235,.9);
  font-weight:800; font-size:12px;
}
.tag.live{border-color:rgba(239,68,68,.45); color:#fecaca}
.tag.final{border-color:rgba(34,197,94,.45); color:#bbf7d0}
.tag.upcoming{border-color:rgba(14,165,233,.45); color:#bae6fd}
.cards-3{grid-template-columns:repeat(3,1fr)}
.cards-2{grid-template-columns:repeat(2,1fr)}
.cards-4{grid-template-columns:repeat(4,1fr)}
.news-card h3{margin:10px 0 0; font-size:16px; line-height:1.2}
.news-card p{margin:10px 0 0; color:rgba(229,231,235,.84)}
.news-card .thumb{
  background:linear-gradient(135deg, rgba(14,165,233,.25), rgba(34,197,94,.18));
  height:120px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.gc{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:18px;
}
.match-feature{
  position:relative;
  padding:18px;
  background:linear-gradient(135deg, rgba(14,165,233,.18), rgba(34,197,94,.10));
  border:1px solid rgba(14,165,233,.22);
}
.match-feature .top{display:flex; justify-content:space-between; gap:12px; color:var(--muted); font-weight:700; font-size:13px}
.match-feature .score{
  display:grid; grid-template-columns:1fr auto 1fr; align-items:center;
  gap:12px; padding-top:14px;
}
.team{
  display:flex; align-items:center; gap:10px;
}
.team .logo{width:44px; height:44px; border-radius:999px; border:1px solid rgba(255,255,255,.10); background:rgba(0,0,0,.25); display:grid; place-items:center}
.team .logo img{width:28px; height:28px}
.team .name{font-weight:900}
.score .num{font-size:46px; font-weight:950}
.score .dash{font-size:20px; color:var(--muted); font-weight:900; padding:0 6px}
.match-feature .links{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}
.link-chip{
  padding:8px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.10);
  background:rgba(11,18,32,.45); color:rgba(229,231,235,.9); font-weight:800; font-size:13px;
}
.link-chip:hover{text-decoration:none; border-color:rgba(14,165,233,.55)}
.match-list{display:grid; gap:10px; padding:12px}
.match-row{
  display:grid; grid-template-columns: 1fr auto; gap:10px;
  align-items:center;
  padding:12px; border-radius:14px;
  border:1px solid rgba(255,255,255,.07);
  background:rgba(0,0,0,.12);
}
.match-row .left{display:grid; gap:4px}
.match-row .small{font-size:13px; color:var(--muted); font-weight:700}
.match-row .teams{font-weight:900}
.match-row .right{display:flex; align-items:center; gap:10px}
.match-row .scoreline{font-weight:950}
.tabs{
  display:flex; gap:10px; flex-wrap:wrap;
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:0 12px 12px;
}
.tab-btn{
  appearance:none;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(11,18,32,.45);
  color:rgba(229,231,235,.92);
  padding:9px 12px;
  border-radius:999px;
  font-weight:900;
  cursor:pointer;
}
.tab-btn[aria-selected="true"]{
  border-color:rgba(14,165,233,.55);
  background:rgba(14,165,233,.12);
}
.tab-panel{padding:12px}
.table{width:100%; border-collapse:collapse}
.table th,.table td{padding:10px 8px; border-bottom:1px solid rgba(255,255,255,.08); font-size:14px}
.table th{text-align:left; color:var(--muted); font-size:12px; letter-spacing:.08em; text-transform:uppercase}
.hscroll{
  display:flex; gap:12px; overflow:auto; padding:12px;
  scroll-snap-type:x mandatory;
}
.hscroll::-webkit-scrollbar{height:10px}
.hscroll::-webkit-scrollbar-thumb{background:rgba(255,255,255,.12); border-radius:999px}
.player-card{
  min-width:210px;
  scroll-snap-align:start;
}
.player-card h3{margin:10px 0 0; font-size:15px}
.player-card .stat{margin-top:10px; color:var(--muted); font-weight:800; font-size:13px}
.logo-grid{
  display:grid; grid-template-columns:repeat(6,1fr); gap:12px;
  padding:12px;
}
.logo-box{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.14);
  padding:10px;
  display:grid;
  place-items:center;
  min-height:74px;
}
.logo-box img{max-height:42px; width:auto; opacity:.95}
.form{
  display:grid; gap:12px;
}
.field label{display:block; font-weight:900; font-size:13px; color:rgba(229,231,235,.92); margin-bottom:6px}
.field input,.field textarea, .field select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(11,18,32,.45);
  color:var(--text);
  outline:none;
}
.field input:focus,.field textarea:focus, .field select:focus{border-color:rgba(14,165,233,.6)}
.two-col{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.footer{
  margin-top:26px;
  padding:28px 0 40px;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(5,7,15,.55);
}
.footer .grid{
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:18px;
}
.footer h3{margin:0 0 10px; font-size:14px; letter-spacing:.08em; text-transform:uppercase; color:rgba(229,231,235,.92)}
.footer p,.footer a{color:rgba(229,231,235,.82)}
.footer .sub{color:var(--muted); font-size:13px}
.footer .legal{
  display:flex; gap:12px; flex-wrap:wrap;
  margin-top:14px; color:var(--muted); font-size:13px
}
.footer .legal a{color:var(--muted); font-weight:800}
.footer .social{display:flex; gap:10px; flex-wrap:wrap}
.icon{
  width:40px; height:40px;
  display:grid; place-items:center;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(11,18,32,.45);
}
.icon svg{width:18px; height:18px; fill:#cbd5e1}
.icon:hover{border-color:rgba(14,165,233,.55); text-decoration:none}
.drawer-backdrop{
  position:fixed; inset:0;
  background:rgba(0,0,0,.55);
  opacity:0; pointer-events:none;
  transition:opacity .2s ease;
  z-index:60;
}
.drawer{
  position:fixed; top:0; right:0; height:100%; width:min(420px, 92vw);
  background:rgba(11,18,32,.96);
  border-left:1px solid rgba(255,255,255,.10);
  transform:translateX(105%);
  transition:transform .22s ease;
  z-index:70;
  overflow:auto;
}
.drawer.open{transform:none}
.drawer-backdrop.open{opacity:1; pointer-events:auto}
.drawer .head{
  position:sticky; top:0;
  background:rgba(11,18,32,.96);
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:14px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:12px
}
.drawer .head strong{letter-spacing:.08em; text-transform:uppercase; font-size:12px; color:rgba(229,231,235,.88)}
.drawer .close{
  appearance:none; border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.2);
  color:var(--text); font-weight:900;
  border-radius:12px; padding:10px 12px; cursor:pointer;
}
.drawer nav{padding:12px 10px 20px}
.drawer details{
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  background:rgba(0,0,0,.12);
  margin:10px 6px;
  overflow:hidden;
}
.drawer summary{
  list-style:none;
  cursor:pointer;
  padding:12px 12px;
  font-weight:950;
}
.drawer summary::-webkit-details-marker{display:none}
.drawer .subnav{padding:0 12px 12px; display:grid; gap:8px}
.drawer .subnav a{padding:10px 10px; border-radius:12px; border:1px solid rgba(255,255,255,.06); background:rgba(11,18,32,.35); font-weight:850}
.drawer .subnav a:hover{border-color:rgba(14,165,233,.55); text-decoration:none}
.breadcrumb{
  color:var(--muted); font-weight:800; font-size:13px; margin:14px 0 10px
}
.page-hero{
  padding:18px 0 10px
}
.page-hero h1{margin:0; font-size:34px; font-weight:950}
.page-hero p{margin:8px 0 0; color:rgba(229,231,235,.82)}
.page-layout{display:grid; grid-template-columns: 280px 1fr; gap:18px; padding:12px 0 26px}
.side{
  position:sticky; top:92px; align-self:start;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background:rgba(11,18,32,.45);
  padding:12px;
}
.side h3{margin:6px 8px 10px; font-size:13px; letter-spacing:.08em; text-transform:uppercase; color:rgba(229,231,235,.88)}
.side a{
  display:block; padding:10px 10px; border-radius:12px; margin:6px 0;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(0,0,0,.12);
  font-weight:900;
}
.side a.active{border-color:rgba(14,165,233,.55); background:rgba(14,165,233,.10)}
.side a:hover{text-decoration:none; border-color:rgba(14,165,233,.35)}
.content .card{margin-bottom:14px}
@media (max-width: 980px){
  .nav{display:none}
  .menu-btn{display:inline-flex}
  .cards-3{grid-template-columns:1fr}
  .cards-2{grid-template-columns:1fr}
  .cards-4{grid-template-columns:repeat(2,1fr)}
  .gc{grid-template-columns:1fr}
  .logo-grid{grid-template-columns:repeat(3,1fr)}
  .page-layout{grid-template-columns:1fr}
  .side{position:relative; top:auto}
  .h1{font-size:34px}
  .hero .headline{margin-top:-78px}
}
@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important; transition:none !important}
}
/* Article cover image (IG-like) */
.article-cover{
  margin-top:14px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  max-width:980px;
}
.article-cover img{display:block; width:100%; height:360px; object-fit:cover}
@media (max-width: 720px){
  .article-cover img{height:240px}
}
CSS

/* Article cover image (IG-like) */
.article-cover{
  margin-top:14px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.25);
  box-shadow:var(--shadow);
}
.article-cover img{
  width:100%;
  height:340px;
  object-fit:cover;
  display:block;
}


/* ULTRA-FIX footer (HCAP-inspired) */
.footer{
  padding:56px 0 28px;
  background:
    linear-gradient(180deg, rgba(5,18,33,.82), rgba(5,18,33,.95)),
    url('../img/aosta-mountains-1.jpg') center/cover no-repeat;
  color:#fff;
}
.footer a{color:#fff; text-decoration:none; opacity:.92}
.footer a:hover{opacity:1}
.footer-top{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:24px;
  align-items:start;
}
.footer-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:22px;
  backdrop-filter: blur(8px);
}
.footer-card h3{margin:0 0 10px; letter-spacing:.08em; text-transform:uppercase; font-size:14px}
.footer-card .sub{margin:0 0 16px; opacity:.85}
.footer-card p{margin:0 0 12px; line-height:1.5}
.social{display:flex; gap:12px; align-items:center; margin:10px 0 16px}
.social .icon{
  width:40px; height:40px;
  display:inline-flex; justify-content:center; align-items:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.04);
}
.social .icon svg{width:20px; height:20px; fill:#fff}
.newsletter{
  display:inline-flex; justify-content:center; align-items:center;
  gap:10px;
  height:46px; padding:0 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.06);
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:12px;
}
.footer-bottom{
  margin-top:18px;
  display:flex; justify-content:space-between; align-items:center;
  gap:14px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.12);
}
.footer-bottom small{opacity:.85}
.footer-bottom .legal{display:flex; gap:16px; flex-wrap:wrap}
@media (max-width: 900px){
  .footer-top{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column; align-items:flex-start}
}



/* === ULTRA STYLE: player showcase + match card + gallery === */
.player-showcase{
  position:relative;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.18));
  border:1px solid rgba(255,255,255,.10);
  padding:22px 16px 18px;
  overflow:hidden;
}
.ps-stage{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:18px;
  min-height:340px;
}
.ps-img{
  width:min(26vw,160px);
  max-height:320px;
  object-fit:contain;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.45));
  transition: transform .25s ease, opacity .25s ease;
}
.ps-center{ width:min(44vw,260px); opacity:1; transform: translateY(0) scale(1); }
.ps-left,.ps-right{ opacity:.22; transform: translateY(18px) scale(.92); }
.ps-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:54px; height:54px; border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background:transparent; color:#fff; font-size:32px; line-height:1;
  display:grid; place-items:center; cursor:pointer;
}
.ps-arrow.left{ left:14px; }
.ps-arrow.right{ right:14px; }
.ps-meta{ text-align:center; margin-top:10px; }
.ps-name{ font-size:40px; font-weight:900; letter-spacing:.5px; text-transform:uppercase; margin:8px 0 12px; }
@media (max-width:560px){
  .ps-stage{ min-height:280px; }
  .ps-name{ font-size:32px; }
}

/* Match card (app style) */
.match-card{
  background:#fff;
  color:#111;
  border-radius:22px;
  padding:18px 16px;
  box-shadow:0 22px 40px rgba(0,0,0,.22);
  margin: 14px 0 18px;
}
.match-card-top{ text-align:center; }
.match-date{ font-weight:900; font-size:22px; }
.match-sub{ color:#555; margin-top:6px; }
.match-card-mid{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:14px;
  padding:16px 8px 6px;
}
.team-col{ display:flex; flex-direction:column; align-items:center; gap:8px; }
.team-logo{ width:64px; height:64px; object-fit:contain; }
.team-name{ font-weight:800; }
.match-score{ font-size:34px; font-weight:900; }
.match-card-actions{
  display:flex; justify-content:center; gap:12px; flex-wrap:wrap;
  padding-top:10px;
}
.pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  border:2px solid rgba(0,0,0,.25);
  color:#111; text-decoration:none;
  font-weight:800;
  min-width:140px;
}
.pill.ghost{ opacity:.55; }
.pill.primary{ background: #0b3a7a; border-color:#0b3a7a; color:#fff; }

/* Light table */
.card.white{ background:#fff; color:#111; border-radius:22px; padding:18px 16px; }
.table.light th{ background:#f0f2f6; color:#111; }
.table.light td{ border-bottom:1px solid rgba(0,0,0,.08); }
.table.light tr.highlight{ background:#0b3a7a; color:#fff; }
.table.light tr.highlight td{ border-bottom-color:rgba(255,255,255,.18); }

/* Roster cards */
.roster-cards{
  display:grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap:14px;
  margin: 14px 0 20px;
}
.roster-card{
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  padding:12px 10px;
  text-decoration:none;
  color:#fff;
  display:flex; flex-direction:column; align-items:center; gap:10px;
}
.roster-card img{
  width:100%;
  height:180px;
  object-fit:contain;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.45));
}
.roster-card .name{ font-weight:900; text-transform:uppercase; text-align:center; }
.roster-card .no{ opacity:.8; font-weight:800; }
@media (max-width:980px){ .roster-cards{ grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width:560px){ .roster-cards{ grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* Gallery */
.gallery-controls{ display:flex; gap:10px; align-items:center; margin: 10px 0 14px; }
.select{
  background:rgba(255,255,255,.08);
  color:#fff;
  border:1px solid rgba(255,255,255,.16);
  border-radius:12px;
  padding:10px 12px;
}
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap:10px;
}
.gallery-item{
  border:0;
  padding:0;
  background:transparent;
  cursor:pointer;
  border-radius:14px;
  overflow:hidden;
}
.gallery-item img{ width:100%; height:140px; object-fit:cover; display:block; }
@media (max-width:980px){ .gallery-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width:560px){ .gallery-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } .gallery-item img{ height:120px; } }

.no-scroll{ overflow:hidden; }

/* Lightbox overlay */
.lightbox{
  position:fixed; inset:0;
  background:rgba(0,0,0,.92);
  display:grid;
  place-items:center;
  z-index:9999;
  padding:20px;
}
.lightbox img{ max-width:min(100%,900px); max-height:78vh; border-radius:18px; }
.lightbox-close{
  position:absolute; top:14px; right:14px;
  width:44px; height:44px; border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.06);
  color:#fff; font-size:26px; cursor:pointer;
}
.lightbox-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width:56px; height:56px; border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.06);
  color:#fff; font-size:38px; cursor:pointer;
}
.lightbox-nav.prev{ left:16px; }
.lightbox-nav.next{ right:16px; }
.lightbox-meta{ margin-top:10px; color:#fff; text-align:center; }


/* FORZA_HAMBURGER_ALWAYS: un solo menu (hamburger) su tutti i dispositivi */
.nav{display:none !important;}
.menu-btn{display:inline-flex !important;}


/* ============================
   ULTRA TOPBAR (HC Aosta)
   ============================ */

.header .header-bar{
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap:16px;
  padding:10px 0;
}

.header .brand img{ width:140px; height:auto; }

.center-pill{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:10px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(11,18,32,.42);
  backdrop-filter: blur(10px);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:900;
  font-size:12px;
  white-space:nowrap;
}

.center-pill .pill-link{
  color:var(--warn);
  text-decoration:none;
  opacity:.92;
}
.center-pill .pill-link:hover{ opacity:1; text-decoration:underline; text-underline-offset:4px; }
.center-pill .pill-center{ opacity:.92; }
.center-pill .pill-sep{
  width:1px; height:18px;
  background:rgba(255,255,255,.18);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.btn.btn-shop{
  border-radius:999px;
  padding:10px 14px;
}

.btn.btn-ticket{
  border-radius:999px;
  padding:10px 16px;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(135deg, rgba(255,64,64,1), rgba(180,0,0,1));
  box-shadow:0 12px 30px rgba(255,40,40,.26);
  position:relative;
  overflow:hidden;
  transform:translateZ(0);
}
.btn.btn-ticket::after{
  content:"";
  position:absolute;
  inset:-80px;
  background:radial-gradient(circle at 20% 20%, rgba(255,255,255,.35), transparent 38%);
  transform:rotate(12deg);
  opacity:.6;
  pointer-events:none;
}
.btn.btn-ticket:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 34px rgba(255,40,40,.32);
}
.btn.btn-ticket:active{ transform:translateY(0); }

.menu-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(11,18,32,.55);
  box-shadow:0 12px 28px rgba(0,0,0,.28);
  cursor:pointer;
  position:relative;
  overflow:hidden;
  transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.menu-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.30);
  box-shadow:0 16px 34px rgba(0,0,0,.32);
}
.menu-btn:active{ transform:translateY(0); }

.burger{
  display:inline-flex;
  flex-direction:column;
  gap:5px;
}
.burger span{
  display:block;
  width:18px;
  height:2px;
  border-radius:2px;
  background:rgba(255,255,255,.92);
  transition:transform .18s ease, opacity .18s ease;
}

.menu-btn[aria-expanded="true"] .burger span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .burger span:nth-child(2){ opacity:0; }
.menu-btn[aria-expanded="true"] .burger span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width: 780px){
  .header .brand img{ width:125px; }
  .center-pill{ padding:9px 14px; gap:12px; font-size:11px; }
  .btn.btn-shop{ padding:9px 12px; }
  .btn.btn-ticket{ padding:9px 14px; }
  .menu-btn{ width:44px; height:44px; }
}

@media (max-width: 420px){
  .center-pill .pill-link{ display:none; }
  .center-pill .pill-sep{ display:none; }
  .center-pill{ padding:9px 12px; }
}

/* FIX: respect HTML [hidden] attribute (lightbox/drawer) */
[hidden]{ display:none !important; }



/* CLUB PRESENTATION */
.club-slider{display:flex;align-items:center;gap:14px;justify-content:center;margin-top:14px}
.club-slider img{max-width:100%;height:auto;border-radius:18px;box-shadow:0 16px 50px rgba(0,0,0,.35)}
.club-slider .club-nav{width:56px;height:56px;border-radius:999px;border:1px solid rgba(255,255,255,.18);background:rgba(10,14,24,.35);backdrop-filter:blur(10px);color:#fff;display:grid;place-items:center;cursor:pointer;transition:transform .12s ease, background .12s ease}
.club-slider .club-nav:hover{transform:translateY(-1px);background:rgba(10,14,24,.5)}
.club-slider-footer{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:12px}
.club-counter{opacity:.85;font-weight:600}
@media (max-width:640px){.club-slider .club-nav{width:46px;height:46px}}


/* Staff list (Club) */
.staff-list{margin:12px 0 0; padding-left:18px}
.staff-list li{margin:6px 0; line-height:1.35}
.staff-list strong{color:var(--text)}
