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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  width: 100%;
  color: #000;
  font-family: 'Courier Prime', Courier, monospace;
  overflow-y: scroll;
  overflow-x: hidden;
}

/* SECTIONS */
.section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  scroll-snap-align: start;
}

/* ===================== */
/* SECTION 1 — MAIN      */
/* ===================== */

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.42);
}

.top-left {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  z-index: 10;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: #000;
  text-transform: uppercase;
  opacity: 0.5;
}

.top-right {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 10;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: #000;
  text-transform: uppercase;
  opacity: 0.5;
}

.divider-a {
  position: absolute;
  top: 3rem;
  left: 0;
  width: 100%;
  height: 0.5px;
  background: rgba(0,0,0,0.15);
  z-index: 10;
}

.content {
  position: absolute;
  top: 3rem;
  left: 0;
  width: 100%;
  bottom: 12rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tagline {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: #000;
  text-transform: lowercase;
  opacity: 0.55;
}

.divider-b {
  position: absolute;
  bottom: 10rem;
  left: 0;
  width: 100%;
  height: 0.5px;
  background: rgba(0,0,0,0.15);
  z-index: 10;
}

.album-strip-wrapper {
  position: absolute;
  bottom: 5.5rem;
  left: 0;
  width: 100%;
  height: 70px;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0.4rem 0;
}

.album-strip {
  display: inline-flex;
  gap: 8px;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
  will-change: transform;
}

.album-strip img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  opacity: 0.75;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.divider-c {
  position: absolute;
  bottom: 5rem;
  left: 0;
  width: 100%;
  height: 0.5px;
  background: rgba(0,0,0,0.15);
  z-index: 10;
}

.bottom-links {
  position: absolute;
  bottom: 3.25rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.playlist-link {
  font-family: 'Courier Prime', Courier, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.playlist-link:hover { opacity: 1; }

.footer {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 10;
  padding: 0 1.5rem;
}

.footer-link {
  color: #000;
  text-decoration: none;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.footer-link:hover { opacity: 1; }

.footer-copy {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: #000;
  opacity: 0.35;
}

.floating-ticket {
  position: absolute;
  z-index: 100;
  font-family: 'Courier Prime', Courier, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: #000;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.4);
  padding: 6px 14px;
  background: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.floating-ticket:hover {
  background: #000;
  color: #fff;
}

/* ===================== */
/* SECTION 2 — TICKETS   */
/* ===================== */

.tickets-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.tickets-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tickets-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.tickets-top-left {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  z-index: 10;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: #fff;
  text-transform: uppercase;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.tickets-top-left:hover { opacity: 1; }

.tickets-top-right {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 10;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: #fff;
  text-transform: uppercase;
  opacity: 0.5;
}

.tickets-top-divider {
  position: absolute;
  top: 3rem;
  left: 0;
  width: 100%;
  height: 0.5px;
  background: rgba(255,255,255,0.25);
  z-index: 10;
}

.tickets-album-strip-wrapper {
  position: absolute;
  top: 3.5rem;
  left: 0;
  width: 100%;
  height: 90px;
  overflow: hidden;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.2rem 0;
}

.tickets-album-strip-label {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: #fff;
  opacity: 0.35;
  text-align: center;
  margin-bottom: 0.4rem;
  text-transform: lowercase;
  width: 100%;
  flex-shrink: 0;
}

.tickets-album-strip {
  display: inline-flex;
  gap: 8px;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
  will-change: transform;
}

.tickets-album-strip img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  opacity: 0.85;
}

.tickets-album-divider {
  position: absolute;
  top: 8rem;
  left: 0;
  width: 100%;
  height: 0.5px;
  background: rgba(255,255,255,0.25);
  z-index: 10;
}

.tickets-content {
  position: absolute;
  top: 8rem;
  left: 0;
  width: 100%;
  bottom: 18rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  padding: 1rem 2rem;
}

.tickets-message {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  display: block;
  white-space: nowrap;
}

.ticket-link {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.75rem 1.25rem;
  background: transparent;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.ticket-link:hover {
  background: #fff;
  color: #000;
}

/* DECK */
.deck-section {
  position: absolute;
  bottom: 3.5rem;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.deck-divider-top {
  width: 100%;
  height: 0.5px;
  background: rgba(255,255,255,0.25);
  margin-bottom: 1.25rem;
}

.deck-divider-bottom {
  width: 100%;
  height: 0.5px;
  background: rgba(255,255,255,0.25);
  margin-top: 1.25rem;
}

.deck {
  position: relative;
  width: 140px;
  height: 210px;
}

.card {
  position: absolute;
  width: 140px;
  height: 210px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  -webkit-tap-highlight-color: transparent;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.card:nth-child(1) { transform: rotate(-12deg) translateX(-160px); z-index: 1; }
.card:nth-child(2) { transform: rotate(-6deg) translateX(-80px); z-index: 2; }
.card:nth-child(3) { transform: rotate(0deg) translateX(0px); z-index: 3; }
.card:nth-child(4) { transform: rotate(6deg) translateX(80px); z-index: 2; }
.card:nth-child(5) { transform: rotate(12deg) translateX(160px); z-index: 1; }

@media (hover: hover) {
  .card:hover {
    transform: rotate(0deg) translateX(0px) scale(1.9) translateY(-25px) !important;
    z-index: 100 !important;
    box-shadow: 10px 10px 40px rgba(0,0,0,0.5);
  }
}

.card.active {
  transform: rotate(0deg) translateX(0px) scale(1.7) translateY(-25px) !important;
  z-index: 100 !important;
  box-shadow: 10px 10px 40px rgba(0,0,0,0.5);
}

.tickets-footer {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 10;
  padding: 0 1.5rem;
}

.tickets-footer-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.tickets-footer-link:hover { opacity: 1; }

.tickets-footer-copy {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: #fff;
  opacity: 0.35;
}

@media (max-width: 768px) {
  .album-strip img { width: 55px; height: 55px; }
  .tickets-album-strip img { width: 55px; height: 55px; }
  .footer { gap: 1rem; flex-wrap: wrap; }
  .tickets-footer { gap: 1rem; flex-wrap: wrap; }
  .card:nth-child(1) { transform: rotate(-12deg) translateX(-100px); }
  .card:nth-child(2) { transform: rotate(-6deg) translateX(-50px); }
  .card:nth-child(3) { transform: rotate(0deg) translateX(0px); }
  .card:nth-child(4) { transform: rotate(6deg) translateX(50px); }
  .card:nth-child(5) { transform: rotate(12deg) translateX(100px); }
  .card.active { transform: rotate(0deg) translateX(0px) scale(1.4) translateY(-20px) !important; }
  .ticket-link { font-size: 0.55rem; padding: 0.6rem 0.75rem; letter-spacing: 0.1em; }
}
