@font-face {
  font-family: 'TTPaplane';
  src: url('fonts/TT-Paplane-Regular.otf') format('opentype');
  font-display: swap;
}
@font-face {
  font-family: 'NeueBrucke';
  src: url('fonts/NeueBrucke-Regular.otf') format('opentype');
  font-display: swap;
}
:root {
  --white: #fff;
  --black: #000;
  --yellow: #ff003b;
  --red: #fff300;
}

  * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -o-font-smoothing: antialiased;
  -webkit-appearance:none;
}

.countdown-timer {
  font-size: 1.5rem;
  font-weight: 200;
  text-align: center;
  margin-bottom: 0;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
  color: var(--yellow);
}
.hero-ticketing-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.ticket-launch-reminder.hero-ticket-launch-reminder {
  pointer-events: auto;
  min-width: 0;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 14px;
  font-size: 14px;
  letter-spacing: 0.16em;
  box-shadow: 0 0 14px rgba(255, 243, 0, 0.32);
}
.countdown-days {
  color: var(--yellow);
}
.countdown-hours,
.countdown-minutes {
  color: var(--yellow);
}

#tip-hint {
  position: fixed;
  top: 20%;
  left: 30px;
  color: #00ff5f;
  font-family: 'Courier New', monospace;
  font-size: 16px;
  padding: 12px 18px;

  border-radius: 4px;
  z-index: 9999;
  max-width: 320px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#tip-hint.show {
  opacity: 1;
}

#revolut-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#revolut-popup.show {
  opacity: 1;
  pointer-events: all;
}

.popup-content {
  background: #111;
  padding: 50px 50px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 0 22px var(--yellow), 0 0 60px var(--red);
  position: relative;
  max-width: 90vw;
  width: 50%; /* ← SZERSZE OKNO */
  color: white;
  z-index: 10;
      font-size: 16px;
  font-family: 'TTPaplane', Arial, sans-serif;
  animation: popup-glow 0.6s ease-in-out;
}
@keyframes popup-glow {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.popup-content h2 {
  font-size: 44px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.popup-content .highlight {
  color: var(--yellow);
  text-shadow: 0 0 10px var(--red), 0 0 8px var(--yellow);
}

.popup-content p {
  font-size: 26px;
  margin-bottom: 24px;
}

.popup-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 20px;
  font-weight: bold;
  color: var(--black);
  background: var(--yellow);
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 10px var(--yellow);
  transition: background 0.2s;
}

.popup-btn:hover {
  background: var(--red);
  color: var(--yellow);
}

#popup-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  color: var(--yellow);
  border: none;
  font-size: 28px;
  cursor: pointer;
}

.dollar-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
}

.dollar {
  position: absolute;
  top: -40px;
  font-size: 48px;
  animation: fall linear;
  color: #00ff00;
  font-weight: bold;
  filter: drop-shadow(0 0 2px #000);
}

@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(120vh) rotate(360deg);
    opacity: 1;
  }
}



html, body {
  margin: 0; padding: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'TTPaplane', Arial, sans-serif;
  min-height: 100vh;
  box-sizing: border-box;
  text-transform: uppercase;
}
a, button { text-transform: uppercase; }

.scroll-marquee, .main-headline, .center-hero {
  z-index: 1 !important;
  position: relative;
}
.bg-video {
  z-index: 0 !important;
}


.mobile-nav,
.close-mobile-nav {
  z-index: 99999 !important;
}

.artist-card,
.artist-image,
.artist-name,
.hof-card,
.hof-image,
.hof-name {
  z-index: 1 !important;
}

.jd-logo {
  height: 150px;
  vertical-align: middle;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.partner-logo {
  width: min(260px, 60vw);
  height: auto;
  display: block;
  margin: 0 auto 30px;
}


.clout-merch-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  pointer-events: auto;
  animation: floaty 3s ease-in-out infinite;
}

.merch-icon-text {
  font-size: 40px;
  color: var(--yellow);
  text-shadow: 0 0 6px var(--red), 0 0 14px var(--yellow);
  animation: spin 4s linear infinite;
  transform-origin: center;
}

.merch-label {
  font-family: 'TTPaplane', Arial, sans-serif;
  font-size: 12px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.65);
  padding: 5px 12px;
  border-radius: 8px;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 0 8px var(--yellow);
}

@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 600px) {
  .clout-merch-btn {
    bottom: 14px;
    right: 14px;
  }
  .merch-icon-text {
    font-size: 32px;
  }
  .merch-label {
    font-size: 11px;
    padding: 4px 10px;
  }
}


.scroll-marquee {
  background: var(--black);
  width: 100vw;
  color: var(--white);
  overflow: hidden;
  border-bottom: 1px solid #222;
  font-family: 'TTPaplane', Arial, sans-serif;
  font-size: 13px;
  height: 32px;
  display: flex;
  align-items: center;
  letter-spacing: 2px;
  position: relative;
  z-index: 1 !important;
  white-space: nowrap;
  user-select: none;
}
.scroll-marquee .scroll-track {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 12s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0);}
  100% { transform: translateX(-50%);}
}

.main-header {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
  overflow: hidden;
}
.bg-hero-img {
  position: absolute;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.bg-video-yt {
  position: absolute;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.bg-video-yt iframe {
  position: absolute;
  top: 50%; left: 50%;
  /* Cover the viewport, then scale up slightly so YouTube's logo crops off-screen */
  transform: translate(-50%, -50%) scale(1.15);
  width: 100vw;
  height: 56.25vw;        /* 16:9 based on width */
  min-width: 177.78vh;    /* 16:9 based on height */
  min-height: 100vh;
  border: 0;
  pointer-events: none;
}
.bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 24px 4vw 0 54px;
  box-sizing: border-box;
}
.logo-clout-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-clout {
  height: 69px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.logo-date-venue {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: 'TTPaplane', Arial, sans-serif;
  font-size: 19px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 2.4px;
  text-align: left;
  line-height: 1.13;
  text-shadow: 0 1px 11px #0008;
  margin-left: 8px;
}
.menu-right {
  display: flex;
  gap: 32px;
  align-items: center;
  padding-right: 0;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.menu-link {
  font-family: 'TTPaplane', Arial, sans-serif;
  font-size: 13px;
  color: var(--white);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 1px;
  font-weight: 400;
  letter-spacing: 2px;
  transition: color .15s, border .19s;
  text-transform: uppercase;
  white-space: nowrap;
}
.menu-link:hover, .menu-link.active {
  border-bottom: 2px solid var(--yellow);
  color: var(--yellow);
}

.tixy-link {
  color: var(--black);
  background: var(--yellow);
  border-radius: 7px;
  padding: 3px 18px;
  font-size: 13px;
  border: 2px solid var(--yellow);
  text-shadow: 0 1px 8px #fffa;
  margin-left: 10px;
  font-weight: 700;
  box-shadow: 0 0 12px var(--yellow);
}

.tixy-link:hover {
  color: var(--yellow);
  background: var(--red);
      border: 2px solid var(--red);
      box-shadow: 0 0 12px var(--red);
}


.timetable-section {
  text-align: center;
  margin: 80px 0;
}

.timetable-title {
  font-size: 3em; /* większy nagłówek */
  margin-bottom: 40px;
  font-weight: bold;
  letter-spacing: 2px;
}

.timetable-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.timetable-day {
  flex: 1 1 400px; /* większe minimum */
  max-width: 500px; /* większe maksimum */
}


.timetable-day h3 {
  font-size: 2em; /* większy podtytuł */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timetable-img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2); /* mocniejszy cień */
  transition: transform 0.3s ease;
}

.timetable-img:hover {
  transform: scale(1.03); /* lekki zoom przy najechaniu */
}


.tba-card {
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 180px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.tba-glitch {
  position: relative;
  color: #fff;
  font-size: 2em;
  font-weight: bold;
}

.tba-glitch::before,
.tba-glitch::after {
  content: 'TBA';
  position: absolute;
  left: 0;
  width: 100%;
  color: #fff;
}

.tba-glitch::before {
  left: 2px;
  text-shadow: -2px 0 red;
  animation: glitch 1s infinite linear alternate-reverse;
}

.tba-glitch::after {
  left: -2px;
  text-shadow: -2px 0 blue;
  animation: glitch 1s infinite linear alternate;
}

@keyframes glitch {
  0% {
    clip-path: inset(0 0 90% 0);
    transform: translate(0);
  }
  20% {
    clip-path: inset(0 0 80% 0);
    transform: translate(-2px, 2px);
  }
  40% {
    clip-path: inset(0 0 70% 0);
    transform: translate(-2px, -2px);
  }
  60% {
    clip-path: inset(0 0 60% 0);
    transform: translate(2px, 2px);
  }
  80% {
    clip-path: inset(0 0 50% 0);
    transform: translate(2px, -2px);
  }
  100% {
    clip-path: inset(0 0 40% 0);
    transform: translate(0);
  }
}



.tba-card {
  display: flex;
  justify-content: center;
  align-items: center !important;  /* nadpisuje flex-end tylko dla TBA */
}



.center-hero {
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  width: 95vw;
  pointer-events: none;
}
.main-headline {
  font-family: 'NeueBrucke', Arial, sans-serif;
  font-size: 84px;
  color: var(--white);
  letter-spacing: 2.5px;
  text-align: center;
  margin-bottom: 0;
  font-weight: 700;
  text-shadow: 0 0 12px #000a, 0 0 10px var(--yellow);
  text-transform: uppercase;
  pointer-events: auto;
  user-select: none;
  background: none;
  border: none;
  transition: color 0.2s, text-shadow 0.2s;
  line-height: 1.05;
}
@keyframes glitch-fade {
  0%,100% { filter: none;}
  25% { filter: blur(1.5px) brightness(1.12);}
  50% { filter: contrast(1.11) brightness(1.2);}
  70% { filter: blur(.5px);}
}
.main-headline.glitch {
  animation: glitch-text .18s steps(2,end) 2;
}
@keyframes glitch-text {
  0% { text-shadow: 2px 0 var(--yellow), -2px 0 var(--red);}
  50% { text-shadow: -2px 0 var(--yellow), 2px 0 var(--red);}
  100% { text-shadow: 0 0 24px var(--yellow);}
}
.get-tix-btn {
  pointer-events: auto;
  font-family: 'TTPaplane', Arial, sans-serif;
  font-size: 20px;
  padding: 13px 38px;
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: 17px;
  font-weight: 700;
  letter-spacing: 3px;
  box-shadow: 0 0 30px var(--yellow);
  cursor: pointer;
  transition: background .12s, color .12s, box-shadow .18s;
  text-transform: uppercase;
  text-decoration: none !important;
}
.get-tix-btn:hover {
  background: var(--red);
  color: var(--yellow);
  box-shadow: 0 0 50px var(--red);
}
.pixel-area-link {
  position: absolute;
  bottom: 5vh;
  right: 3vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  cursor: pointer;
  pointer-events: auto;
  text-decoration: none;
  user-select: none;
}
.pixel-anim {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  background: var(--yellow);
  box-shadow: 0 0 8px var(--red), 0 0 25px var(--yellow);
  border-radius: 6px;
  animation: pixel-jump 1.1s infinite cubic-bezier(.42,0,.58,1);
  display: block;
}
@keyframes pixel-jump {
  0%,100% { transform: translateY(0);}
  30% { transform: translateY(-12px);}
  55% { transform: translateY(-2px);}
  80% { transform: translateY(-8px);}
}
.pixel-text {
  color: var(--white);
  font-family: 'TTPaplane', Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: 700;
  text-shadow: 0 2px 8px #000d;
  text-transform: uppercase;
  background: rgba(0,0,0,0.22);
  padding: 3px 19px;
  border-radius: 10px;
}

.lineup-section, .hof-section {
  background: var(--black);
  padding: 60px 0 45px 0;
  text-align: center;
}
.lineup-title, .hof-title {
  font-family: 'NeueBrucke', Arial, sans-serif;
  font-size: 32px;
  color: var(--yellow);
  letter-spacing: 2px;
  margin-bottom: 38px;
  text-transform: uppercase;
}

.copy-title {
  font-family: 'NeueBrucke', Arial, sans-serif;
  font-size: 16px;
  color: var(--yellow);
  letter-spacing: 2px;
  margin-bottom: 38px;
  text-transform: uppercase;
}

.lineup-grid, .hof-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 38px;
  max-width: 1400px;
  margin: 0 auto;
}



.artist-card, .hof-card {
  width: 320px;
  height: 390px;
  position: relative;  
  overflow: hidden;
  border-radius: 24px;
  background: #111;
  display: flex;
  align-items: flex-end;
  transition: filter .12s;
  cursor: pointer;
  box-shadow: 0 0 6px var(--yellow), 0 0 3px #000c;
  filter: none;
    
}
.artist-card:hover, .hof-card:hover {
  animation: crt-glitch 0.38s steps(2,end) 1;
  filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 7px #ff003b77);
}
@keyframes crt-glitch {
  0% { filter: none;}
  12% { filter: contrast(1.35) brightness(1.12) blur(1.2px);}
  20% { filter: hue-rotate(30deg) blur(.8px);}
  26% { filter: contrast(1.33) brightness(1.19) blur(.3px);}
  38% { filter: none;}
  45% { filter: brightness(1.18) contrast(1.29) blur(.1px);}
  100% { filter: none;}
}
.artist-image, .hof-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
  border-radius: 24px;
}
.artist-name, .hof-name {
  width: 100%;
  text-align: center;
  font-size: 36px;
  line-height: .92;
  color: var(--white);
  font-family: 'NeueBrucke', Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  left: 0; right: 0;
  top: calc(100% - 54px);
  transform: translateY(-50%);
  z-index: 20;
  text-shadow: 0 1.5px 12px var(--yellow), 0 0 7px var(--red), 0 0 3px #000;
  background: none;
  padding: 8px 0 10px 0;
  margin: 0 auto;
  border-radius: 0 0 18px 18px;
  pointer-events: none;
  user-select: none;
}



.hof-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.hof-filter-btn {
  background: var(--black);
  color: var(--yellow);
  border: 2px solid var(--yellow);
  font-family: 'TTPaplane', Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 1.2px;
  border-radius: 8px;
  padding: 7px 24px;
  cursor: pointer;
  font-weight: 700;
  transition: background .17s, color .17s, border .17s;
}
.hof-filter-btn.active,
.hof-filter-btn:hover {
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
}

.about-section {
  text-align: center;
  padding: 60px 20px 50px 20px;
  background: var(--black);
}
.about-title {
  color: var(--yellow);
  font-size: 24px;
  margin-bottom: 23px;
  font-family: 'NeueBrucke', Arial, sans-serif;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.about-text {
  font-size: 16px;
  color: var(--white);
  max-width: 980px;
  margin: 0 auto;
  font-family: 'TTPaplane', Arial, sans-serif;
  line-height: 1.8;
}

.partners-section {
  text-align: center;
  padding: 48px 0 18px 0;
}
.partners-title {
  color: var(--yellow);
  font-size: 19px;
  margin-bottom: 26px;
  font-family: 'NeueBrucke', Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.partners-logos {
  display: flex;
  justify-content: center;
  gap: 54px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.partner-logo {
  height: 58px;
  width: auto;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  filter: none;
  margin: 0 14px;
  display: block;
}
.partner-logo-areal7 {
  width: min(340px, 72vw);
  height: auto;
  margin-top: 30px;
}
.partner-logo-ticketshop-page {
  width: min(220px, 52vw);
  height: auto;
  margin-top: 45px;
  filter: brightness(0) invert(1);
}

.footer {
  background: var(--black);
  border-top: 2px solid #333;
  padding: 28px 40px 12px 40px;
  font-family: 'TTPaplane', Arial, sans-serif;
  font-size: 14px;
  color: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.footer-inner {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-logo {
  height: 32px;
  margin: 0;
  vertical-align: middle;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.footer-logo-someagency {
  height: 27px;
  margin-left: 0;
}
.footer-logo-big {
  height: 28px;
  margin-left: -6px;
}
.footer-logo-ticketshop {
  height: 26px;
  filter: brightness(0) invert(1);
}
.footer-socials {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-bottom: 0;
  margin-top: 2px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.footer-socials a:nth-child(1) {
  margin-top: -4px;
}
.footer-socials a:nth-child(2) {
  margin-top: 3px;
}
.social-icon {
  width: 29px;
  height: 29px;
  opacity: 0.93;
  transition: opacity .18s, transform .15s;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.social-icon:hover {
  opacity: 1;
  transform: scale(1.11) rotate(-6deg);
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 5px;
}
.footer-left span {
  white-space: nowrap;
}
.footer-links {
  display: flex;
  gap: 15px;
  margin-top: 18px;
  font-size: 13px;
}
.footer-links.is-hidden-temp {
  display: none !important;
}
.footer-link {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid #444;
  font-family: 'TTPaplane', Arial, sans-serif;
  transition: color 0.14s;
}
.footer-link:hover {
  color: var(--yellow);
}
.footer-copyright {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 2px;
  margin-top: 9px;
  font-family: 'TTPaplane', Arial, sans-serif;
  width: 100%;
  text-align: left;
  display: block;
}
@media (max-width: 1350px) {
  .artist-card, .hof-card {width: 240px; height: 340px;}
  .artist-name, .hof-name {font-size: 30px; padding: 6px 0 7px 0;}
}
@media (max-width: 950px) {
  .lineup-grid, .hof-grid {gap: 18px;}
  .artist-card, .hof-card {width: 150px; height: 180px;}
  .artist-name, .hof-name {font-size: 12px;}
  .main-headline {font-size: 32px;}
  .ticket-launch-reminder.hero-ticket-launch-reminder {font-size: 12px; min-height: 42px; padding: 10px 16px;}
}

@media (max-width: 700px) {
  .header-top {padding: 18px 2vw;}
  .artist-card, .hof-card {width: 92vw; height: 40vw; min-height: 100px;}
  .lineup-grid, .hof-grid {flex-direction: column;gap:16px;}
  .main-headline {font-size: 35px;}
  .pixel-area-link {right: 2vw; bottom: 2vw;}
  .footer-inner {flex-direction: column;align-items: flex-start;}
  .footer-socials {justify-content: flex-start;}
}

@media (max-width: 700px) {
  .lineup-grid, .hof-grid {
    flex-direction: column;
    align-items: center;      /* â TO DODAJE CENTROWANIE! */
    gap: 16px;
  }
  .artist-card, .hof-card {
    width: 92vw;
    height: 115vw;
    min-height: 100px;
    margin: 0 auto;           /* â TO ZABEZPIECZA CENTRUM */
  }
  .artist-name, .hof-name {font-size: 40px; top: calc(100% - 15vw);}
  .hero-ticketing-wrap {gap: 4px;}
  .ticket-launch-reminder.hero-ticket-launch-reminder {
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
}


.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  cursor: pointer;
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 29px;
  height: 4px;
  margin: 4px 0;
  background: var(--yellow);
  border-radius: 2px;
  transition: all 0.25s;
}
@media (max-width: 950px) {
  .menu-right { display: none !important; }
  .hamburger { display: flex; }
}

.mobile-nav {
  display: none;
  position: fixed;
  z-index: 99999 !important;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.9);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}


.mobile-nav.active {
  display: flex;
}
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav .menu-link {
  font-size: 2.1rem;
  letter-spacing: 2.5px;
  padding: 10px 10px;
  color: var(--white);
  background: none;
  border: none;
  text-decoration: none;
  font-family: 'TTPaplane', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 9px;
  margin: 0 auto;
  transition: background .14s, color .14s;
}
.mobile-nav .tixy-link {
  color: var(--black);
  background: var(--yellow);
  font-weight: 800;
  border-radius: 7px;
  margin-top: 11px;
}
.close-mobile-nav {
  position: absolute;
  top: 23px; right: 32px;
  background: none;
  border: none;
  color: var(--yellow);
  font-size: 44px;
  font-weight: 700;
  cursor: pointer;
  z-index: 100000 !important; /* jeszcze wyĹźej! */
}

.mobile-nav,
.close-mobile-nav {
  position: fixed !important;
  z-index: 99999 !important;
}

.artist-card,
.artist-image,
.artist-name,
.lineup-grid,
.main-header {
  z-index: auto !important;

}


#glitch-loader {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: transparent;        /* <-- UWAGA! */
  z-index: 110000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .35s;
  pointer-events: all;
}
#pixel-reveal {
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0; top: 0;
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  grid-template-rows: repeat(11, 1fr);
  z-index: 1;
}
.pixel-cell {
  width: 100%; height: 100%;
  background: #000;
  opacity: 1;
  transition: opacity .25s cubic-bezier(.42,0,.58,1);
  animation: crt-pixel-flicker .4s infinite alternate;
  box-shadow: 0 0 8px #ff003b10, 0 0 16px #fff30010;
  pointer-events: none;
}
@keyframes crt-pixel-flicker {
  0% { filter: brightness(0.98) blur(1.5px);}
  12% { filter: brightness(1.3) blur(.8px);}
  48% { filter: contrast(1.1) brightness(1.18);}
  74% { filter: blur(.7px);}
  100% { filter: brightness(0.92);}
}
body.loaded #glitch-loader {
  opacity: 0;
  pointer-events: none;
}

body.custom-cursor * { cursor: none !important; }

.cursor-fire {
  pointer-events: none;
  position: fixed;
  z-index: 120000;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity .16s, transform .14s;
}
.cursor-fire.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.09);
}
.cursor-fire-pixel {
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: radial-gradient(circle, var(--yellow) 70%, var(--red) 100%);
  opacity: 0.62;
  animation: fire-pixel-anim 0.28s linear infinite;
  pointer-events: none;
}
@keyframes fire-pixel-anim {
  0% { transform: scale(1) translateY(0) rotate(0deg); opacity:0.7;}
  70% { transform: scale(1.2) translateY(-10px) rotate(10deg);}
  100% { transform: scale(0.7) translateY(-19px) rotate(-12deg); opacity:0;}
}


.kontakt-list { display: flex; flex-direction: column; gap: 20px; max-width: 480px; margin: 0 auto; }
    .kontakt-item {
      background: rgba(0,0,0,0.54);
      border: 2px solid var(--yellow);
      border-radius: 14px;
      padding: 18px 26px 14px 26px;
      font-family: 'TTPaplane', Arial, sans-serif;
      font-size: 18px;
      color: var(--white);
      box-shadow: 0 2px 20px #ff003b0c;
      transition: border-color .17s, box-shadow .18s;
      cursor: pointer;
      position: relative;
      overflow: visible;
      min-width: 240px;
    }
    .kontakt-label {
      font-weight: 700;
      font-size: 15px;
      color: var(--yellow);
      letter-spacing: 1.5px;
      margin-bottom: 2px;
      display: block;
      text-transform: uppercase;
    }

.kontakt-mail {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  background: rgba(255,243,0,0.15);
  color: var(--white);
  font-size: 18px;
  padding: 8px 16px 8px 10px;
  border-radius: 7px;
  box-shadow: 0 1px 7px #ff003b22;
  letter-spacing: 1px;
  margin-top: 12px;
  margin-bottom: 4px;
  min-width: 320px;         /* <-- POWIÄKSZONE! */
  max-width: 92vw;
  font-family: inherit;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, 0) scale(0.96);
  z-index: 12;
  transition: background .14s, opacity .17s, transform .16s;
  text-align: center;
  white-space: nowrap;      /* <-- ZAPOBIEGA ĹAMANIU */
  gap: 12px;                /* <-- ODSUWAMY IKONÄ */
}

.kontakt-item.open .kontakt-mail {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -14px) scale(1.04);
  background: var(--yellow);
  color: #111;
  border: 1px solid var(--yellow);
  box-shadow: 0 2px 16px #ff003b66;
}

.copy-btn {
  background: none;
  border: none;
  color: var(--red);
  font-size: 1.18em;
  margin-left: 9px;
  cursor: pointer;
  padding: 0 2px;
  transition: color .18s;
  font-weight: 700;
  vertical-align: middle;
}

.copy-btn:active, .copy-btn:focus { color: var(--yellow);}

.copy-btn.copied {
  color: #111 !important;
}

/* ============ TICKETS PAGE ============ */
.tickets-section {
  max-width: 1300px;
  margin: 60px auto 80px;
  padding: 0 30px;
}
.tickets-section .hof-title {
  margin-bottom: 50px;
}
.tickets-early-bird-note {
  margin: -20px auto 30px;
  max-width: 760px;
  text-align: center;
  font-family: 'TTPaplane', Arial, sans-serif;
  font-size: 24px;
  letter-spacing: 0.12em;
  color: var(--yellow);
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 243, 0, 0.28);
  line-height: 1.2;
}
.tickets-early-bird-note-primary,
.tickets-early-bird-note-secondary {
  display: block;
}
.tickets-early-bird-note-secondary {
  margin-top: 8px;
  font-size: 19px;
  color: var(--white);
}
.tickets-launch-hidden {
  display: none;
}
.ticket-launch-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 42px 34px 36px;
  border: 2px solid var(--yellow);
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 243, 0, 0.08), rgba(255, 0, 59, 0.04) 42%, rgba(0, 0, 0, 0.92) 100%),
    #111;
  box-shadow: 0 0 12px rgba(255, 0, 59, 0.22), 0 0 4px rgba(255, 243, 0, 0.45);
  text-align: center;
}
.ticket-launch-kicker {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  letter-spacing: 0.28em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.ticket-launch-title {
  font-family: 'NeueBrucke', 'Arial Black', sans-serif;
  font-size: 54px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.ticket-launch-date {
  color: var(--yellow);
  font-family: 'TTPaplane', Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.16em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.ticket-launch-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.ticket-launch-unit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 118px;
  border: 2px solid rgba(255, 243, 0, 0.32);
  border-radius: 20px;
  background: rgba(0,0,0,0.46);
  box-shadow: inset 0 0 18px rgba(255,255,255,0.02), 0 0 10px rgba(255, 0, 59, 0.12);
}
.ticket-launch-unit strong {
  display: block;
  font-family: 'NeueBrucke', 'Arial Black', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.04em;
}
.ticket-launch-unit span {
  margin-top: 12px;
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ticket-launch-copy {
  max-width: 720px;
  margin: 0 auto 26px;
  color: rgba(255,255,255,0.86);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.ticket-launch-reminder {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 280px;
  min-height: 64px;
  padding: 14px 28px;
  box-sizing: border-box;
  max-width: 100%;
  border: none;
  cursor: pointer;
  border-radius: 18px;
  background: var(--yellow);
  color: var(--black);
  text-decoration: none;
  font-family: 'TTPaplane', Arial, sans-serif;
  font-size: 21px;
  letter-spacing: 0.18em;
  box-shadow: 0 0 16px rgba(255, 243, 0, 0.55);
  transition: background 0.14s, color 0.14s, transform 0.16s, box-shadow 0.16s;
}
.ticket-launch-reminder:hover {
  background: var(--red);
  color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(255, 0, 59, 0.38);
}
.ticket-email-modal {
  position: fixed;
  inset: 0;
  z-index: 10030;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.ticket-email-modal[hidden] {
  display: none !important;
}
.ticket-email-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(7px);
}
.ticket-email-modal-dialog {
  position: relative;
  width: min(520px, calc(100vw - 32px));
  border-radius: 24px;
  border: 2px solid var(--yellow);
  background:
    linear-gradient(160deg, rgba(255, 243, 0, 0.08), rgba(255, 0, 59, 0.06) 52%, rgba(0, 0, 0, 0.96)),
    #111;
  box-shadow: 0 0 18px rgba(255, 0, 59, 0.24), 0 0 4px rgba(255, 243, 0, 0.36);
  overflow: hidden;
}
.ticket-email-modal-panel {
  padding: 34px 32px 30px;
}
.ticket-email-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.86);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, transform 0.14s;
}
.ticket-email-modal-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--yellow);
  transform: translateY(-1px);
}
.ticket-email-modal-kicker {
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ticket-email-modal-title {
  margin: 0 0 12px;
  color: var(--white);
  font-family: 'NeueBrucke', 'Arial Black', sans-serif;
  font-size: 42px;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.ticket-email-modal-copy {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.6;
}
.ticket-email-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ticket-email-label {
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ticket-email-input {
  width: 100%;
  min-height: 60px;
  padding: 0 18px;
  border-radius: 16px;
  border: 2px solid rgba(255, 243, 0, 0.22);
  background: rgba(0,0,0,0.52);
  color: var(--white);
  font-family: 'TTPaplane', Arial, sans-serif;
  font-size: 18px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.14s, box-shadow 0.14s;
}
.ticket-email-input::placeholder {
  color: rgba(255,255,255,0.34);
}
.ticket-email-input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 243, 0, 0.12);
}
.ticket-email-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 4px;
}
.ticket-email-btn {
  appearance: none;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 16px;
  border: none;
  font-family: 'TTPaplane', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, transform 0.14s, box-shadow 0.14s;
}
.ticket-email-btn:hover {
  transform: translateY(-1px);
}
.ticket-email-btn-secondary {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.08);
}
.ticket-email-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}
.ticket-email-btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 0 12px rgba(255, 243, 0, 0.3);
}
.ticket-email-btn-primary:hover {
  background: var(--red);
  color: var(--yellow);
  box-shadow: 0 0 16px rgba(255, 0, 59, 0.3);
}
.ticket-email-modal-panel-success {
  text-align: left;
}
.ticket-email-modal-panel-success .ticket-email-btn {
  margin-top: 6px;
}
.ticket-email-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.ticket-email-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.14s, background 0.14s;
}
.ticket-email-consent:hover {
  border-color: rgba(255, 243, 0, 0.4);
  background: rgba(255,255,255,0.06);
}
.ticket-email-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 6px;
  background-color: rgba(0,0,0,0.45);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
  cursor: pointer;
  transition: border-color 0.14s, background-color 0.14s;
}
.ticket-email-consent input[type="checkbox"]:hover {
  border-color: var(--yellow);
}
.ticket-email-consent input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 243, 0, 0.28);
}
.ticket-email-consent input[type="checkbox"]:checked {
  background-color: var(--yellow);
  border-color: var(--yellow);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.ticket-email-consent a {
  color: var(--yellow);
  text-decoration: underline;
}
.ticket-email-error {
  color: var(--red);
  font-size: 13px;
  margin: 0;
}
.ticket-email-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.ticket-launch-helper {
  margin-top: 14px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.days-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.day-card {
  background: #111;
  border: 2px solid transparent;
  border-radius: 24px;
  padding: 28px 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 6px var(--yellow), 0 0 3px #000c;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s, filter 0.12s;
}
.day-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
  filter: brightness(1.08) contrast(1.08);
  box-shadow: 0 0 18px #ff003b77, 0 0 7px var(--red);
}
.day-label {
  font-family: 'NeueBrucke', 'Arial Black', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.05;
  text-transform: uppercase;
}
.day-date {
  font-size: 18px;
  color: var(--yellow);
  letter-spacing: 0.06em;
}
.day-lineup {
  margin-top: 20px;
  text-align: right;
}
.day-lineup .tba-glitch {
  font-size: 40px;
  letter-spacing: 0.08em;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}
.tier-grid-two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.tier-card {
  position: relative;
  background: #111;
  border: 2px solid transparent;
  border-radius: 24px;
  padding: 32px 28px 28px;
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  box-shadow: 0 0 6px var(--yellow), 0 0 3px #000c;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s, filter 0.12s;
  overflow: hidden;
}
.tier-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  filter: brightness(1.08) contrast(1.08);
  box-shadow: 0 0 18px #ff003b77, 0 0 7px var(--red);
}
.ticket-card-disabled {
  cursor: default;
}
.tier-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
  border-radius: 24px 24px 0 0;
}
.tier-card-mid .tier-bar { background: var(--red); }
.tier-card-vip .tier-bar { background: linear-gradient(90deg, var(--yellow) 0%, var(--red) 100%); }

.tier-name {
  font-family: 'NeueBrucke', 'Arial Black', sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.tier-card-vip .tier-name { color: var(--yellow); }

.tier-date {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  flex-grow: 1;
}
.tier-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
}
.tier-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow);
  font-size: 14px;
}
.tier-buy {
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  padding: 13px 38px;
  border-radius: 17px;
  display: block;
  text-decoration: none;
  font-family: 'TTPaplane', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  box-shadow: 0 0 10px var(--yellow);
  transition: background 0.12s, color 0.12s, box-shadow 0.18s;
}
.tier-card:hover .tier-buy {
  background: var(--red);
  color: var(--yellow);
  box-shadow: 0 0 17px var(--red);
}
.daily-tickets {
  margin: 64px 0 0;
}
.daily-tickets-title {
  color: var(--yellow);
  font-family: 'NeueBrucke', Arial, sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 28px;
  text-align: center;
}
.daily-ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.daily-ticket-card {
  position: relative;
  min-height: 390px;
  padding: 64px 34px 34px;
  color: var(--white);
  text-decoration: none;
  background:
    linear-gradient(155deg, rgba(255,243,0,0.08), transparent 34%),
    #111;
  border: 2px solid transparent;
  border-radius: 24px;
  box-shadow: 0 0 6px var(--yellow), 0 0 3px #000c;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s, filter 0.12s;
}
.daily-ticket-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  filter: brightness(1.08) contrast(1.08);
  box-shadow: 0 0 18px #ff003b77, 0 0 7px var(--red);
}
.daily-ticket-card.is-soldout,
.daily-ticket-soldout {
  min-height: 390px;
  cursor: default;
  pointer-events: none;
}
.daily-ticket-card.is-soldout:hover,
.daily-ticket-soldout:hover {
  border-color: transparent;
  transform: none;
  filter: none;
  box-shadow: 0 0 6px var(--yellow), 0 0 3px #000c;
}
.daily-ticket-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  border-radius: 24px 24px 0 0;
}
.daily-ticket-basic .daily-ticket-bar {
  background: var(--yellow);
}
.daily-ticket-tribune .daily-ticket-bar {
  background: var(--red);
}
.daily-ticket-vip .daily-ticket-bar {
  background: linear-gradient(90deg, var(--yellow), var(--red));
}
.daily-ticket-name {
  font-family: 'NeueBrucke', 'Arial Black', sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 42px;
}
.daily-ticket-date {
  color: var(--yellow);
  font-family: 'TTPaplane', Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 34px;
}
.daily-ticket-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.daily-ticket-features li {
  position: relative;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  padding-left: 30px;
}
.daily-ticket-features li::before {
  content: '';
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--yellow);
  filter: drop-shadow(0 0 6px var(--yellow));
}
.daily-ticket-fee {
  color: rgba(255,255,255,0.58);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: auto 0 28px;
}
.daily-ticket-buy {
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  padding: 13px 18px;
  border-radius: 17px;
  font-family: 'TTPaplane', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  box-shadow: 0 0 10px var(--yellow);
  transition: background 0.12s, color 0.12s, box-shadow 0.18s;
}
.daily-ticket-card:hover .daily-ticket-buy {
  background: var(--red);
  color: var(--yellow);
  box-shadow: 0 0 17px var(--red);
}
.daily-ticket-card.is-soldout .daily-ticket-buy,
.daily-ticket-soldout .daily-ticket-buy {
  visibility: hidden;
}
.daily-ticket-card.is-soldout::after,
.daily-ticket-soldout::after,
.soldout-stamp {
  content: 'VYPRODÁNO';
  position: absolute;
  right: 28px;
  bottom: 96px;
  width: 230px;
  transform: rotate(-24deg);
  background: var(--red);
  color: var(--white);
  font-family: 'NeueBrucke', 'Arial Black', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 17px 20px 14px;
  box-shadow: 0 0 28px rgba(255,0,59,0.5);
}
.tickets-note {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  margin-top: 30px;
}

@media (max-width: 900px) {
  .days-grid, .tier-grid, .daily-ticket-grid {
    grid-template-columns: 1fr;
  }
  .ticket-launch-panel {
    padding: 30px 18px 26px;
  }
  .ticket-launch-title {
    font-size: 36px;
  }
  .tickets-early-bird-note {
    margin: -16px auto 22px;
    padding: 0 14px;
    font-size: 17px;
    letter-spacing: 0.1em;
  }
  .tickets-early-bird-note-secondary {
    font-size: 14px;
  }
  .ticket-launch-date {
    font-size: 15px;
    line-height: 1.5;
  }
  .ticket-launch-countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
  }
  .ticket-launch-unit {
    min-height: 98px;
  }
  .ticket-launch-unit strong {
    font-size: 40px;
  }
  .ticket-launch-reminder {
    width: min(100%, 420px);
    min-width: 0;
    padding: 14px 20px;
    font-size: 18px;
  }
  .ticket-email-modal {
    padding: 16px;
  }
  .ticket-email-modal-dialog {
    width: min(100vw - 24px, 440px);
    border-radius: 20px;
  }
  .ticket-email-modal-panel {
    padding: 28px 18px 20px;
  }
  .ticket-email-modal-close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 24px;
  }
  .ticket-email-modal-title {
    font-size: 32px;
    line-height: 0.98;
    margin-bottom: 10px;
  }
  .ticket-email-modal-copy {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .ticket-email-input {
    min-height: 54px;
    font-size: 16px;
    border-radius: 14px;
  }
  .ticket-email-actions {
    gap: 10px;
  }
  .ticket-email-btn {
    width: 100%;
    min-height: 48px;
    font-size: 14px;
    border-radius: 14px;
  }
  .day-lineup .tba-glitch { font-size: 32px; }
  .tier-name { font-size: 30px; }
  .daily-ticket-card { min-height: 350px; padding: 52px 28px 28px; }
  .daily-ticket-name { font-size: 28px; margin-bottom: 28px; }
  .soldout-stamp { right: 22px; bottom: 74px; width: 210px; font-size: 24px; }
  .tickets-section { padding: 0 16px; margin: 40px auto 60px; }
}
