*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

:root{
  --primary:#00e5ff;
  --primary-dark:#00bcd4;
  --primary-soft:rgba(0,229,255,.12);
  --primary-border:rgba(0,229,255,.25);
  --bg:#050816;
  --bg-dark:#02040a;
  --surface:#111827;
  --surface-soft:rgba(255,255,255,.04);
  --surface-hover:rgba(255,255,255,.08);
  --text:#ffffff;
  --muted:rgba(255,255,255,.72);
  --border:rgba(255,255,255,.08);
  --radius:18px;
  --radius-lg:24px;
  --transition:.3s ease;
  --shadow:0 10px 30px rgba(0,0,0,.35);
  --shadow-lg:0 20px 50px rgba(0,0,0,.45);
  --glow:0 0 20px rgba(0,229,255,.12);
}

.logo img {
  height: 45px;
  width: 45px;
  border-radius: 50%;      
  object-fit: cover;       
  transform: scale(1.1);   
  transition: 0.3s ease;
}

.logo img:hover {
  transform: scale(1.2);
}

.hero-sub{
  max-width:700px;
  margin:20px auto 30px;
  font-size:20px;
  line-height:1.6;
  opacity:.85;
  text-align:center;
}

.hero-content-main{
  width:100%;
  max-width:1000px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

nav a{
  text-decoration:none;
  color:white;
  transition:0.3s;
}

nav a:hover{
  color:var(--primary);
}


body{
  color: white;
  background:
    radial-gradient(circle at top, rgba(0,229,255,0.08), transparent 40%),
    linear-gradient(180deg, #071018 0%, #0b1220 45%, #111827 100%);
}

nav{
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 45px;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition:0.3s ease;
}

.logo{
  font-size:28px;
  font-weight:800;
  letter-spacing:1px;
  color:var(--primary);
  text-decoration:none;
}

.logo a{
  color:var(--primary);
  text-decoration:none;
  transition:0.3s;
}

.logo a:hover{
  color:white;
  text-shadow:0 0 10px rgba(0,229,255,0.5);
}

nav ul{
  list-style:none;
  display:flex;
  gap:25px;
  align-items:center;
}

.about-preview {
  padding: 80px 60px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  border-radius: 24px;
  margin: 60px;
}

.about-content {
  max-width: 700px;
}

.about-preview h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.about-preview p {
  color: #cbd5f5;
  line-height: 1.6;
}

.about-extra {
  margin-top: 10px;
  font-size: 15px;
  opacity: 0.8;
}

.about-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.btn-primary {
  padding: 10px 18px;
  background: linear-gradient(135deg, #6366f1, #22c55e);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

nav li a{
  text-decoration:none;
  color:rgba(255,255,255,0.85);
  font-weight:500;
  font-size:15px;

  padding:8px 12px;
  border-radius:10px;

  transition:0.25s ease;
  position:relative;
}

nav li a:hover{
  color:var(--primary);
  background:rgba(0,229,255,0.08);
  transform:translateY(-1px);
}

nav li a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:4px;
  transform:translateX(-50%);
  width:0%;
  height:2px;
  background:var(--primary);
  transition:0.3s ease;
  border-radius:10px;
}

nav li a:hover::after{
  width:60%;
}

.why-cosmic{
  padding:80px 8% 20px;
  background:radial-gradient(circle at top,rgba(0,229,255,.08),transparent 42%),linear-gradient(180deg,#050816,#08111f);
  overflow:hidden;
}

.why-header{
  max-width:900px;
  margin:0 auto 52px;
  text-align:center;
}

.why-kicker{
  display:inline-block;
  margin-bottom:18px;
  color:var(--primary);
  font-size:12px;
  font-weight:900;
  letter-spacing:4px;
}

.why-header h2{
  max-width:820px;
  margin:0 auto;
  font-size:clamp(30px,4vw,48px);
  line-height:.95;
  letter-spacing:-3px;
}

.why-sub{
  max-width:720px;
  margin:24px auto 0;
  color:rgba(255,255,255,.68);
  font-size:18px;
  line-height:1.7;
}

.access-layout{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
  align-items:stretch;
}

.access-live-card,
.access-mini-card{
  border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
  box-shadow:0 30px 90px rgba(0,0,0,.45),0 0 40px rgba(0,229,255,.08);
  backdrop-filter:blur(16px);
}

.access-live-card{
  padding:28px;
  border-radius:32px;
}

.access-live-top{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding-bottom:22px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.access-live-top span{
  display:block;
  margin-bottom:8px;
  color:var(--primary);
  font-size:12px;
  font-weight:900;
  letter-spacing:3px;
}

.access-live-top strong{
  font-size:22px;
}

.access-live-top small{
  height:max-content;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(0,255,170,.1);
  color:#7dffb3;
  font-size:12px;
  font-weight:900;
}

.access-counter{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin:22px 0;
}

.access-counter div{
  padding:18px;
  border-radius:20px;
  background:rgba(0,229,255,.055);
  border:1px solid rgba(0,229,255,.13);
}

.access-counter span{
  display:block;
  margin-bottom:8px;
  color:rgba(255,255,255,.56);
  font-size:13px;
}

.access-counter strong{
  font-size:32px;
}

.access-feed{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.access-row{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:14px;
  align-items:center;
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.access-row span{
  color:rgba(255,255,255,.48);
  font-size:13px;
  font-weight:800;
}

.access-row p{
  margin:0;
  color:rgba(255,255,255,.82);
  font-size:14px;
  line-height:1.45;
}

.access-row.ok{
  border-color:rgba(0,255,170,.16);
}

.access-row.ok p::before{
  content:"🟢 ";
}

.access-row.danger{
  background:rgba(255,80,80,.055);
  border-color:rgba(255,80,80,.24);
}

.access-row.danger p::before{
  content:"🔴 ";
}

 .access-benefits{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.access-mini-card{
  padding:20px;
  border-radius:22px;
  min-height:auto;
}

.mini-top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:10px;
}

.mini-top span{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  margin:0;
  border-radius:14px;
  background:rgba(0,229,255,.08);
  border:1px solid rgba(0,229,255,.16);
  font-size:20px;
}

.mini-top h3{
  margin:0;
  font-size:19px;
  line-height:1.2;
}

.access-mini-card p{
  margin:0;
  padding-left:56px;
  color:rgba(255,255,255,.64);
  font-size:14px;
  line-height:1.55;
}

.scan-badge{
  display:inline-block;
  margin-bottom:18px;
  padding:10px 14px;
  border-radius:14px;
  background:
    rgba(255,255,255,.06);
  border:
    1px solid rgba(255,255,255,.08);
  font-size:13px;
  font-weight:700;
}

.scan-mode{
  display:inline-block;
  margin-top:18px;
  color:var(--primary);
  font-size:12px;
  letter-spacing:2px;
  font-weight:700;
}

.scanner-card{
  position:relative;
  overflow:hidden;
}

.scanner-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right,
    rgba(0,229,255,.08),
    transparent 45%);
  opacity:0;
  transition:.3s ease;
}

.scanner-card:hover::before{
  opacity:1;
}

.scanner-card.success{
  border-color:
    rgba(0,255,157,.2);
}

.scanner-card.danger{
  border-color:
    rgba(255,80,80,.2);
}

.alert-card{

  border-color:
    rgba(255,170,0,.18);
}

.alert-card:hover{

  box-shadow:
    0 20px 45px rgba(0,0,0,.35),
    0 0 25px rgba(255,170,0,.12);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  border-radius: 18px;
  text-align: left;
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,229,255,0.35);
  box-shadow: 0 0 20px rgba(0,229,255,0.08);
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.why-card p {
  opacity: 0.8;
  line-height: 1.6;
  font-size: 14px;
}

.cashless-section{
  padding:120px 60px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
  max-width:1400px;
  margin:0 auto;
  background:
    radial-gradient(circle at top,
    rgba(123,44,255,.12),
    transparent 55%),
    linear-gradient(
      180deg,
      #070707,
      #0b1220
    );
}

.cashless-kicker{
  display:inline-block;
  margin-bottom:18px;
  color:#b388ff;
  font-size:12px;
  font-weight:700;
  letter-spacing:4px;
}
.cashless-left{
  position:relative;
  z-index:2;
}

.online-mode,
.offline-mode{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:16px;
  border-radius:18px;
  margin-top:6px;
}

.online-mode{
  border:1px solid rgba(0,255,170,.25);
  background:rgba(0,255,170,.05);
}

.offline-mode{
  border:1px solid rgba(0,180,255,.25);
  background:rgba(0,180,255,.05);
}

.online-mode span,
.offline-mode span{
  font-size:.92rem;
  opacity:.8;
  line-height:1.5;
}

.wallet-status{
  display:flex;
  gap:12px;
  margin:20px 0;
}

.status{
  padding:10px 14px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.08em;
}

.status.online{
  background:rgba(0,255,170,.12);
  color:#6dffcf;
}

.status.offline{
  background:rgba(0,180,255,.12);
  color:#67d8ff;
}

.cashless-sub{
  opacity:.72;
  line-height:1.8;
  font-size:17px;
  max-width:540px;
  margin-bottom:34px;
}

.cashless-features{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.cashless-feature{
  width:fit-content;
  padding:16px 18px;
  border-radius:18px;
  background:
    rgba(255,255,255,.04);
  border:
    1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(12px);
  transition:.3s ease;
}

.cashless-feature:hover{
  transform:translateY(-4px);
  border-color:
    rgba(179,136,255,.35);
  box-shadow:
    0 0 20px rgba(179,136,255,.12);
}

.cashless-note{
  margin-top:28px;
  display:inline-block;
  padding:12px 18px;
  border-radius:16px;
  background:
    rgba(179,136,255,.08);
  border:
    1px solid rgba(179,136,255,.18);
  color:#d7c2ff;
  font-size:14px;
  font-weight:600;
}

.cashless-right{
  display:flex;
  justify-content:center;
}

.wallet-card{
  position:relative;
  width:460px;
  padding:32px;
  border-radius:36px;
  overflow:hidden;
  background:
    linear-gradient(
      180deg,
      rgba(24,16,40,.96),
      rgba(5,5,10,.98)
    );
  border:
    1px solid rgba(255,255,255,.08);
  box-shadow:
    0 40px 100px rgba(0,0,0,.55),
    0 0 40px rgba(179,136,255,.16);
  transform:
    perspective(1400px)
    rotateY(-10deg);
  transition:.45s ease;
}

.wallet-card:hover{

  transform:
    perspective(1400px)
    rotateY(0deg)
    translateY(-10px);
}

.wallet-glow{
  position:absolute;
  top:-100px;
  right:-100px;
  width:240px;
  height:240px;
  border-radius:50%;
  background:
    rgba(179,136,255,.18);
  filter:blur(80px);
}

.wallet-top{
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:40px;
  z-index:2;
}

.wallet-top span{
  color:#d7c2ff;
  font-size:13px;
  letter-spacing:2px;
  font-weight:700;
}

.wallet-top strong{
  font-size:34px;
  color:#fff;
}

.wallet-transactions{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:16px;
  z-index:2;
}

.producer-story,
.trust{
  text-align:center;
  padding:80px 24px;
}

.producer-socials{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:120px 30px;
  background:radial-gradient(circle at center,rgba(0,229,255,.08),transparent 45%),linear-gradient(180deg,#050816,#091428);
}

.trust-grid,
.socials-icon{
  max-width:1200px;
  margin:0 auto;
}

.producer-socials h2{
  margin-bottom:40px;
}

.wallet-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px;
  border-radius:18px;
  background:
    rgba(255,255,255,.04);
  border:
    1px solid rgba(255,255,255,.06);
}

.wallet-item span{
  color:#ff8aa8;
  font-weight:700;
}

.wallet-item .positive{
  color:#7dffb3;
}

.wallet-footer{
  position:relative;
  margin-top:40px;
  display:flex;
  align-items:center;
  gap:14px;
  z-index:2;
}

.wallet-chip{
  width:42px;
  height:30px;
  border-radius:8px;
  background:
    linear-gradient(
      135deg,
      #b388ff,
      #7c4dff
    );
}

.wallet-footer span{
  color:#b388ff;
  font-size:13px;
  letter-spacing:2px;
  font-weight:700;
}

.btn-back{
  padding:8px 14px;
  font-size:13px;
  font-weight:500;
  color:#fff;
  background:rgba(255,255,255,0.08);
  border:none;
  border-radius:999px; 
  backdrop-filter: blur(8px);
  cursor:pointer;
  transition: all 0.25s ease;
}

.hero{
  position: relative;
  height: 100vh;
  padding-top: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 3px;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.9)), 
    url('../images/cosmic.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before{  
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(
    circle at center,
    rgba(255,255,255,0.05),
    transparent 60%
  );
  pointer-events:none;
}

.hero h1{
  font-size:clamp(33px, 4vw, 50px);
  font-weight:900;
  line-height:1.05;
  letter-spacing:-1px;
  max-width:900px;
  margin:0 auto;
  text-align:center;
  color:#fff;
 text-shadow:
  0 0 10px rgba(0,229,255,.15),
  0 0 20px rgba(0,229,255,.08);
  animation:fadeUp .8s ease;
}

.rocket:last-child{
  animation-delay:1s;
}

.hero button{
  margin-top: 8px;
  padding: 10px 18px;
  background: #ffffff;
  color: #111;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor:pointer;
  transition: all 0.2s ease;
}

.hero button:hover{
  background: #f3f4f6;
  transform: translateY(-1px);
}

.creators{
  padding:70px 30px;
  text-align:center;
  background:
    radial-gradient(circle at center, rgba(0,229,255,0.08), transparent 70%),
    linear-gradient(180deg, #050505, #0a0a0a);
  border-top:1px solid rgba(255,255,255,0.05);
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.creators h2{
  font-size:28px;
  margin-bottom:10px;
  text-shadow:0 0 10px rgba(0,229,255,0.2);
}

.creators p{
  opacity:0.7;
  font-size:15px;
  max-width:500px;
  margin:0 auto 20px;
}

.creators-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 20px;
}

.creators .btn-primary{
  background: linear-gradient(135deg, var(--primary), #00ffcc);
  color:black;
}

.creators .btn-secondary{
  border:1px solid rgba(255,255,255,0.2);
}

.events{
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 30px;
}
.events-sub{
  text-align:center;
  margin-bottom:30px;
  opacity:0.7;
  font-size:16px;
}

.events h2{
  text-align:center;
  margin-bottom:40px;
  font-size:34px;
  font-weight:700;
  letter-spacing:1px;
  color:white;
  position:relative;
  text-shadow:0 0 6px rgba(0,229,255,0.1);
  animation:fadeUp 0.8s ease;
}

.events h2::after{
  content:"";
  display:block;
  width:60px;   
  height:2px;
  margin:10px auto 0;
  border-radius:2px;
  background:linear-gradient(90deg, var(--primary), #7b2cff);
  box-shadow:0 0 6px rgba(0,229,255,0.2);  
}

.fire-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(135deg, #ff6a00, #ff2d55);
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 100, 0, 0.5);
  transition: all 0.3s ease;
}

.fire-btn::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(45deg, #ff6a00, #ff2d55, #ffcc00);
  filter: blur(10px);
  opacity: 0.6;
  z-index: -1;
  animation: fireRotate 3s linear infinite;
}

.tickets-box {
  margin-top: 30px;
  padding: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  line-height: 1.7;
}

.tickets-box p {
  margin-bottom: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.tickets-box p:last-of-type {
  margin-top: 20px;
  font-weight: 600;
  color: #fff;
}

.tickets-box .whatsapp-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.tickets-box .whatsapp-btn:hover {
  transform: translateY(-2px);
}

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

.fire-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 80, 0, 0.9);
}

.cards{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap:20px;
  width:100%;
  max-width:1200px;
  margin:0 auto;
}

.card{
  background: linear-gradient(180deg, #111, #0a0a0a);
  padding:22px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.05);
  cursor:pointer;
  position:relative;
  overflow:hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.card::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(0,229,255,0.3),
    transparent
  );
  transition:0.5s;
}

.card:hover::before{
  left:100%;
}

.card:hover{
   transform:translateY(-4px);
  box-shadow: 
    0 15px 35px rgba(0,0,0,0.6),
    0 0 20px rgba(0,229,255,0.15);
  border: 1px solid rgba(0,229,255,0.3);
}

.card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.card-img-container {
  width:140px;
  aspect-ratio:3/4;
  overflow:hidden;
  border-radius:12px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.02)
    );

  box-shadow: 
    0 0 10px rgba(0,229,255,0.08),
    0 10px 20px rgba(0,0,0,0.5);

}

.card-img-container img{
  width:100%;
  object-fit:contain;
  display:block;
  transition:
    transform .3s ease;

}
.card h3{
  margin-bottom:10px;
  font-size:18px;
  font-weight:700;
  line-height:1.3;
}

.card p{
  opacity:0.75;
  margin-bottom:12px;
  line-height:1.4;
  font-size:14px;
}

.by {
  font-size: 14px;
  opacity: 0.6;
  margin-left: 5px;
}

.card .price {
  font-weight: bold;
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 10px;
}

.card button{
  margin-top:auto; 
  width:100%;
  padding:10px;
  border-radius:12px;
  background: linear-gradient(135deg, var(--primary), #00bcd4);
  color:#000;
  font-weight:600;
  font-size:14px;
  border:none;
  transition: all 0.2s ease;
}

.card button:hover{
  transform: translateY(-2px); 
  box-shadow: 0 8px 20px rgba(0,229,255,0.35);
}

.card button:active{
  transform: translateY(0px) scale(0.97);
}

.card .price::before{
  content:"Precio ";
  font-size:12px;
  color:rgba(255,255,255,0.5);
}

.card:hover h3{
  color:var(--primary);
}

.card.touch{
  transform: scale(0.97);
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.6),
    0 0 15px rgba(0,229,255,0.25);
}

.event-hero{
  height:60vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:
  linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.9)),
  url('../images/cosmic.webp');
  background-size:cover;
  background-position:center;
}

.event-info{
  padding:50px 50px; 
  background:#0a0a0a;
}

.event-container{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:40px;
}

.event-buy{
  background:#111;
  padding:30px;
  border-radius:15px;
  border:1px solid rgba(255,255,255,0.05);
}

.checkout{
  padding:80px 50px;
  min-height:100vh;
  background:
    radial-gradient(
      circle at top,
      rgba(0,229,255,.08),
      transparent 35%
    ),

    linear-gradient(
      180deg,
      #050816,
      #091428
    );

}

.checkout h1{
  text-align:center;
  margin-bottom:40px;
}

.checkout-container{
  display:grid;
  grid-template-columns:
    minmax(320px, 1fr)
    minmax(320px, 420px);

  gap:40px;
  max-width:1200px;
  margin:0 auto;
  align-items:start;
}

footer{
 text-align:center;
  padding:20px;
  background:#0b1120;
  opacity:0.9;
}

.rocket{
  display:inline-block;
  animation:rocketLaunch 2.5s infinite ease-in-out;
}

@keyframes rocketLaunch{
  0%{transform:translateY(0) scale(1) rotate(0);opacity:1;}
  30%{transform:translateY(-10px) scale(1.1) rotate(-8deg);}
  60%{transform:translateY(-50px) scale(0.9) rotate(10deg);opacity:0.6;}
  100%{transform:translateY(-90px) scale(0.5) rotate(20deg);opacity:0;}
}

.contact-section{
  margin-top:-20px;         
  padding:35px 20px 65px;  
  text-align:center;
  color:white;
  background:
  radial-gradient(circle at top, rgba(0,229,255,0.08), transparent 60%),
  linear-gradient(180deg, #0f0f0f, #070707);
  border-top:none;         
  position:relative;
  overflow:hidden;
}

.contact-section::before{
  content:"";
  position:absolute;
  top:-50px;
  left:50%;
  transform:translateX(-50%);
  width:300px;
  height:300px;
  background:rgba(0,229,255,0.08);
  filter:blur(80px);
  border-radius:50%;
  z-index:0;
}

.contact-section h2{
  font-size:34px;
  margin-bottom:10px;
  font-weight:700;
  letter-spacing:1px;
  position:relative;
  display:inline-block;
  text-shadow:0 0 18px rgba(0,229,255,0.25);
  animation:fadeUp 0.8s ease;
}

.contact-section h2::after{
  content:"";
  display:block;
  margin:10px auto 0;
  width:60px;
  height:3px;
  background:var(--primary);
  border-radius:10px;
  transition:0.3s;
}

.contact-section:hover h2::after{
  width:100px;
}

.contact-section p{
  opacity:0.75;
  margin-bottom:35px;
  font-size:16px;
}
.producer-story::after,
.trust::after{
  content:"";
  display:block;
  width:200px;
  height:1px;
  margin:80px auto 0;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(0,229,255,.3),
    transparent
  );
}

.cashless-left h2,
.metrics-left h2{
  font-size:32px;
  line-height:1.15;
  max-width:650px;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.social-footer{
  margin-top:60px; 
  padding:40px 20px;
  text-align:center;
  background:linear-gradient(180deg, #0f0f0f, #050505);
  color:white;
  border-top:1px solid rgba(255,255,255,0.08);
}

.social-icons{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.social-icons a{
  width:48px;
  height:48px;
  border-radius:14px;
}

.social-icons a img{
  width:22px;
  height:22px;
}

.separator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px auto;
  max-width: 500px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.separator span{
  white-space: nowrap;
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.whatsapp-box{
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: 0.3s ease;
}

.whatsapp-box:hover{
  border-color: rgba(0,229,255,0.25);
  box-shadow: 0 0 20px rgba(0,229,255,0.08);
}

.whatsapp-box p{
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.7);
}


.whatsapp-btn{
  display:inline-block;
  padding:12px 22px;
  border-radius:10px;
  background:#25D366;
  color:white;
  text-decoration:none;
  font-weight:bold;
  transition:all 0.25s ease;
}

.whatsapp-btn:hover{
  background:#1ebe5d;
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(37,211,102,0.3);
}


.producer-hero {
  padding: 80px 20px 40px;
  background: #050816;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-inner {
  background: rgba(10, 15, 30, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 28px;
  padding: 60px 40px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  animation: fadeUp 0.8s ease;
}

.producer-logo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border:2px solid rgba(255,255,255,.12);
  box-shadow:none;
  margin: 0 auto 20px;
  display: block;
  background: #111;
}

.producer-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;

  background: linear-gradient(
    90deg,
    #ffffff,
    #a5f3fc,
    #6366f1
  );

  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: fadeUp 0.8s ease;
}

.producer-hero p {
  margin-top: 10px;
  opacity: 0.85;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}



.stats {
  margin-top: 20px;
  display: flex;
  gap: 30px;
  justify-content: center;
  font-size: 14px;
}
.stats span {
  padding: 6px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border:1px solid rgba(0,229,255,0.2);
}

.producer-story{
  position:relative;
  overflow:hidden;
  padding:120px 24px;
  background:
    radial-gradient(
      circle at top,
      rgba(0,229,255,.10),
      transparent 40%
    ),

    linear-gradient(
      180deg,
      #050816,
      #02040a
    );

}

.producer-story > *{
  max-width:900px;
  margin-left:auto;
  margin-right:auto;

}

.producer-events-section h2,
.producer-story h2,
.trust h2,
.producer-socials h2{

  font-size: clamp(34px,4vw,56px);

  font-weight:800;

  letter-spacing:-2px;

  line-height:1.15;

  margin:0 auto 40px;

  text-align:center;

  color:#fff;

  text-shadow:
    0 0 10px rgba(0,229,255,.12),
    0 0 20px rgba(0,229,255,.06);
}

.producer-story p {
  max-width: 750px;
  margin: auto;
  opacity: 0.75;
  line-height: 1.7;
}

.badges {
  margin-top: 30px;
}

.badges span {
  margin: 6px;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 20px;
  background: rgba(0,229,255,0.08);
  border:1px solid rgba(0,229,255,0.3);
  transition:0.3s;
}

.badges span:hover{
  transform:scale(1.05);
  background:rgba(0,229,255,.2);
  box-shadow:0 0 15px rgba(0,229,255,.3);
}

.trust {
  padding: 80px 30px;
  background:#030303;
}

.trust h2 {
  text-align:center;
  margin-bottom:40px;
  text-shadow:0 0 15px rgba(0,229,255,0.3);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 25px;
}

.producer-events-section{
  text-align:center;
  padding:80px 30px;
}

.producer-events-section h2{
  text-align:center;
  margin-bottom:40px;
  text-shadow:0 0 15px rgba(0,229,255,0.3);
  font-size: 2rem;
}

.event-card{
  position:relative;

  overflow:hidden;

  border-radius:24px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.02)
    );

  border:
    1px solid rgba(255,255,255,.08);

  transition:.3s ease;

  padding:0;

  max-width:360px;

}

.event-card .info{

  padding:18px;

  display:flex;
  flex-direction:column;

  gap:10px;
}

.event-card .price{
  font-size:16px;
  font-weight:700;
}

.event-card button{
  width:100%;
  margin-top:10px;
  height:54px;
  border:none;
  border-radius:16px;
  background:
    linear-gradient(
      135deg,
      var(--primary),
      #00bcd4
    );
  color:black;
  font-weight:800;
  cursor:pointer;

}

.event-card button:hover{
  background:#f3f4f6;
  transform:translateY(-2px);

  box-shadow:
    0 8px 20px rgba(255,255,255,0.12);
}

.event-card button:active{
  transform:scale(0.97);
}

.event-card::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(0,229,255,0.3),
    transparent
  );
  transition:0.5s;
}

.card.active-click{
  transform: translateY(-4px) scale(1.04);
  box-shadow: 
    0 20px 45px rgba(0,0,0,0.7),
    0 0 25px rgba(0,229,255,0.25);
}


.socials-icon,
.contact-icons,
.social-icons{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.socials-icon a:hover,
.contact-icons a:hover,
.social-icons a:hover{
  background:rgba(0,229,255,0.15);
  transform:translateY(-3px);
  box-shadow:0 6px 18px rgba(0,229,255,0.15);
}

.socials-button a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  border-radius:14px;
  background: linear-gradient(145deg, #0a0a0a, #111);
  border:1px solid rgba(255,255,255,0.08);
  color:white;
  text-decoration:none;
  font-weight:500;
  transition:all 0.3s ease;
}


.socials-icon a,
.contact-icons a,
.social-icons a{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  transition:.3s ease;
}

.socials-icon svg,
.contact-icons svg,
.social-icons svg{
  width:22px;
  height:22px;
  fill:#fff;
  transition:0.3s ease;
}

.socials-icon a:hover svg,
.contact-icons a:hover svg,
.social-icons a:hover svg{
  fill: var(--primary);
  filter: drop-shadow(0 0 6px rgba(0,229,255,0.6));
}

.contact-socials p{
  font-size:13px;
  opacity:0.6;
  margin-bottom:12px;
}

.sticky-cta {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index:999;
}

#producer-tag{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:14px;
  margin-top:28px;
  width:100%;
}

.feature-header-card{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:14px 20px;
  border-radius:18px;
  background:
  rgba(255,255,255,0.05);
  border:
  1px solid rgba(0,229,255,0.18);
  backdrop-filter:
  blur(14px);
  box-shadow:
  0 8px 24px rgba(0,229,255,0.08);
  transition:
  transform .25s ease,
  box-shadow .25s ease,
  border-color .25s ease;
  color:#e8fdff;
  font-size:14px;
  font-weight:600;
  line-height:1.4;
  text-align:center;
  max-width:100%;
}

.feature-header-card:hover{
  transform:
  translateY(-3px);
  border-color:
  rgba(0,229,255,0.4);
  box-shadow:
  0 12px 30px rgba(0,229,255,0.18);
}

.feature-header-card .icon{
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  flex-shrink:0;
}

.feature-header-card .text{
  white-space:normal;
  word-break:break-word;
}

.sticky-cta button {
  padding: 15px 25px;
  background: linear-gradient(135deg, var(--primary), #00ffcc);
  border-radius: 12px;
  font-weight: bold;
  border: none;
  box-shadow:0 0 25px rgba(0,255,204,0.4);
  transition:0.3s ease;
  cursor:pointer;
}

.sticky-cta button:hover{
  transform:scale(1.08);
  box-shadow:0 10px 30px rgba(0,255,204,0.5);
}

.legal-footer {
  background: #0a0f1c;
  color: #ccc;
  padding: 40px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-container h4 {
  color: #00eaff;
  margin-bottom: 10px;
}

.footer-container a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 6px;
  transition: 0.3s;
}

.footer-container a:hover {
  color: #00eaff;
}

.nav-search {
  position: relative;
}

.search {
  padding: 10px 16px;
  border-radius: 30px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.05);
  color: white;
  width: 180px;
  transition: 0.4s ease;
  box-shadow: inset 0 0 5px rgba(0,234,255,0.2);
  font-size: 16px
}

.search:focus {
  width: 260px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 10px #00eaff, inset 0 0 5px rgba(0,234,255,0.3);
}

.search::placeholder {
  color: rgba(255,255,255,0.5);
}

.search:hover {
  box-shadow: 0 0 8px rgba(0,234,255,0.6);
}

@keyframes glowMove {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

.trust-bar{
  text-align:center;
  padding:25px 15px;
  background:#050505;
  border-top:1px solid rgba(255,255,255,0.05);
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.trust-bar p{
  opacity:0.7;
  margin-bottom:10px;
}

.payments{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  font-weight:bold;
}

.secure{
  margin-top:10px;
  font-size:14px;
  color:#00eaff;
}

.menu-toggle{
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.event-card:hover::before{
  left:100%;
}

.event-card:hover h3{
  color:var(--primary);
}

.badges span{
  transition: all .3s ease;
}

.trust-item {
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.03);

  transition: 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-8px);
  border-color: rgba(0,229,255,0.35);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.45),
    0 0 20px rgba(0,229,255,0.12);
}

.events-grid{
  display:grid;
  grid-template-columns:
    repeat(auto-fit, minmax(280px, 340px));
  justify-content:center;
  gap:24px;
  width:100%;
  max-width:1200px;
  margin:0 auto;

}

.ticket-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.ticket-modal.active {
  display: block;
}

.ticket-kicker {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #18e4ff;
  margin-bottom: 18px;
}

.modal-step{
  display:block;
  margin-bottom:8px;
  font-size:.8rem;
  font-weight:600;
  color:rgba(255,255,255,.55);
  text-transform:uppercase;
  letter-spacing:.08em;
}


.ticket-sub {
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(255,255,255,.65);
}

.ticket-content input {
  width: 100%;
  height: 64px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: white;
  font-size: 1.05rem;
  outline: none;
  transition: 0.25s ease;
}

.ticket-content input::placeholder {
  color: rgba(255,255,255,0.45);
}

.ticket-content input:focus {
  border-color: #18e4ff;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px rgba(24,228,255,0.08);
}

.btn-buy-final{
  width:100%;
  height:68px;

  margin-top:24px;

  border:0;
  border-radius:18px;

  background:
    linear-gradient(
      135deg,
      var(--primary),
      #00c8ff
    );

  color:#001018;
  font-weight:800;
  font-size:17px;
  letter-spacing:.3px;
  cursor:pointer;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    filter .25s ease;

  box-shadow:
    0 10px 30px rgba(0,229,255,.18);
}

.btn-buy-final:hover{
  transform:
    translateY(-3px);
  box-shadow:
    0 18px 40px rgba(0,229,255,.30);
  filter:
    brightness(1.05);
}

.btn-buy-final:active{
  transform:
    translateY(0);
  box-shadow:
    0 8px 18px rgba(0,229,255,.20);
}


.ticket-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border: none;
  background: transparent;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.85;
  transition: 0.2s ease;
}

.ticket-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
}

.ticket-content {
  position: relative;
  z-index: 2;
  width: min(92%, 720px);
  margin: 5vh auto;
  padding: 36px;
  border-radius: 28px;
  background: #0f1117;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 30px 80px rgba(0,0,0,.45),
    0 0 30px rgba(0,229,255,.08);
}

.ticket-close:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.ticket-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.ticket-options {
  display: grid;
  gap: 14px;
}

.ticket-option{
  display:flex;
  flex-direction:row;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  transition:.25s ease;
  cursor:pointer;
}

.ticket-option h3 {
  margin: 0;
  font-size: 1rem;
}

.ticket-option p{
  margin:6px 0 18px;
  font-size:14px;
  line-height:1.6;
  color:rgba(255,255,255,.68);
}

.ticket-option strong {
  font-size: 1.1rem;
  color: var(--primary);
}

.pilot-text{
  margin-top: 24px;
  font-size: 14px;
  opacity: 0.8;
}

.qty-box{
  width:100%;
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
}

.qty-box label {
  font-size: 14px;
  color: #ccc;
}

.ticket-qty {
  background: #111;
  border: 1px solid #333;
  color: white;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 14px;
}

.ticket-total{
  width:100%;
  margin-top:22px;
  font-size:28px;
  font-weight:900;
  color:#00f0ff;
  line-height:1.3;
  text-shadow:0 0 15px rgba(0,229,255,.12);
}

.ticket-option.selected{
  border:2px solid #ffffff;
}
.ticket-option.selected h3{
  color:#ffffff;
}


.ticket-meta{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
}

.ticket-meta-item{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.meta-label{
  font-size:.75rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(255,255,255,.45);
}

.ticket-meta-item strong{
  font-size:.95rem;
  color:#fff;
}


.section-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 24px;
  padding:12px 28px;
  border-radius:999px;
  background:rgba(0,229,255,.05);
  border:1px solid rgba(0,229,255,.15);
  color:#7ef9ff;
  font-size:12px;
  font-weight:800;
  letter-spacing:4px;
  text-transform:uppercase;
}

.tickets-page {
  padding: 140px 24px 80px;
  min-height: 100vh;
}

.tickets-page .tickets-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.tickets-page .tickets-title {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 700;
}

.tickets-page .tickets-subtitle {
  opacity: 0.75;
  margin-bottom: 30px;
  font-size: 15px;
}

.tickets-page .tickets-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.tickets-page .tickets-input {
  flex: 1;
  min-width: 260px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: white;
  outline: none;
}

.tickets-page .tickets-input:focus {
  border-color: rgba(0,229,255,0.4);
  box-shadow: 0 0 12px rgba(0,229,255,0.12);
}

.tickets-page .tickets-btn {
  padding: 14px 24px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), #00bcd4);
  color: #000;
}

.tickets-page .tickets-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 24px;
}

.tickets-page .ticket-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 20px;
  margin-top: 18px;
}

.tickets-page .ticket-item h3 {
  margin-bottom: 10px;
}

.tickets-page .ticket-view-btn {
  margin-top: 14px;
  padding: 12px 18px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
}


.ticket-option h3,
.ticket-option p,
.ticket-option strong,
.ticket-total{
  word-break: break-word;
  overflow-wrap: break-word;
}

.ticket-option h3{
  font-size:22px;
  line-height: 1.3;
}

.ticket-option:hover::before{
  opacity:1;
}

.ticket-option:hover{
  transform:translateY(-4px);
  background:rgba(0,229,255,.05);
  border-color:rgba(0,229,255,.35);
  box-shadow:0 20px 45px rgba(0,0,0,.35),0 0 25px rgba(0,229,255,.08);
}

.ticket-price{
  display:none;
}

.ticket-price::before{
  content:"MXN";
  display:block;
  margin-bottom:8px;
  font-size:11px;
  letter-spacing:2px;
  font-weight:700;
  color:rgba(255,255,255,.45);
}

.ticket-info{
  flex:1;
}

.ticket-qty{
  min-width:90px;
  height:44px;
  border-radius:12px;
  border:
  1px solid rgba(255,255,255,.12);

  background:
  rgba(255,255,255,.05);

  color:white;
  padding:0 12px;
  font-size:15px;

}

.event-card img{

  width:100%;

  object-fit:contain;

  display:block;

  padding:10px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.02)
    );

}

.checkout-summary{
  margin-top:24px;
  padding:22px;
  border-radius:22px;
  background:linear-gradient(
    180deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.02)
  );
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(18px);
  box-shadow:0 10px 30px rgba(0,0,0,.25);

  display:flex;
  flex-direction:column;
  gap:18px;
}

.checkout-qty{
  display:flex;

  align-items:center;

  gap:14px;

  margin-bottom:22px;
}

.checkout-qty label{
  font-size:15px;

  color:
    rgba(255,255,255,.78);

  font-weight:600;
}

#global-ticket-qty{
  min-width:90px;

  height:46px;

  padding:0 14px;

  border-radius:14px;

  border:
    1px solid rgba(255,255,255,.12);

  background:
    rgba(255,255,255,.05);

  color:white;

  font-size:15px;

  outline:none;

  transition:.25s ease;
}

#global-ticket-qty:focus{
  border-color:
    rgba(0,229,255,.35);

  box-shadow:
    0 0 12px rgba(0,229,255,.12);
}

.checkout-total{
  font-size:28px;
  font-weight:800;
  line-height:1.1;
  color:#fff;
}

.past-events-section{
  margin-top:60px;
}

.past-event-card{
  opacity:.72;
  filter:
    grayscale(.15);
}

.past-event-card:hover{
  transform:none;
  border-color:
    rgba(255,255,255,.08);
}

.past-label{
  display:inline-block;
  margin-top:12px;
  padding:8px 12px;
  border-radius:999px;
  background:
    rgba(255,255,255,.08);
  color:
    rgba(255,255,255,.7);
  font-size:12px;
  font-weight:700;
}
.cashless-hero{
  min-height:72vh;
}

.cashless-extra-section{
  padding:110px 8%;
  background:var(--bg);
}

.cashless-banner{
  width:min(1180px, calc(100% - 48px));
  margin:80px auto 40px;
  padding:36px 42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  box-shadow:0 24px 80px rgba(0,0,0,.25);
}

.cashless-banner div{
  max-width:680px;
}

.cashless-banner span{
  display:block;
  margin-bottom:12px;
  color:#00eaff;
  font-size:13px;
  font-weight:800;
  letter-spacing:2px;
}

.cashless-banner h2{
  margin:0 0 12px;
  font-size:42px;
  line-height:1;
}

.cashless-banner p{
  margin:0;
  max-width:620px;
  color:rgba(255,255,255,.78);
  font-size:17px;
  line-height:1.55;
}

.cashless-banner .btn-primary{
  flex-shrink:0;
  white-space:nowrap;
}

.fees-section{
  width:calc(100% - 32px);
  max-width:1180px;
  margin:34px auto 80px;
}

.fees-header{
  text-align:center;
  margin-bottom:52px;
}

.fees-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  margin-bottom:40px;
}

.fee-card{
  min-width:0;
  padding:30px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  overflow:hidden;
}

.fees-header span{
  color:var(--primary);
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.12em;
}

.fees-header h2{
  margin:14px 0;
  font-size:clamp(2rem,3vw,3rem);
}

.fees-header p{
  max-width:760px;
  margin:auto;
  color:var(--muted);
  line-height:1.8;
}

.fee-card:hover{
  transform:translateY(-6px);
  border-color:var(--primary);
}

.fee-card h3{
  margin-bottom:14px;
}

.fee-card p{
  color:var(--muted);
  line-height:1.7;
}

.fees-example{
  padding:35px;
  margin:40px 0;
  text-align:center;
  background:var(--card-hover);
  border:1px solid var(--border);
  border-radius:var(--radius);
}

.fees-example span{
  color:var(--primary);
  font-weight:700;
}

.fees-example strong{
  display:block;
  margin:15px 0;
  font-size:2rem;
}

.fees-example p{
  color:var(--muted);
}

.fees-section .btn-primary{
  display:table;
  margin:45px auto 0;
}

.why-highlight{
  max-width:820px;
  margin:22px auto 0;
  padding:18px 24px;
  border-radius:20px;
  background:rgba(0,229,255,.055);
  border:1px solid rgba(0,229,255,.16);
  color:rgba(255,255,255,.86);
  font-weight:500;
  line-height:1.75;
}

.why-highlight strong{
  color:var(--primary);
}

.access-live-card{
  position:relative;
  overflow:hidden;
}

.access-live-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:radial-gradient(circle at top right,rgba(0,229,255,.14),transparent 38%);
  pointer-events:none;
}

.access-live-card > *{
  position:relative;
  z-index:2;
}

.access-counter div{
  transition:.25s ease;
}

.access-counter div:hover{
  transform:translateY(-3px);
  border-color:rgba(0,229,255,.32);
  background:rgba(0,229,255,.08);
}

.access-row{
  transition:.25s ease;
}

.access-row:hover{
  transform:translateX(4px);
  background:rgba(255,255,255,.06);
}

.access-row strong{
  display:block;
  margin-bottom:4px;
  color:#fff;
  font-size:15px;
  font-weight:800;
}

.access-row p{
  margin:0;
  color:rgba(255,255,255,.68);
  font-size:13px;
  line-height:1.55;
}

.access-row.ok strong{
  color:#7dffb3;
}

.access-row.danger strong{
  color:#ff7676;
}

.access-mini-card{
  transition:.25s ease;
}

.access-mini-card:hover{
  transform:translateY(-5px);
  border-color:rgba(0,229,255,.28);
  background:linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.035));
}

.access-mini-card h3{
  color:#fff;
}

.access-mini-card p{
  margin:0;
}

.dashboard-top strong{
  font-size:16px;
}

.dashboard-main{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin:22px 0;
}

.dashboard-main div{
  min-height:160px;
  padding:22px;
  border-radius:22px;
  background:rgba(0,229,255,.06);
  border:1px solid rgba(0,229,255,.14);
}

.dashboard-main span,
.dashboard-list span{
  display:block;
  margin-bottom:14px;
  color:rgba(255,255,255,.62);
  font-size:14px;
}

.dashboard-main strong{
  display:block;
  margin-bottom:12px;
  color:var(--primary);
  font-size:clamp(30px,4vw,46px);
  line-height:1;
}

.dashboard-main small{
  color:#7dffb3;
  font-weight:700;
}

.dashboard-list{
  display:grid;
  gap:12px;
}

.dashboard-list div{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.dashboard-list strong{
  color:#fff;
  font-size:18px;
  white-space:nowrap;
}


.access-row strong{
  display:block;
  margin-bottom:4px;
  color:#fff;
  font-size:15px;
  font-weight:700;
}

.access-row p{
  margin:0;
  color:rgba(255,255,255,.68);
  font-size:13px;
  line-height:1.55;
}

.access-row.ok strong{
  color:#79ffb8;
}

.access-row.danger strong{
  color:#ff7676;
}

.ticket-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:10px;
  margin-right:8px;
  padding:8px 12px;
  border-radius:999px;
  background:
    rgba(0,229,255,.08);
  border:
    1px solid rgba(0,229,255,.18);
  color:#9befff;
  font-size:12px;
  font-weight:700;
}

.ticket-badge.danger{
  background:
    rgba(255,80,80,.08);
  border:
    1px solid rgba(255,80,80,.18);
  color:#ff9d9d;
}

.ticket-badge.countdown{
  background:
    rgba(255,170,0,.08);
  border:
    1px solid rgba(255,170,0,.18);
  color:#ffd27a;
}

html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

section{
  width:100%;
}


.ticket-modal{
  overflow-x: hidden;
  overflow-y: auto;
}

.metrics-section{
  padding:30px 8% 30px;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:center;
  background:radial-gradient(circle at top right,rgba(0,229,255,.08),transparent 42%),linear-gradient(180deg,#08111f,#050816);
}

.metrics-kicker{
  display:inline-block;
  margin-bottom:16px;
  color:var(--primary);
  font-size:12px;
  font-weight:900;
  letter-spacing:4px;
}

.metrics-left h2{
  max-width:560px;
  font-size:clamp(30px,4vw,48px);
  line-height:1.05;
  letter-spacing:-1.5px;
}

.metrics-sub{
  max-width:580px;
  margin-top:22px;
  color:rgba(255,255,255,.68);
  font-size:17px;
  line-height:1.75;
}

.metrics-actions{
  margin-top:30px;
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.metrics-actions span{
  color:rgba(255,255,255,.56);
  font-size:14px;
}

.live-dashboard{
  padding:28px;
  border-radius:30px;
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 30px 90px rgba(0,0,0,.48),0 0 45px rgba(0,229,255,.10);
  backdrop-filter:blur(16px);
}

.dashboard-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding-bottom:22px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.dashboard-top span{
  color:var(--primary);
  font-size:12px;
  font-weight:900;
  letter-spacing:3px;
  text-transform:uppercase;
}

.dashboard-top strong{
  font-size:20px;
}

.dashboard-main{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin:22px 0;
}

.dashboard-main div{
  padding:22px;
  border-radius:22px;
  background:rgba(0,229,255,.055);
  border:1px solid rgba(0,229,255,.13);
}

.dashboard-main span,
.dashboard-list span{
  display:block;
  margin-bottom:10px;
  color:rgba(255,255,255,.58);
  font-size:13px;
}

.dashboard-main strong{
  display:block;
  margin-bottom:10px;
  color:#fff;
  font-size:clamp(30px,4vw,44px);
  line-height:1;
}

.dashboard-main small{
  color:#7dffb3;
  font-weight:800;
}

.dashboard-list{
  display:grid;
  gap:12px;
}

.dashboard-list div{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.dashboard-list strong{
  color:#fff;
  font-size:18px;
  white-space:nowrap;
}


.demo-disclaimer{
  width:calc(100% - 48px);
  max-width:1180px;
  margin:36px auto 34px;
  padding:18px 22px;
  display:flex;
  align-items:flex-start;
  gap:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.09);
  background:rgba(255,255,255,.035);
  box-shadow:0 18px 45px rgba(0,0,0,.22);
}

.demo-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  background:rgba(0,229,255,.08);
  border:1px solid rgba(0,229,255,.16);
  font-size:20px;
}

.demo-disclaimer strong{
  display:block;
  margin-bottom:6px;
  color:#fff;
  font-size:13px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.demo-disclaimer p{
  margin:0;
  max-width:980px;
  color:rgba(255,255,255,.68);
  font-size:15px;
  line-height:1.65;
}

.demo-disclaimer strong{
  color:#fff;
}

.cashless-dashboard-hero{
  min-height:100vh;
  padding:130px 8% 80px;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:48px;
  align-items:center;
  background:radial-gradient(circle at top right,rgba(0,229,255,.14),transparent 38%),linear-gradient(180deg,#050816,#0b1220);
  overflow:hidden;
}

.cashless-hero-copy{
  max-width:620px;
}

.cashless-pill{
  display:inline-flex;
  margin-bottom:18px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(0,229,255,.08);
  border:1px solid rgba(0,229,255,.18);
  color:var(--primary);
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
}

.cashless-hero-copy h1{
  font-size:clamp(42px,5vw,78px);
  line-height:.95;
  letter-spacing:-3px;
  margin-bottom:22px;
}

.cashless-hero-copy p{
  max-width:560px;
  color:rgba(255,255,255,.7);
  font-size:18px;
  line-height:1.8;
}

.cashless-hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}

.cashless-dashboard-card{
  padding:28px;
  border-radius:32px;
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 35px 90px rgba(0,0,0,.45),0 0 45px rgba(0,229,255,.08);
  backdrop-filter:blur(18px);
}

.dashboard-head{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding-bottom:20px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.dashboard-head span{
  display:block;
  margin-bottom:8px;
  color:var(--primary);
  font-size:12px;
  font-weight:900;
  letter-spacing:3px;
}

.dashboard-head strong{
  font-size:24px;
}

.dashboard-head small{
  height:max-content;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(0,255,170,.1);
  color:#7dffb3;
  font-size:12px;
  font-weight:900;
}

.dashboard-kpis{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin:22px 0;
}

.dashboard-kpis div{
  padding:16px;
  border-radius:18px;
  background:rgba(0,229,255,.055);
  border:1px solid rgba(0,229,255,.13);
}

.dashboard-kpis span{
  display:block;
  color:rgba(255,255,255,.56);
  font-size:12px;
  margin-bottom:8px;
}

.dashboard-kpis strong{
  display:block;
  font-size:22px;
}

.dashboard-kpis small{
  color:#7dffb3;
  font-size:12px;
}

.dashboard-panel-grid{
  display:grid;
  gap:14px;
}

.pos-panel{
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.panel-title{
  display:flex;
  justify-content:space-between;
  gap:14px;
  margin-bottom:12px;
}

.panel-title span{
  color:rgba(255,255,255,.7);
}

.panel-title strong{
  color:#fff;
}

.bar-line{
  height:8px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  overflow:hidden;
}

.bar-line span{
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--primary),#22c55e);
}

.live-movements{
  display:grid;
  gap:10px;
  margin-top:18px;
}

.live-movements div{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:12px;
  padding:13px;
  border-radius:16px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.06);
}

.live-movements span{
  color:rgba(255,255,255,.45);
  font-size:13px;
  font-weight:800;
}

.live-movements p{
  margin:0;
  color:rgba(255,255,255,.75);
  font-size:14px;
  line-height:1.45;
}

.cashless-ops{
  padding:100px 8%;
  background:#0b1220;
}

.ops-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.ops-card{
  padding:26px;
  border-radius:22px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  transition:.25s ease;
}

.ops-card:hover{
  transform:translateY(-6px);
  border-color:rgba(0,229,255,.35);
  box-shadow:0 20px 45px rgba(0,0,0,.3),0 0 22px rgba(0,229,255,.08);
}

.ops-card span{
  display:inline-flex;
  margin-bottom:18px;
  color:var(--primary);
  font-size:13px;
  font-weight:900;
  letter-spacing:.14em;
}

.ops-card h3{
  margin-bottom:12px;
  font-size:20px;
}

.ops-card p{
  color:rgba(255,255,255,.65);
  line-height:1.65;
  font-size:15px;
}

.cashless-flow{
  padding:100px 8%;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:36px;
  align-items:center;
  background:radial-gradient(circle at left,rgba(0,229,255,.10),transparent 42%),linear-gradient(180deg,#0b1220,#050816);
}

.flow-left h2{
  max-width:620px;
  font-size:clamp(34px,4vw,58px);
  line-height:1;
  letter-spacing:-2px;
  margin-bottom:18px;
}

.flow-left p{
  max-width:560px;
  color:rgba(255,255,255,.68);
  line-height:1.8;
  font-size:17px;
}

.flow-list{
  display:grid;
  gap:16px;
}

.flow-list div{
  padding:22px;
  border-radius:22px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.flow-list strong{
  display:block;
  margin-bottom:8px;
  font-size:20px;
}

.flow-list p{
  margin:0;
  color:rgba(255,255,255,.65);
  line-height:1.6;
}

.input-error{
  border:2px solid #ef4444 !important;
  box-shadow:0 0 0 4px rgba(239,68,68,.15);
}

.ticket-option.sold-out{
  opacity:.55;
  cursor:not-allowed;
  pointer-events:auto;
  border-color:#555;
}

.ticket-option.sold-out:hover{
  transform:none;
}

.ticket-sold-out{
  display:inline-block;
  margin-top:8px;
  padding:5px 10px;
  border-radius:999px;
  background:#d62828;
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.8px;
}

@media(max-width:980px){
  .cashless-dashboard-hero,
  .cashless-flow{
    grid-template-columns:1fr;
  }

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

@media(max-width:560px){
  .cashless-dashboard-hero{
    padding:110px 20px 60px;
  }

  .cashless-dashboard-card{
    padding:20px;
    border-radius:24px;
  }

  .dashboard-kpis,
  .ops-grid{
    grid-template-columns:1fr;
  }

  .live-movements div{
    grid-template-columns:1fr;
  }
}

@media (max-width: 480px){
  .producer-hero {
    padding: 70px 15px 30px;
  }
  .producer-logo{
    width: 140px;
    height: 140px;
  }

  .checkout{
    padding:50px 15px;
  }

  .event-container,
  .checkout-container{
    grid-template-columns:1fr;
  }

}

@media(max-width:600px){
  .access-counter{
    grid-template-columns:1fr;
  }

  .access-row{
    grid-template-columns:1fr;
    gap:6px;
  }

  .access-live-top{
    flex-direction:column;
  }

    .page {
    margin: 40px 15px;
    padding: 15px;
  }

}

@media(max-width:768px){

  nav{
    padding:14px 18px;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:12px;
  }

  .nav-links{
    display:none;
    flex-direction:column;
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#000;
    padding:20px;
    gap:15px;
    border-top:1px solid rgba(255,255,255,.1);
    transition:.3s;
  }

  .nav-links.active{
    display:flex;
  }

  .menu-toggle{
    display:block;
    color:#fff;
  }

  .nav-search{
    flex:1;
    max-width:180px;
  }

  .search,
  .search:focus{
    width:100%;
    max-width:100%;
  }

  .producer-hero{
    height:auto;
    min-height:320px;
    padding:90px 20px 50px;
  }

  .producer-hero .hero-content{
    position:relative;
    top:auto;
    transform:none;
    margin-top:0;
  }

  .hero-inner{
    min-height:220px;
    padding:34px 20px;
    border-radius:0 0 34px 34px;
  }

  .producer-logo{
    width:72px;
    height:72px;
    margin-top:0;
    margin-bottom:14px;
  }

  #producer-name{
    font-size:42px;
    line-height:1.05;
    letter-spacing:-1px;
  }

  #producer-tag{
    gap:10px;
  }

  .feature-header-card{
    width:100%;
    justify-content:center;
    padding:14px 16px;
    border-radius:16px;
  }

  .producer-events-section{
    padding:55px 20px 70px;
  }

  .producer-events-section h2{
    font-size:42px;
    line-height:1.05;
    margin-bottom:36px;
  }

  .producer-story,
  .trust,
  .producer-socials{
    padding:55px 20px;
  }

  .producer-story h2,
  .trust h2,
  .producer-socials h2{
    font-size:clamp(28px,7vw,34px);
    line-height:1.1;
    text-align:center;
    margin-bottom:18px;
  }

  .producer-story p{
    font-size:15px;
    line-height:1.8;
    text-align:left;
  }

  .event-card:active{
    transform:translateY(-4px) scale(1.02);
    box-shadow:0 15px 35px rgba(0,0,0,.6),0 0 20px rgba(0,229,255,.18);
    border:1px solid rgba(0,229,255,.3);
  }

  .event-card:active h3{
    color:var(--primary);
  }

  .ticket-content{
    width:min(92%,720px);
    padding:24px;
    margin:4vh auto;
  }

  .ticket-content h2{
    font-size:1.5rem;
  }

  .ticket-option{
    padding:18px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .ticket-option h3{
    font-size:16px;
  }

  .ticket-option .ticket-price{
    font-size:22px;
  }

  .ticket-total{
    font-size:24px;
  }

  .checkout{
    padding:120px 18px 60px;
  }

  .checkout-summary{
    padding:20px;
    border-radius:22px;
  }

  .checkout-total{
    font-size:24px;
    line-height:1.1;
  }

  .about-preview{
    padding:40px 20px;
    margin:20px;
    border-radius:16px;
  }

  .about-content{
    max-width:100%;
  }

  .about-preview h2{
    font-size:24px;
  }

  .about-preview p{
    font-size:14px;
  }

  .about-actions{
    flex-direction:column;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;
    text-align:center;
  }

  .footer-container{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:25px;
  }

  .calculator-tabs{
    flex-direction:column;
  }

  .commission-hero{
     min-height:auto !important;
    padding:95px 20px 28px !important;
  }

  .commission-calculator{
        padding:20px 16px 34px !important;
  }

   .fees-section{
    margin:24px auto 40px;
    width:calc(100% - 24px);
  }

  .official-fees{
    padding:40px 18px;
  }

  .commission-note{
    margin:0 18px 40px;
    padding:24px;
  }

  .fees-header{
    margin-bottom:28px;
  }

  .difference-box{
    margin-top:18px;
  }

  .calculator-card{
    padding:22px;
    border-radius:22px;
  }

  .calculator-inputs,
  .calculator-results{
    grid-template-columns:1fr;
  }

  .calc-result strong{
    font-size:1.55rem;
  }

  .cashless-section{
    grid-template-columns:1fr;
    padding:70px 20px;
    gap:40px;
  }

  .cashless-left h2{
    font-size:56px;
    line-height:.95;
    letter-spacing:-2px;
    max-width:100%;
  }

  .cashless-sub{
    max-width:100%;
    font-size:16px;
    line-height:1.7;
  }

  .wallet-card{
    width:100%;
    max-width:100%;
    transform:none;
  }

  .cashless-banner{
    width:calc(100% - 32px);
    margin:56px auto 32px;
    padding:28px 22px;
    flex-direction:column;
    align-items:flex-start;
    border-radius:20px;
  }

  .cashless-banner h2{
    font-size:34px;
  }

  .cashless-banner p{
    font-size:15px;
  }

  .cashless-banner .btn-primary{
    width:100%;
    text-align:center;
  }


  .hero h1{
    font-size:1.55rem !important;
    line-height:1.05;
    letter-spacing:-1px;
  }

  .rocket{
    font-size:.55em;
    margin:0 1px;
    vertical-align:middle;
  }

  .metrics-left h2{
    font-size:2.4rem;
  }

  .metric-box{
    min-height:160px;
    padding:22px;
  }

  .metric-box strong{
    font-size:2rem;
  }

}

@media(max-width:900px){

.demo-disclaimer{
    width:calc(100% - 32px);
    margin:28px auto 28px;
  }

  .metrics-section{
    grid-template-columns:1fr;
    padding:80px 22px;
    gap:34px;
  }

  .dashboard-main{
    grid-template-columns:1fr;
  }

  .why-cosmic{
    padding:80px 22px;
  }

  .access-layout{
    grid-template-columns:1fr;
  }

  .why-header h2{
    font-size:32px;
    line-height:1.05;
    letter-spacing:-1.4px;
  }

   .why-sub{
    font-size:16px;
  }

  .why-highlight{
    padding:16px;
    font-size:15px;
  }

  .access-live-card{
    padding:20px;
    border-radius:24px;
  }

  .access-counter strong{
    font-size:26px;
  }

  .access-mini-card{
    padding:22px;
  }

    .fees-grid{
    grid-template-columns:1fr;
  }

  .dashboard-main{
    grid-template-columns:1fr;
  }

  .metrics-left h2{
    letter-spacing:-2px;
  }

}

@media (max-width: 1024px) {
  .producer-hero {
    padding: 120px 20px 50px;
    height: auto;
    min-height: auto;
  }

  .producer-logo {
    width: 100px;
    height: 100px;
  }
}

@media (min-width: 769px){
  .producer-hero {
    min-height: 70vh;
    padding: 140px 20px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }

  .producer-hero .hero-content {
    position: relative;
    top: auto;
    transform: none;
  }

  .hero-inner {
    padding-top: 40px;
  }

  .producer-logo {
    margin: 0 auto 24px;
    width: 160px;
    height: 160px;
    display: block;
  }
}

@media(max-width:520px){
  .demo-disclaimer{
    flex-direction:column;
    padding:18px;
  }
}