html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.5;
  background: #03152a;
  color: #eafcff;
}

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

main,
section,
header,
footer {
  width: 100%;
}

#countdown-view,
#site-view {
  padding: 2rem;
}

#countdown-view {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#countdown-view main {
  text-align: center;
  max-width: 500px;
}

#countdown-view img {
  margin: 0 auto 1rem;
  max-width: 160px;
}

#countdown-view h1 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

#countdown-view p {
  margin: 0;
  opacity: 0.8;
}

#countdown-view p::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 0.8rem auto 0;
  background: linear-gradient(90deg, transparent, #00ccff, transparent);
  opacity: 0.7;
}

.countdown-item {
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 30, 60, 0.45);
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-radius: 14px;
  box-shadow: 0 0 18px rgba(0, 200, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.countdown-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(0, 200, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes countdownPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

#countdown-seconds {
  animation: countdownPulse 1s infinite ease-in-out;
}

#countdown-view main {
  position: relative;
  padding: 2rem;
  border-radius: 20px;
}

#countdown-view main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 200, 255, 0.12), transparent 70%);
  z-index: -1;
  filter: blur(20px);
}

#countdown-view h1 {
  color: #7fe7ff;
  text-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
}

#countdown-view p {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

#countdown-view img {
  filter: drop-shadow(0 0 12px rgba(0, 200, 255, 0.6))
          drop-shadow(0 0 24px rgba(0, 200, 255, 0.4));
}

#site-view {
  min-height: 100vh;
}

main {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.social-float {
  position: fixed;
  right: 1.5rem;
  z-index: 1000;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.social-float img {
  width: 36px;
  height: 36px;
}

.social-float:hover {
  transform: scale(1.2);
}

#soundcloud-button {
  bottom: 13.5rem;
  filter: brightness(0) saturate(100%) invert(43%) sepia(97%) saturate(2166%) hue-rotate(2deg) brightness(101%) contrast(101%);
}

#instagram-button {
  bottom: 7.5rem;
  filter: brightness(0) saturate(100%) invert(32%) sepia(98%) saturate(1863%) hue-rotate(316deg) brightness(94%) contrast(101%);
}

#whatsapp-button {
  bottom: 1.5rem;
  filter: brightness(0) saturate(100%) invert(46%) sepia(96%) saturate(463%) hue-rotate(97deg) brightness(93%) contrast(90%);
}

#about {
  background: rgba(0, 30, 60, 0.35);
  border: 1px solid rgba(0, 200, 255, 0.25);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  margin-top: 2rem;
  box-shadow: 0 0 18px rgba(0, 200, 255, 0.12);
}

#about-open-button {
  background: #051830;
  color: #00ccff;
  border: 2px solid #00ccff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#about-open-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #00ccff;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #051830;
  color: #00ccff;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  box-shadow: 0 0 20px #00ccffcc;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

#gigs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
  align-items: center;
}

#gigs-list:empty::before {
  content: "No upcoming gigs announced yet.";
  display: block;
  text-align: center;
  color: rgba(255,255,255,0.6);
  padding: 1rem 0;
}

#gigs-list .gig-card + .gig-card {
  margin-top: 0.5rem;
}

.gig-card {
  background:
    radial-gradient(circle at top left, rgba(0, 200, 255, 0.08), transparent 35%),
    linear-gradient(160deg, rgba(0, 15, 30, 0.95), rgba(0, 35, 60, 0.95));
  border: 1px solid rgba(0, 200, 255, 0.35);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  text-align: left;
  overflow: hidden;
  max-width: 100%;
}

.gig-date {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.gig-title {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.gig-venue {
  color: #7fe7ff;
  font-weight: 600;
  opacity: 0.9;
}

.gig-venue::before {
  content: "📍 ";
}

.gig-description {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.4rem;
  line-height: 1.45;
}

.gig-description a {
  color: #7fe7ff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 200, 255, 0.5);
  padding-bottom: 1px;
}

.gig-description a:hover {
  text-decoration: underline;
}

.gig-poster {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  align-items: start;
}

.gig-poster-date {
  background: linear-gradient(180deg, #ff8c00, #ff3c78);
  color: #ffffff;
  border-radius: 12px;
  padding: 0.9rem 0.75rem;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.3;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.gig-poster-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

section h2 {
  color: #7fe7ff;
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 8px rgba(0, 200, 255, 0.5);
}

#gigs {
  background: rgba(0, 30, 60, 0.35);
  border: 1px solid rgba(0, 200, 255, 0.25);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  margin-top: 2rem;
  box-shadow: 0 0 18px rgba(0, 200, 255, 0.12);
}

#gigs h2 {
  margin-bottom: 1.8rem;
}

.gig-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gig-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 200, 255, 0.65);
  box-shadow: 0 0 18px rgba(0, 200, 255, 0.18), 0 14px 36px rgba(0, 0, 0, 0.4);
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}



.countdown-number {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: #7fe7ff;
  text-shadow: 0 0 8px rgba(0, 200, 255, 0.45);
}

.countdown-label {
  margin-top: 0.45rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(234, 252, 255, 0.75);
}

@keyframes logoGlowPulse {
  0% {
    filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.5))
            drop-shadow(0 0 20px rgba(0, 200, 255, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(0, 200, 255, 0.8))
            drop-shadow(0 0 32px rgba(0, 200, 255, 0.5));
  }
  100% {
    filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.5))
            drop-shadow(0 0 20px rgba(0, 200, 255, 0.3));
  }
}

#countdown-view img {
  animation: logoGlowPulse 2.5s ease-in-out infinite;
}

@media (max-width: 480px) {

  #countdown-view img {
    max-width: 120px;
  }

  #countdown-view h1 {
    font-size: 1.6rem;
  }

  .countdown {
    gap: 0.4rem;
  }

  .countdown-number {
    font-size: 1.6rem;
  }

  .countdown-label {
    font-size: 0.65rem;
  }

}