/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange: #FF6B00;
  --orange-light: #FF8C33;
  --orange-dark: #CC5500;
  --black: #000000;
  --black-2: #0A0A0A;
  --black-card: #111111;
  --text: #FFFFFF;
  --text-muted: rgba(255,255,255,0.55);
  --border: rgba(255,107,0,0.2);
}
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--black); color: var(--text); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange-dark); border-radius: 3px; }

/* ===== UTILITIES ===== */
.orange { color: var(--orange); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.12em; padding: 0.85rem 2rem; border-radius: 4px;
  border: none; cursor: pointer; transition: all 0.25s; text-align: center;
}
.btn-primary { background: var(--orange); color: #000; }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,0,0.35); }
.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--orange); }
.btn-outline:hover { background: var(--orange); color: #000; transform: translateY(-2px); }
.btn-arrow { gap: 0.8rem; }
.btn-full { width: 100%; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,107,0,0.1);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 44px; width: auto; object-fit: contain; }
.nav-links { list-style: none; display: flex; gap: 2.5rem; }
.nav-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em; color: var(--text-muted); transition: color 0.25s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--orange); border-radius: 2px; }
.mobile-menu { display: none; flex-direction: column; background: var(--black-card); border-top: 1px solid var(--border); }
.mobile-menu a { padding: 1rem 2rem; font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.12em; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.25s; }
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .mob-cta { color: var(--orange); }
.mobile-menu.open { display: flex; }
@media(max-width:800px) { .nav-links { display: none; } #nav-cta { display: none; } .hamburger { display: flex; } }

/* ===== HERO ===== */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 68px; overflow: hidden; position: relative;
  background: var(--black);
}
.hero-left {
  flex: 1; padding: 5rem 3rem 5rem 6rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  z-index: 2;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 900; line-height: 0.85;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.hero-title span { color: var(--orange); display: block; }
.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 700; line-height: 1.1;
  color: var(--text); letter-spacing: 0.02em;
}
.hero-desc { font-size: 1rem; line-height: 1.7; color: var(--text-muted); max-width: 340px; }
.hero-btn { align-self: flex-start; }
.hero-right {
  flex: 1; position: relative; align-self: stretch;
  min-height: 600px;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--black) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0) 100%),
              linear-gradient(to top, var(--black) 0%, rgba(0,0,0,0) 30%);
}

.hero-ticket-wrap {
  position: absolute; bottom: 15%; left: -40px;
  z-index: 5;
  transform: translateY(30px);
  opacity: 0;
  animation: heroTicketFloat 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
  animation-delay: 0.3s;
}
@keyframes heroTicketFloat {
  to { transform: translateY(0); opacity: 1; }
}
@media(max-width:900px) {
  #hero { flex-direction: column; }
  .hero-left { padding: 4rem 2rem 2rem; }
  .hero-right { width: 100%; min-height: 350px; }
  .hero-img-overlay { background: linear-gradient(to top, var(--black) 0%, rgba(0,0,0,0) 50%), linear-gradient(to bottom, var(--black) 0%, rgba(0,0,0,0) 30%); }
  .hero-ticket-wrap { display: none; }
}

/* TICKET MOCKUP */
.ticket-mockup {
  width: 200px; border-radius: 16px;
  background: var(--orange); padding: 3px;
  box-shadow: 0 0 60px rgba(255,107,0,0.3), 0 0 120px rgba(255,107,0,0.12);
  transform: rotate(6deg); transition: transform 0.4s;
}
.ticket-mockup:hover { transform: rotate(0deg) scale(1.05); }
.ticket-inner {
  background: #0D0D0D; border-radius: 13px;
  padding: 2rem 1.5rem; display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
}
.ticket-logo { width: 70px; height: 70px; object-fit: contain; border-radius: 50%; }
.ticket-divider { color: var(--orange); font-size: 0.6rem; letter-spacing: 0.4em; }
.ticket-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3em; color: var(--text-muted); }
.ticket-type { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 900; letter-spacing: 0.1em; color: var(--orange); }
.ticket-barcode { width: 100%; height: 40px; display: flex; align-items: center; gap: 2px; margin-top: 0.5rem; }
.barcode-bars {
  width: 100%; height: 40px;
  background: repeating-linear-gradient(90deg, #fff 0px, #fff 2px, transparent 2px, transparent 4px, #fff 4px, #fff 5px, transparent 5px, transparent 8px, #fff 8px, #fff 10px, transparent 10px, transparent 13px);
  border-radius: 2px;
}

/* ===== EVENTS CAROUSEL ===== */
.section-events { padding: 5rem 2rem; background: var(--black); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }

/* Background Tickets */
.bg-tickets-container { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.bg-ticket { position: absolute; opacity: 0.08; filter: blur(3px) grayscale(80%); z-index: 1; transform-origin: center; animation: floatTicket 15s ease-in-out infinite alternate; }
.bg-ticket-1 { top: 5%; left: -5%; transform: scale(0.85) rotate(-20deg); }
.bg-ticket-2 { top: 50%; right: -10%; transform: scale(0.7) rotate(25deg); animation-delay: -5s; }
.bg-ticket-3 { bottom: -5%; left: 35%; transform: scale(0.9) rotate(10deg); animation-delay: -10s; }
@keyframes floatTicket {
  0% { transform: translateY(0) rotate(inherit); }
  100% { transform: translateY(-20px) rotate(calc(inherit + 3deg)); }
}

.events-inner { max-width: 1300px; margin: 0 auto; position: relative; z-index: 10; }
.center-tag { justify-content: center; margin-bottom: 1rem; width: 100%; }
.center-title { text-align: center; margin-bottom: 0.5rem; }

.events-carousel-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.carousel-arrow {
  background: transparent; border: 1px solid var(--orange); border-radius: 50%;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s; flex-shrink: 0;
}
.carousel-arrow:hover { background: rgba(255,107,0,0.1); transform: scale(1.05); }

.events-grid {
  display: flex; gap: 2rem; flex: 1; overflow-x: auto; padding: 1rem 0; scroll-behavior: smooth; scrollbar-width: none;
}
.events-grid::-webkit-scrollbar { display: none; }

.event-card {
  flex: 1; min-width: 320px; background: var(--black-card);
  border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255,107,0,0.15);
  border-color: rgba(255,107,0,0.5);
}

.event-img-wrap { position: relative; height: 220px; }
.event-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9); }
.event-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--black-card) 0%, rgba(17,17,17,0) 50%);
}

.event-date-badge {
  position: absolute; top: 1rem; left: 1rem;
  border: 1px solid var(--orange); border-radius: 6px;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0.5rem; color: var(--orange);
}
.date-day { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 900; line-height: 1; }
.date-month { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; line-height: 1; margin: 2px 0; }
.date-year { font-size: 0.65rem; color: rgba(255,107,0,0.7); }

.event-content { padding: 0 2rem 2rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.event-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem;
  font-weight: 900; line-height: 1.1; letter-spacing: 0.02em;
}
.event-title span { display: block; color: var(--orange); }
.event-location {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 500; color: var(--text-muted);
  letter-spacing: 0.1em; margin-bottom: auto;
}
.event-btn { margin-top: 1rem; padding: 0.8rem 1rem; font-size: 0.85rem; justify-content: space-between; }
.event-btn svg { width: 18px; height: 18px; }

@media(max-width:1024px) {
  .events-grid { flex-direction: column; }
  .carousel-arrow { display: none; }
  .event-card { min-width: 100%; }
}

/* ===== ABOUT ===== */
.section-about { background: var(--black-card); border-top: 1px solid var(--border); padding: 5rem 6rem; }
.about-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 5rem; }
.about-left { flex: 1; display: flex; flex-direction: column; gap: 1.5rem; }
.about-title { font-size: clamp(2rem, 5vw, 3.2rem) !important; }
.about-right { flex: 1; position: relative; border-radius: 8px; overflow: hidden; }
.about-img { width: 100%; height: 380px; object-fit: cover; }
.about-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--black-card) 0%, rgba(0,0,0,0) 40%); }
@media(max-width:900px) { .section-about { padding: 4rem 2rem; } .about-inner { flex-direction: column; gap: 3rem; } .about-img-overlay { display: none; } }

/* ===== FOOTER ===== */
#footer { background: var(--black); border-top: 1px solid var(--border); padding: 3rem 6rem 1rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-col { display: flex; flex-direction: column; gap: 0.8rem; }
.logo-col { flex: 0 0 auto; }
.footer-logo { height: 60px; width: auto; }
.footer-heading { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em; color: var(--text-muted); margin-bottom: 0.3rem; }
.footer-col a, .footer-col span { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color 0.25s; }
.footer-col a:hover { color: var(--orange); }
.footer-col svg { margin-top: 0.3rem; }
.footer-bottom { text-align: center; padding: 1.5rem 0; font-size: 0.75rem; color: rgba(255,255,255,0.25); }
@media(max-width:700px) { #footer { padding: 3rem 2rem 1rem; } .footer-inner { flex-wrap: wrap; gap: 2.5rem; } }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; pointer-events: none; transition: opacity 0.3s; backdrop-filter: blur(6px); }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: #111; border: 1px solid var(--border); border-top: 3px solid var(--orange); border-radius: 6px; width: 100%; max-width: 520px; padding: 2.5rem; position: relative; max-height: 92vh; overflow-y: auto; transform: translateY(20px); transition: transform 0.3s; }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: rgba(255,255,255,0.4); font-size: 1.8rem; cursor: pointer; line-height: 1; transition: color 0.25s; }
.modal-close:hover { color: var(--orange); }
.modal-header { text-align: center; margin-bottom: 2rem; }
.modal-logo { width: 55px; height: 55px; border-radius: 50%; margin: 0 auto 1rem; border: 2px solid var(--border); padding: 5px; }
.modal-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--text); }
.modal-tier { font-size: 0.75rem; letter-spacing: 0.2em; color: var(--orange); font-weight: 700; margin-top: 0.3rem; }
.checkout-section-title { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: var(--orange); border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; margin: 1.5rem 0 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }
.form-group input { background: #0a0a0a; border: 1px solid rgba(255,107,0,0.25); border-radius: 4px; padding: 0.75rem 1rem; color: #fff; font-family: 'Barlow', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.25s; }
.form-group input:focus { border-color: var(--orange); }
.qty-control { display: flex; }
.qty-btn { background: #0a0a0a; border: 1px solid rgba(255,107,0,0.25); color: var(--orange); width: 42px; height: 44px; font-size: 1.3rem; cursor: pointer; transition: background 0.25s; }
.qty-btn:hover { background: rgba(255,107,0,0.1); }
#input-qty { flex: 1; text-align: center; border-left: none; border-right: none; border-radius: 0; }
.payment-box { background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-radius: 4px; padding: 1.2rem; margin-bottom: 1.5rem; }
.card-input-wrap { position: relative; display: flex; align-items: center; }
.card-input-wrap input { width: 100%; padding-right: 50px; }
.card-icon { position: absolute; right: 10px; height: 14px; opacity: 0.8; }
.form-total { display: flex; justify-content: space-between; align-items: center; background: rgba(255,107,0,0.08); border: 1px solid var(--border); border-radius: 4px; padding: 1rem 1.2rem; margin-bottom: 1.2rem; }
.form-total span:first-child { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: rgba(255,255,255,0.5); }
.form-total-amount { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--orange); }
.secure-badge { text-align: center; font-size: 0.7rem; color: rgba(255,255,255,0.35); margin-top: 0.8rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.modal-success { text-align: center; padding: 2rem 0; }
.success-icon { width: 70px; height: 70px; border-radius: 50%; background: rgba(255,107,0,0.1); border: 2px solid var(--orange); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--orange); margin: 0 auto 1.5rem; }
.modal-success h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 900; color: var(--text); margin-bottom: 0.8rem; }
.modal-success p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.5rem; }
.success-sub { font-size: 0.7rem !important; letter-spacing: 0.3em; color: var(--orange) !important; margin: 1rem 0 1.5rem !important; }

/* ===== ROUNDS LIST MODAL ===== */
.rounds-list { display: flex; flex-direction: column; gap: 1rem; }
.round-list-item {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,0,0,0.4); border: 1px solid var(--border);
  padding: 1rem 1.5rem; border-radius: 6px; transition: border-color 0.25s, background 0.25s;
}
.round-list-item:hover { border-color: rgba(255,107,0,0.5); background: rgba(255,107,0,0.05); }
.round-list-info { display: flex; flex-direction: column; gap: 0.3rem; }
.round-list-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 800; letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase; }
.round-list-price { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 900; color: var(--orange); line-height: 1; }
.vip-list-item { background: linear-gradient(90deg, rgba(0,0,0,0.4), rgba(255,107,0,0.08)); border-color: rgba(255,107,0,0.3); }
