:root{
  --blu:#123c7c;
  --giallo:#ffd43b;
  --rosso:#ef233c;
  --verde:#22c55e;
  --nero:#151515;
  --panna:#fff7d6;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, sans-serif;
  background:linear-gradient(135deg,#dff7ff,#fff2b8);
  color:var(--nero);
}

.hero{
  min-height:100vh;
  padding:24px;
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  background:
    radial-gradient(circle at 15% 20%,#fff 0 8%,transparent 9%),
    radial-gradient(circle at 85% 15%,#fff 0 7%,transparent 8%),
    linear-gradient(#7dd3fc,#fff0b3);
}

.label{
  background:var(--giallo);
  border:4px solid var(--nero);
  border-radius:18px;
  padding:8px 16px;
  font-weight:900;
  box-shadow:5px 5px 0 var(--nero);
  transform:rotate(-2deg);
}

h1{
  font-size:clamp(2.4rem,8vw,5.2rem);
  line-height:.95;
  color:var(--blu);
  text-shadow:4px 4px 0 #fff,7px 7px 0 var(--nero);
  margin:24px 0 12px;
}

.hero-img{
  width:min(920px,94vw);
  border:6px solid var(--nero);
  border-radius:28px;
  box-shadow:9px 9px 0 var(--nero);
  margin:20px 0;
}

.panel{
  max-width:980px;
  margin:24px auto;
  background:white;
  border:4px solid var(--nero);
  border-radius:26px;
  box-shadow:7px 7px 0 var(--nero);
  padding:22px;
}

.status{
  font-size:1.6rem;
  font-weight:900;
}

.open{color:var(--verde)}
.closed{color:var(--rosso)}
.wait{color:var(--blu)}

.countdown{
  font-size:clamp(2rem,8vw,4.5rem);
  font-weight:900;
  color:var(--rosso);
  margin:10px 0;
}

.btn{
  display:inline-block;
  margin:10px;
  padding:15px 22px;
  background:var(--rosso);
  color:white;
  text-decoration:none;
  border:4px solid var(--nero);
  border-radius:999px;
  font-weight:900;
  box-shadow:5px 5px 0 var(--nero);
}

.btn.blue{background:var(--blu)}
.btn.green{background:var(--verde)}
.btn.orange{background:#f97316}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-top:18px;
}

main{
  padding:20px;
  max-width:1100px;
  margin:auto;
}

.ticro-section{
  display:flex;
  flex-direction:column;
  gap:22px;
  margin:30px 0;
}

.ticro-card{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:20px;
  align-items:center;
  background:white;
  border:4px solid #151515;
  border-radius:28px;
  padding:20px;
  box-shadow:7px 7px 0 #151515;
  scroll-margin-top:25px;
}

.ticro-box{
  background:#fff7d6;
  border:3px solid #151515;
  border-radius:22px;
  padding:10px;
  text-align:center;
}

.ticro-img{
  width:100%;
  max-width:130px;
}

.ticro-content h2{
  margin:0 0 10px;
  color:#123c7c;
  font-size:1.8rem;
}

.ticro-content p,
.ticro-content li{
  font-size:1.08rem;
  line-height:1.45;
}

.ticro-content ul{
  margin:8px 0 0;
  padding-left:22px;
}

.footer{
  text-align:center;
  background:#111;
  color:white;
  padding:30px;
}

.sign{
  color:var(--giallo);
  font-weight:900;
  font-size:1.4rem;
}

/* MENU FLOTTANTE */
.floating-menu{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
}

.menu-btn{
  width:68px;
  height:68px;
  border:4px solid var(--nero);
  border-radius:50%;
  background:var(--blu);
  color:white;
  font-size:2rem;
  cursor:pointer;
  box-shadow:5px 5px 0 var(--nero);
}

.menu-panel{
  position:absolute;
  bottom:85px;
  right:0;
  width:285px;
  background:white;
  border:4px solid var(--nero);
  border-radius:24px;
  overflow:hidden;
  box-shadow:7px 7px 0 var(--nero);
  display:none;
}

.menu-panel.show{
  display:block;
}

.menu-head{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  background:#fff7d6;
  border-bottom:3px solid var(--nero);
}

.menu-head img{
  width:54px;
  height:54px;
  object-fit:contain;
}

.menu-head strong{
  color:var(--blu);
}

.menu-panel a{
  display:block;
  padding:16px 20px;
  text-decoration:none;
  color:#123c7c;
  font-weight:900;
  border-bottom:1px solid #eee;
}

.menu-panel a:hover{
  background:#f4f7fb;
}

@media(max-width:650px){
  .ticro-card{
    grid-template-columns:1fr;
    text-align:center;
  }

  .ticro-content ul{
    text-align:left;
  }

  .ticro-img{
    max-width:170px;
  }

  .menu-panel{
    width:265px;
  }
}
.footer .sign a{
    color: inherit;
    text-decoration: none;
    font-weight: bold;
}

.footer .sign a:hover{
    text-decoration: underline;
}
