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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050505;
  color: #f5f5f5;
  min-height: 100vh;
}

.scroll-hint {
  position: fixed;
  bottom: 40px;
  right: 12px;
  background: transparent;
  border: none;
  color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 60;
  padding: 0;
}

.scroll-hint-arrow {
  font-size: 12rem;
  line-height: 1;
  animation: scroll-arrow-bounce 0.9s ease-in-out infinite;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-hint:hover .scroll-hint-arrow {
  opacity: 1;
}

@keyframes scroll-arrow-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.page-center {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh; /* supporta viewport dinamico su mobile */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* supporta viewport dinamico su mobile */
}

.logo-center {
  max-width: min(420px, 80vw);
  height: auto;
  position: relative;
  z-index: 2;
}

.bn-names-layer {
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

.bn-name {
  position: absolute;
  font-size: clamp(0.7rem, 1.4vmin, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(226, 209, 168, 0.96);
  border: 1px solid rgba(43, 26, 18, 0.55);
  padding: 4px 10px;
  white-space: nowrap;
  color: #1c120f;
  box-shadow:
    0 0 8px rgba(0, 0, 0, 0.65),
    0 0 20px rgba(0, 0, 0, 0.55);
  touch-action: none; /* previene scroll durante il drag su mobile */
  user-select: none; /* previene selezione testo durante il drag */
  -webkit-user-select: none;
}

.bn-name--highlight {
  background: #5c1f15;
  border-color: #ff6b4a;
  color: #f9e4cf;
}

.bn-name--spotlight {
  z-index: 70;
  border-width: 2px;
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.5),
    0 0 32px rgba(255, 107, 74, 0.8);
}

.bn-name span:first-child {
  font-weight: 700;
}

.bn-name span:last-child {
  font-weight: 400;
}

.coming-soon {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
  padding: 80px 20px;
}

.coming-soon-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 69, 0, 0.15) 0, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 191, 255, 0.12) 0, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 20, 147, 0.1) 0, transparent 60%);
  animation: coming-soon-bg-pulse 4s ease-in-out infinite alternate;
}

@keyframes coming-soon-bg-pulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.coming-soon-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1200px;
}

.coming-soon-title {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ff4500 0%, #ff1493 30%, #00bfff 60%, #ff4500 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: coming-soon-gradient 3s ease infinite, coming-soon-pulse 2s ease-in-out infinite;
  text-shadow: 0 0 40px rgba(255, 69, 0, 0.5);
  line-height: 0.9;
}

@keyframes coming-soon-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes coming-soon-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.coming-soon-main {
  margin-top: 60px;
}

.coming-soon-band {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 30px;
  text-shadow: 
    0 0 20px rgba(255, 69, 0, 0.6),
    0 0 40px rgba(255, 20, 147, 0.4),
    0 0 60px rgba(0, 191, 255, 0.3);
  animation: coming-soon-shake 3s ease-in-out infinite;
}

@keyframes coming-soon-shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  75% {
    transform: translateX(2px);
  }
}

.coming-soon-song {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ff4500;
  margin-bottom: 20px;
  text-shadow: 
    0 0 30px rgba(255, 69, 0, 0.8),
    0 0 60px rgba(255, 69, 0, 0.5),
    0 0 90px rgba(255, 69, 0, 0.3);
  animation: coming-soon-glow 2s ease-in-out infinite alternate;
}

@keyframes coming-soon-glow {
  0% {
    text-shadow: 
      0 0 30px rgba(255, 69, 0, 0.8),
      0 0 60px rgba(255, 69, 0, 0.5),
      0 0 90px rgba(255, 69, 0, 0.3);
  }
  100% {
    text-shadow: 
      0 0 50px rgba(255, 69, 0, 1),
      0 0 100px rgba(255, 69, 0, 0.7),
      0 0 150px rgba(255, 69, 0, 0.4);
  }
}

.coming-soon-subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 40px;
  animation: coming-soon-fade 2s ease-in-out infinite alternate;
}

@keyframes coming-soon-fade {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .logo-center {
    max-width: min(252px, 70vw) !important;
    width: min(252px, 70vw) !important;
  }

  .coming-soon {
    padding: 60px 16px;
  }
  
  .coming-soon-title {
    margin-bottom: 30px;
  }
  
  .coming-soon-main {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .logo-center {
    max-width: min(216px, 65vw) !important;
    width: min(216px, 65vw) !important;
  }
}

.bn-tooltip {
  position: fixed;
  display: none;
  background: #000;
  border: 1px solid rgba(245, 245, 245, 0.4);
  padding: 6px;
  z-index: 50;
  box-shadow:
    0 0 10px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(0, 0, 0, 0.9);
}

.bn-tooltip img {
  display: block;
  max-width: 260px;
  max-height: 260px;
  width: auto;
  height: auto;
}

@media (max-width: 768px) {
  .bn-tooltip {
    max-width: 90vw;
  }
  
  .bn-tooltip img {
    max-width: min(260px, 80vw);
    max-height: min(260px, 80vw);
  }
}



