/* Template-001 — MaoriVegas esintili neon ızgara tasarımı */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Unbounded:wght@500;600;700&display=swap');

:root {
  --bg: #02030c;
  --bg-alt: #050a1a;
  --card: rgba(8, 16, 38, 0.92);
  --card-soft: rgba(7, 14, 32, 0.7);
  --brand: #08f7fe;
  --brand-2: #f72585;
  --brand-3: #ffd319;
  --text: #f5f7ff;
  --muted: #9fb5ff;
  --border: rgba(8, 247, 254, 0.3);
}

* {
  box-sizing: border-box;
}

*::selection {
  background: rgba(247, 37, 133, 0.5);
  color: #fff;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(8, 247, 254, 0.15), transparent 45%),
              radial-gradient(circle at 80% 10%, rgba(247, 37, 133, 0.12), transparent 55%),
              radial-gradient(circle at 50% 80%, rgba(255, 211, 25, 0.08), transparent 60%),
              linear-gradient(135deg, #01030b 0%, #050a1f 60%, #02030c 100%);
  color: var(--text);
  line-height: 1.65;
  background-attachment: fixed;
  letter-spacing: 0.01em;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background-image: linear-gradient(120deg, rgba(8, 247, 254, 0.05) 0%, transparent 48%),
                    linear-gradient(300deg, rgba(247, 37, 133, 0.04) 25%, transparent 70%);
  mix-blend-mode: screen;
  animation: glowShift 15s ease-in-out infinite alternate;
}

body::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 140px 140px;
  opacity: 0.25;
}

@keyframes glowShift {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.95; }
  100% { transform: scale(1.02); opacity: 0.7; }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1200px, 94vw);
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(22px) saturate(160%);
  background: rgba(2, 3, 12, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 10;
  box-shadow: 0 30px 60px rgba(1, 4, 15, 0.8);
}

.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--brand-3), var(--brand));
  opacity: 0.7;
  animation: lineScan 6s linear infinite;
}

@keyframes lineScan {
  0% { background-position: 0 0; }
  100% { background-position: 600px 0; }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.brand {
  font-family: 'Unbounded', 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text);
  position: relative;
  padding-left: 1.25rem;
}

.brand::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 26px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 15px rgba(8, 247, 254, 0.6);
}

.nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  position: relative;
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.85;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.nav a::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(8, 247, 254, 0.4);
  opacity: 0;
  transition: 0.3s;
}

.nav a:hover {
  opacity: 1;
  color: var(--brand);
}

.nav a:hover::after {
  opacity: 1;
  box-shadow: 0 0 25px rgba(8, 247, 254, 0.4);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.8rem;
  border: 1px solid transparent;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #05020c;
  box-shadow: 0 15px 35px rgba(247, 37, 133, 0.35);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 25px 50px rgba(8, 247, 254, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  color: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 10px 25px rgba(8, 247, 254, 0.35);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(8, 247, 254, 0.25) 0%, transparent 60%);
  filter: blur(100px);
  opacity: 0.7;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -35%;
  left: -20%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(247, 37, 133, 0.3) 0%, transparent 70%);
  filter: blur(120px);
  opacity: 0.6;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-copy h1 {
  font-family: 'Unbounded', 'Space Grotesk', sans-serif;
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(120deg, #fff, #08f7fe 40%, #f72585 70%, #ffd319 100%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.hero-copy p {
  margin: 0 0 2rem;
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.countdown-block {
  padding: 1.35rem 1rem;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(1, 3, 9, 0.7);
  position: relative;
  overflow: hidden;
}

.countdown-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 247, 254, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.countdown-block:hover::after {
  opacity: 1;
}

.countdown-value {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.08em;
}

.countdown-label {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.6);
}

.badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
}

.badges li {
  font-size: 0.85rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.hero-card {
  background: var(--card);
  border-radius: 32px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.55);
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(8, 247, 254, 0.15), rgba(247, 37, 133, 0.15));
  mix-blend-mode: soft-light;
  opacity: 0.7;
}

.hero-card * {
  position: relative;
  z-index: 2;
}

.prize-head {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--muted);
}

.hero-card h2 {
  margin: 1rem 0 0.5rem;
  font-size: 1.9rem;
}

.hero-card .value {
  color: var(--brand-3);
  font-weight: 700;
  margin-bottom: 1rem;
}

.prize-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.prize-list li {
  padding-left: 1.3rem;
  position: relative;
}

.prize-list li::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 0;
  top: 0.75rem;
  background: var(--brand);
  box-shadow: 0 0 10px rgba(8, 247, 254, 0.8);
}

.features {
  padding: 100px 0 80px;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 247, 254, 0.04), transparent 40%, rgba(247, 37, 133, 0.05));
  opacity: 0.8;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature {
  padding: 2rem;
  border-radius: 24px;
  background: var(--card-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.feature::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature:hover::after {
  opacity: 1;
}

.feature h3 {
  font-family: 'Unbounded', sans-serif;
  margin-bottom: 0.9rem;
}

.feature p {
  color: rgba(255, 255, 255, 0.75);
}

.tickets {
  padding: 90px 0;
}

.tickets h2 {
  text-align: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 2.3rem;
  margin-bottom: 2.5rem;
}

.tickets h2::after {
  content: '';
  display: block;
  width: 85px;
  height: 4px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  border-radius: 999px;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.ticket-card {
  padding: 2.2rem 2rem;
  border-radius: 28px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.ticket-card .price {
  font-size: clamp(2.3rem, 5vw, 3.2rem);
  font-weight: 700;
  background: linear-gradient(120deg, #fff, var(--brand));
  -webkit-background-clip: text;
  color: transparent;
}

.ticket-card p {
  color: rgba(255, 255, 255, 0.7);
}

.ticket-card.popular {
  border-color: rgba(247, 37, 133, 0.5);
  box-shadow: 0 0 60px rgba(247, 37, 133, 0.4);
  position: relative;
}

.ticket-card.popular::after {
  content: 'HOT PICK';
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  background: rgba(247, 37, 133, 0.1);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 37, 133, 0.4);
}

.responsible {
  padding: 90px 0;
  position: relative;
  background: radial-gradient(circle at top, rgba(8, 247, 254, 0.04), transparent 65%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.responsible h2 {
  font-family: 'Unbounded', sans-serif;
  margin-bottom: 1.1rem;
}

.responsible p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 760px;
}

.licenses {
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(8, 247, 254, 0.08);
  border: 1px solid rgba(8, 247, 254, 0.2);
  color: var(--muted);
}

.links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.links a {
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease;
}

.links a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.site-footer {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(1, 2, 8, 0.5);
  backdrop-filter: blur(20px);
}

.footer-inner {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1000;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 20, 0.85);
  backdrop-filter: blur(12px);
}

.modal-dialog {
  position: relative;
  background: var(--card);
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.06);
  width: min(520px, 100%);
  color: #fff;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}

.form {
  display: grid;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.form input {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.9rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: inherit;
}

.form input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(8, 247, 254, 0.2);
}

.age-verification-modal .modal-backdrop {
  background: rgba(2, 3, 12, 0.95);
}

.age-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-card {
    order: -1;
  }
  .countdown {
    grid-template-columns: repeat(2, minmax(110px, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }
  .nav {
    width: 100%;
    justify-content: flex-start;
  }
  .hero {
    padding-top: 80px;
  }
  .hero-cta,
  .links,
  .badges {
    flex-direction: column;
  }
  .btn,
  .links a {
    width: 100%;
  }
}
