
:root {
  --tethered-blue: #58b6d0;
  --tethered-blue-dark: #3a8ba8;
  --tethered-blue-darker: #2a6580;
}

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

body {
  font-family: "Courier New", Courier, monospace;
  background-color: #000000;
  color: var(--tethered-blue);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--tethered-blue);
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.2s;
}

a:visited {
  color: var(--tethered-blue);
}

a:hover {
  color: #000000;
  background-color: var(--tethered-blue);
  text-shadow: none;
}

.retro-nav {
  background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
  border-bottom: 4px solid var(--tethered-blue);
  box-shadow: 0 4px 0 var(--tethered-blue);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.logo-text {
  font-size: 32px;
  font-weight: bold;
  color: var(--tethered-blue);
  text-shadow: 3px 3px 0 var(--tethered-blue-dark), 6px 6px 0 var(--tethered-blue);
  letter-spacing: 4px;
}

.logo-year {
  font-size: 20px;
  color: var(--tethered-blue);
  font-weight: bold;
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-menu a {
  color: var(--tethered-blue);
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 20px;
  border: 3px solid var(--tethered-blue);
  background-color: #000000;
  box-shadow: 4px 4px 0 var(--tethered-blue-dark);
  transition: all 0.2s;
  text-transform: uppercase;
}

.nav-menu a:hover {
  background-color: var(--tethered-blue);
  color: #000000;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--tethered-blue-dark);
}

.nav-menu a[href="#home"]:hover,
#home:target ~ .retro-nav .nav-menu a[href="#home"],
body:not(:has(:target)) .nav-menu a[href="#home"] {
  background-color: var(--tethered-blue);
  color: #000000;
}

#music:target ~ .retro-nav .nav-menu a[href="#music"] {
  background-color: var(--tethered-blue);
  color: #000000;
}

#info:target ~ .retro-nav .nav-menu a[href="#info"] {
  background-color: var(--tethered-blue);
  color: #000000;
}

#shows:target ~ .retro-nav .nav-menu a[href="#shows"] {
  background-color: var(--tethered-blue);
  color: #000000;
}

#archive:target ~ .retro-nav .nav-menu a[href="#archive"] {
  background-color: var(--tethered-blue);
  color: #000000;
}

.hero {
  height: 75vh;
  background-image: url("/placeholder.svg?height=800&width=1200");
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: 6px solid var(--tethered-blue);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: none;
  text-align: center;
  max-width: 900px;
  padding: 40px;
  border: 6px solid var(--tethered-blue);
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 30px var(--tethered-blue), inset 0 0 30px rgba(74, 159, 229, 0.3);
  position: relative;
}

#home {
  display: block;
}

#music:target,
#info:target,
#archive:target,
#shows:target {
  display: block;
}

.hero-overlay:has(#music:target) #home,
.hero-overlay:has(#info:target) #home,
.hero-overlay:has(#archive:target) #home,
.hero-overlay:has(#shows:target) #home {
  display: none !important;
}

.corner-decoration {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 4px solid var(--tethered-blue);
}

.corner-decoration.top-left {
  top: -4px;
  left: -4px;
  border-right: none;
  border-bottom: none;
}

.corner-decoration.top-right {
  top: -4px;
  right: -4px;
  border-left: none;
  border-bottom: none;
}

.corner-decoration.bottom-left {
  bottom: -4px;
  left: -4px;
  border-right: none;
  border-top: none;
}

.corner-decoration.bottom-right {
  bottom: -4px;
  right: -4px;
  border-left: none;
  border-top: none;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.title-line {
  font-size: 24px;
  color: var(--tethered-blue);
  letter-spacing: 8px;
  text-shadow: 2px 2px 0 var(--tethered-blue-dark);
}

.title-main {
  font-size: 56px;
  font-weight: bold;
  color: var(--tethered-blue);
  text-shadow: 4px 4px 0 var(--tethered-blue-dark), 8px 8px 0 var(--tethered-blue-darker);
  letter-spacing: 6px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--tethered-blue);
  margin-bottom: 30px;
  letter-spacing: 3px;
}

.status-badge {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000000;
  border: 3px solid var(--tethered-blue);
  margin-bottom: 30px;
  box-shadow: 0 0 20px var(--tethered-blue);
}

.content-section .status-badge {
  display: block;
  width: fit-content;
  margin: 20px auto;
}

.status-badge .blink {
  color: var(--tethered-blue);
  font-weight: bold;
  font-size: 18px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.retro-button {
  padding: 15px 40px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border: 4px solid var(--tethered-blue);
  background-color: #000000;
  color: var(--tethered-blue);
  box-shadow: 6px 6px 0 var(--tethered-blue-dark);
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
}

.retro-button:hover {
  background-color: var(--tethered-blue);
  color: #000000;
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--tethered-blue-dark);
}

.retro-button.secondary {
  border-color: var(--tethered-blue-dark);
  color: var(--tethered-blue-dark);
  box-shadow: 6px 6px 0 var(--tethered-blue);
}

.retro-button.secondary:hover {
  background-color: var(--tethered-blue-dark);
  color: #000000;
  box-shadow: 9px 9px 0 var(--tethered-blue);
}

.content-section {
  margin-top: 20px;
  text-align: left;
}

.section-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--tethered-blue);
  letter-spacing: 1px;
}

.bandcamp-player {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  padding: 15px;
  border: 4px solid var(--tethered-blue);
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 20px rgba(74, 159, 229, 0.3), 6px 6px 0 var(--tethered-blue-dark);
  width: fit-content;
  transition: all 0.3s;
}

.bandcamp-player:hover {
  box-shadow: 0 0 30px rgba(74, 159, 229, 0.5), 8px 8px 0 var(--tethered-blue-dark);
  transform: translate(-2px, -2px);
}

.bandcamp-player iframe {
  border: 0;
  width: 350px;
  height: 470px;
  display: block;
}

.retro-list {
  list-style: none;
  margin: 20px 0;
  padding: 20px;
  border: 3px solid var(--tethered-blue);
  background-color: rgba(74, 159, 229, 0.05);
}

.retro-list li {
  font-size: 18px;
  color: var(--tethered-blue);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.info-box {
  margin: 20px 0;
  padding: 20px;
  border: 4px solid var(--tethered-blue);
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 20px rgba(74, 159, 229, 0.3);
}

.info-box p {
  font-size: 16px;
  color: var(--tethered-blue);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.info-box strong {
  color: var(--tethered-blue);
  text-shadow: 2px 2px 0 var(--tethered-blue-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.gallery-item {
  text-align: center;
}

.placeholder-box {
  width: 100%;
  height: 150px;
  border: 4px solid var(--tethered-blue);
  background-color: rgba(74, 159, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: var(--tethered-blue);
  letter-spacing: 2px;
  box-shadow: 4px 4px 0 var(--tethered-blue-dark);
  transition: all 0.3s;
}

.placeholder-box:hover {
  background-color: rgba(74, 159, 229, 0.2);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--tethered-blue-dark);
}

.gallery-caption {
  margin-top: 10px;
  font-size: 14px;
  color: var(--tethered-blue);
  letter-spacing: 1px;
}

.carousel-container {
  position: relative;
  width: 100%;
  margin: 30px 0;
  overflow: hidden;
}

.carousel-wrapper {
  width: 100%;
  overflow: hidden;
  border: 4px solid var(--tethered-blue);
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 20px rgba(74, 159, 229, 0.3), 6px 6px 0 var(--tethered-blue-dark);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  position: relative;
}

.carousel-radio {
  display: none;
}

.carousel-slide {
  min-width: 100%;
  display: none;
  padding: 20px;
}

.carousel-control {
  display: none;
}

.carousel-arrow {
  font-size: 32px;
  color: var(--tethered-blue);
  cursor: pointer;
  padding: 10px 20px;
  border: 3px solid var(--tethered-blue);
  background-color: #000000;
  box-shadow: 4px 4px 0 var(--tethered-blue-dark);
  transition: all 0.3s;
  user-select: none;
}

.carousel-arrow:hover {
  background-color: var(--tethered-blue);
  color: #000000;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--tethered-blue-dark);
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.carousel-dot {
  font-size: 24px;
  color: var(--tethered-blue-dark);
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
}

.carousel-dot:hover {
  color: var(--tethered-blue);
  transform: scale(1.2);
}

.carousel-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.setlist {
  margin-top: 20px;
  padding: 15px;
  border: 3px solid var(--tethered-blue);
  background-color: rgba(74, 159, 229, 0.05);
  text-align: left;
}

.setlist-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--tethered-blue);
  margin-bottom: 10px;
  text-shadow: 2px 2px 0 var(--tethered-blue-dark);
}

.songs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 15px;
}

.song-item {
  font-size: 14px;
  color: var(--tethered-blue);
  padding: 5px;
  letter-spacing: 1px;
}

.song-item.cover-song {
  color: var(--tethered-blue-dark);
  font-style: italic;
}

.retro-footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
  border-top: 4px solid var(--tethered-blue);
  box-shadow: 0 -4px 0 var(--tethered-blue);
  padding: 30px 20px;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-badges .badge-svg {
  height: 88px;
  width: 88px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-badges .badge-svg:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px var(--tethered-blue));
}

.footer-text {
  color: var(--tethered-blue);
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.visitor-counter {
  color: var(--tethered-blue);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
}

.counter-number {
  color: var(--tethered-blue-dark);
  font-size: 20px;
  text-shadow: 2px 2px 0 var(--tethered-blue);
}

/* Adding comprehensive responsive styles for mobile and tablet */
@media (max-width: 768px) {
  /* Navigation adjustments */
  .nav-container {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .logo-text {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .logo-year {
    font-size: 16px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .nav-menu a {
    display: block;
    text-align: center;
    font-size: 16px;
    padding: 12px 15px;
  }

  /* Hero section adjustments */
  .hero {
    height: auto;
    min-height: 80vh;
  }

  .hero-content {
    padding: 20px;
    margin: 10px;
    max-width: 100%;
  }

  .title-main {
    font-size: 28px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 var(--tethered-blue-dark), 4px 4px 0 var(--tethered-blue-darker);
  }

  .title-line {
    font-size: 14px;
    letter-spacing: 3px;
  }

  .hero-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
  }

  /* Buttons responsive */
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .retro-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    box-shadow: 4px 4px 0 var(--tethered-blue-dark);
  }

  .retro-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--tethered-blue-dark);
  }

  /* Bandcamp player responsive */
  .bandcamp-player {
    padding: 10px;
    margin: 20px 0;
    width: 100%;
    box-shadow: 0 0 15px rgba(74, 159, 229, 0.3), 4px 4px 0 var(--tethered-blue-dark);
  }

  .bandcamp-player:hover {
    box-shadow: 0 0 20px rgba(74, 159, 229, 0.4), 6px 6px 0 var(--tethered-blue-dark);
    transform: translate(-1px, -1px);
  }

  .bandcamp-player iframe {
    width: 100%;
    max-width: 350px;
    height: 470px;
  }

  /* Content section adjustments */
  .content-section {
    margin-top: 15px;
  }

  .section-text {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Info box responsive */
  .info-box {
    padding: 15px;
    margin: 15px 0;
  }

  .info-box p {
    font-size: 14px;
    word-wrap: break-word;
  }

  /* Carousel adjustments */
  .carousel-container {
    margin: 20px 0;
  }

  .carousel-wrapper {
    box-shadow: 0 0 15px rgba(74, 159, 229, 0.3), 4px 4px 0 var(--tethered-blue-dark);
  }

  .carousel-slide {
    padding: 15px;
  }

  .carousel-arrow {
    font-size: 24px;
    padding: 8px 15px;
    box-shadow: 3px 3px 0 var(--tethered-blue-dark);
  }

  .carousel-arrow:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 var(--tethered-blue-dark);
  }

  .carousel-nav {
    gap: 10px;
    flex-wrap: wrap;
  }

  .carousel-dots {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .carousel-dot {
    font-size: 20px;
  }

  /* Placeholder box responsive */
  .placeholder-box {
    height: auto;
    min-height: 120px;
    font-size: 14px;
    padding: 15px;
    box-shadow: 3px 3px 0 var(--tethered-blue-dark);
  }

  .placeholder-box:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 var(--tethered-blue-dark);
  }

  /* Setlist responsive - change to single column on mobile */
  .setlist {
    padding: 12px;
    margin-top: 15px;
  }

  .setlist-title {
    font-size: 16px;
  }

  .songs-list {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .song-item {
    font-size: 13px;
  }

  /* Gallery grid responsive */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-caption {
    font-size: 13px;
  }

  /* Footer responsive */
  .retro-footer {
    padding: 20px 15px;
  }

  .footer-badges {
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-badges .badge-svg {
    height: 70px;
    width: 70px;
  }

  .footer-text {
    font-size: 12px;
    word-wrap: break-word;
  }

  .visitor-counter {
    font-size: 14px;
  }

  .counter-number {
    font-size: 16px;
    word-break: break-all;
  }

  /* Corner decorations smaller on mobile */
  .corner-decoration {
    width: 15px;
    height: 15px;
  }

  /* Status badge responsive */
  .status-badge {
    padding: 8px 15px;
    margin-bottom: 20px;
  }

  .status-badge .blink {
    font-size: 16px;
  }
}

/* Tablet adjustments (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-container {
    padding: 18px;
  }

  .logo-text {
    font-size: 28px;
  }

  .nav-menu a {
    font-size: 16px;
    padding: 10px 18px;
  }

  .hero-content {
    padding: 30px;
    max-width: 700px;
  }

  .title-main {
    font-size: 42px;
  }

  .title-line {
    font-size: 20px;
  }

  .bandcamp-player iframe {
    width: 350px;
  }

  .carousel-slide {
    padding: 18px;
  }

  .songs-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-badges .badge-svg {
    height: 80px;
    width: 80px;
  }
}

