body {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  background: #050214;
  color: white;
}

.ticket-page {
  background: #050214;
}

/* ===========================
   HERO VIDEO
=========================== */

.ticket-hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;

  display:flex;
  flex-direction:column;
  justify-content:center;

  padding:140px 8% 80px;
}

.ticket-hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  z-index:0;
}

.ticket-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(10,4,35,.30),
    rgba(10,4,35,.75)
  );
  z-index:1;
}

.ticket-hero-content{
  position:relative;
  z-index:2;
  max-width:700px;
  margin-bottom:70px;
}

.ticket-hero-content span{
  display:inline-block;
  background:#84db41;
  color:#180ea5;
  padding:8px 24px;
  font-weight:900;
  text-transform:uppercase;
  transform:rotate(-2deg);
}

.ticket-hero-content h1{
  margin:22px 0 18px;
  font-size:clamp(4rem,8vw,7rem);
  line-height:.82;
  letter-spacing:-.06em;
  text-transform:uppercase;
}

.ticket-hero-content p{
  max-width:560px;
  font-size:1.15rem;
  line-height:1.6;
  color:rgba(255,255,255,.88);
}

/* ===========================
   BADGE + PANNEAU
=========================== */

.ticket-scene{
  position:relative;
  z-index:2;

  display:grid;
  grid-template-columns:520px 1fr;
  align-items:center;
  gap:60px;
}

.pass-wrap{
  position:relative;
  transform:rotate(-2deg);
  opacity:0;
  animation:badgeReveal .8s ease forwards .4s;
}
@keyframes badgeReveal {
  from {
    opacity: 0;
    transform: translateY(35px) rotate(-2deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(-2deg);
  }
}

.real-badge {
  display: block;
  width: 100%;
  max-width: 830px;
  height: auto;
  filter: drop-shadow(0 35px 60px rgba(0,0,0,.55));
  transform: translateX(-100px);
  animation: badgeFloat 4s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% {
    transform: translateX(-100px) translateY(0);
  }

  50% {
    transform: translateX(-100px) translateY(-10px);
  }
}
.ticket-panel {
  background: #fff7ec;
  color: #09041f;
  border-radius: 28px;
  padding: 42px 48px;
  box-shadow: 0 35px 90px rgba(0,0,0,.45);
}

.ticket-block {
  padding: 26px 0;
  border-bottom: 1px solid rgba(9,4,31,.16);
}

.ticket-block:last-child {
  border-bottom: none;
}

.ticket-block span {
  color: #84db41;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
}

.ticket-block h2 {
  margin: 8px 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  text-transform: uppercase;
  line-height: .9;
}

.ticket-block p {
  margin: 8px 0;
  line-height: 1.55;
  color: rgba(9,4,31,.72);
}

.ticket-block strong {
  color: #84db41;
}

.ticket-block a {
  display: inline-block;
  margin-top: 18px;
  background: #84db41;
  color: white;
  padding: 15px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;

}

.ticket-alert{
  background:#84db41;
  color:white;
  padding:20px;
  border-radius:16px;
  margin-top:30px;
}

.ticket-bottom {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.info-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: white;
  border-radius: 26px;
  padding: 34px;
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 70px rgba(0,0,0,.28);
}

.info-card span {
  color: #84db41;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .14em;
  font-size: .78rem;
}

.info-card h2 {
  margin: 10px 0 24px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  text-transform: uppercase;
  line-height: .9;
}

.info-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-card li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
}

.info-card li:last-child {
  border-bottom: none;
}

.info-card li::before {
  content: "→ ";
  color: #84db41;
  font-weight: 900;
}

.faq-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item strong {
  display: block;
  color: white;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.faq-item p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
}

.ticket-memory {
  position: relative;
  margin-top: 80px;
}

.ticket-memory img {
  width: 100%;
  display: block;

  -webkit-mask-image:
    linear-gradient(to bottom,
      transparent 0%,
      black 15%,
      black 85%,
      transparent 100%
    ),
    linear-gradient(to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%
    );

  -webkit-mask-composite: source-in;

  mask-image:
    linear-gradient(to bottom,
      transparent 0%,
      black 15%,
      black 85%,
      transparent 100%
    ),
    linear-gradient(to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%
    );

  mask-composite: intersect;
}
.info-link {
  display: inline-block;
  margin-top: 24px;
  color: white;
  background: #84db41;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .85rem;
  transition: .25s;
}
.info-link:hover {
  opacity: .9;
  transform: translateY(-2px);
}

.ticket-hero h1,
.ticket-panel,
.ticket-bottom,
.ticket-memory {
  opacity: 0;
  animation: pageReveal .8s ease forwards;
}

.ticket-hero h1 {
  animation-delay: .1s;
}

.ticket-hero span {
  opacity: 0;
  animation: dateReveal .8s ease forwards .25s;
}

.ticket-panel {
  animation-delay: .55s;
}

.ticket-bottom {
  animation-delay: .75s;
}

.ticket-memory {
  animation-delay: .95s;
}

@keyframes pageReveal {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dateReveal {
  from {
    opacity: 0;
    transform: translateY(35px) rotate(-2deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(-2deg);
  }
}
html,
body {
  overflow-x: hidden;
}
@media (max-width: 900px) {
 .ticket-page {
    background-image: url("images/imgmobile.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    overflow-x: hidden;
  }

  .ticket-scene {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pass-wrap {
    overflow: hidden;
  }

  .real-badge {
    max-width: 320px;
    width: 100%;
    margin: auto;
    transform: none !important;
    animation: none;
  }

  .ticket-panel {
    padding: 30px 24px;
  }

  .ticket-bottom {
    grid-template-columns: 1fr;
  }

  .ticket-memory {
    margin-left: -8%;
    margin-right: -8%;
    overflow: hidden;
  }

  .ticket-memory img {
    width: 120%;
    max-width: none;
    margin-left: -10%;
  }
  .ticket-hero{
    min-height:100svh;
    padding:115px 6% 55px;
  }

  .ticket-hero-video{
    object-fit:cover;
    object-position:center top;
  }
}