/* ===========================
   BASE & RESET
=========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --gray: #111111;
  --gray-mid: #222222;
  --gray-light: #444444;
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --letter-spacing: 0.1em;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  letter-spacing: var(--letter-spacing);
  overflow-x: hidden;
}

a {
  color: var(--white);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===========================
   HEADER
=========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: var(--black);
  border-bottom: 1px solid #1a1a1a;
}

.nav-left {
  display: flex;
  gap: 28px;
}

.nav-left a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.nav-left a:hover {
  opacity: 0.6;
}

.logo {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-right {
  display: flex;
  align-items: center;
}

.cart-btn {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
  transition: opacity 0.2s;
}

.cart-btn:hover {
  opacity: 0.6;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.35);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-title {
  font-size: clamp(36px, 8vw, 90px);
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  line-height: 1;
}

.hero-sub {
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 500;
  opacity: 0.7;
  text-transform: uppercase;
}

/* ===========================
   BUTTONS
=========================== */
.btn-outline {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  padding: 14px 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-solid {
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--black);
  padding: 14px 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font);
}

.btn-solid:hover {
  background: transparent;
  color: var(--white);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 10px;
}

/* ===========================
   SECTIONS
=========================== */
.section {
  padding: 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 48px;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 16px;
}

/* ===========================
   SHOP GRID
=========================== */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.card {
  cursor: pointer;
}

.card-img-placeholder {
  background: var(--gray-mid);
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
  transition: opacity 0.2s;
}

.card:hover .card-img-placeholder {
  opacity: 0.7;
}

.card-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-price {
  font-size: 11px;
  letter-spacing: 0.05em;
}

.badge {
  font-size: 8px;
  background: var(--white);
  color: var(--black);
  padding: 2px 5px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.center-btn {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

/* ===========================
   MUSIC SECTION
=========================== */
.music-section {
  background: var(--black);
  padding: 120px 60px;
}

.music-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 400px;
  margin: 0 auto;
}

.vinyl-svg {
  width: 240px;
  height: 96px;
  opacity: 0.85;
}

.parental-advisory {
  display: flex;
  justify-content: center;
}

.pa-box {
  border: 1px solid var(--white);
  padding: 5px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  width: 90px;
}

.pa-top {
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pa-mid {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pa-bot {
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.listen-btn {
  margin-top: 8px;
}

/* ===========================
   VIDEOS SECTION
=========================== */
.video-wrapper {
  display: flex;
  justify-content: center;
}

.video-thumb {
  position: relative;
  width: 100%;
  max-width: 760px;
  cursor: pointer;
}

.video-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.6);
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.9);
  color: var(--black);
  border: none;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
  padding-left: 4px;
}

.play-btn:hover {
  background: var(--white);
}

/* ===========================
   TOUR SECTION
=========================== */
.tour-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tour-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
  border-bottom: 1px solid #1a1a1a;
}

.tour-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  min-width: 60px;
  opacity: 0.7;
}

.tour-city {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  flex: 1;
}

.tour-venue {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  flex: 1;
}

/* ===========================
   SIGN UP SECTION
=========================== */
.signup-section {
  padding: 80px 60px;
  max-width: 100%;
  background: var(--black);
}

.signup-box {
  border: 1px solid #2a2a2a;
  padding: 60px 40px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.signup-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.signup-sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}

.signup-form {
  display: flex;
  gap: 0;
  width: 100%;
  margin-top: 8px;
}

.email-input {
  background: transparent;
  border: 1px solid #444;
  border-right: none;
  color: var(--white);
  padding: 14px 20px;
  font-size: 11px;
  letter-spacing: 0.15em;
  flex: 1;
  font-family: var(--font);
  outline: none;
  text-transform: uppercase;
}

.email-input::placeholder {
  color: #555;
  letter-spacing: 0.15em;
}

.email-input:focus {
  border-color: #666;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  border-top: 1px solid #1a1a1a;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social a {
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-social a:hover {
  opacity: 1;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

/* ===========================
   MODAL — LISTEN NOW
=========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: #111;
  border: 1px solid #222;
  width: 100%;
  max-width: 420px;
  padding: 40px 32px 32px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.2s;
  font-family: var(--font);
}

.modal-close:hover {
  opacity: 1;
}

.modal-art {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  overflow: hidden;
}

.modal-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.modal-artist {
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.modal-subtitle {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 28px;
}

.stream-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stream-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #1e1e1e;
  transition: background 0.15s;
}

.stream-item:first-child {
  border-top: 1px solid #1e1e1e;
}

.stream-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stream-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stream-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.stream-btn {
  background: transparent;
  border: 1px solid #333;
  color: var(--white);
  padding: 7px 18px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: var(--font);
}

.stream-btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* scrollbar inside modal */
.modal::-webkit-scrollbar {
  width: 3px;
}
.modal::-webkit-scrollbar-track {
  background: #111;
}
.modal::-webkit-scrollbar-thumb {
  background: #333;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header {
    padding: 16px 20px;
  }

  .nav-left {
    display: none;
  }

  .section {
    padding: 60px 24px;
  }

  .tour-item {
    flex-wrap: wrap;
    gap: 12px;
  }

  .tour-venue {
    display: none;
  }

  .footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 24px 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
}

@media (max-width: 500px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .signup-form {
    flex-direction: column;
  }

  .email-input {
    border-right: 1px solid #444;
    border-bottom: none;
  }

  .modal {
    padding: 32px 20px 24px;
    margin: 16px;
    max-width: calc(100% - 32px);
  }

  .modal-art {
    width: 140px;
    height: 140px;
  }
}
