*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Outfit', sans-serif;
  background: #111;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* NAV */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

nav img { height: 90px; }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 88vh;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-text h1 .line-orange { color: #E8891A; }

.hero-text .sub {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 380px;
}

.hero-text .cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.85rem 2rem;
  background: #E8891A;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  letter-spacing: 0.01em;
}

.hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img img {
  width: min(420px, 100%);
}

/* EVENT */
.event-section {
  background: #161616;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.event-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E8891A;
  margin-bottom: 1rem;
}

.event-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

/* MATCH CARD */
.match-card {
  background: #1E1E1E;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  overflow: hidden;
}

.match-top {
  background: #2a2a2a;
  padding: 2.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.match-date {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}

.match-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.team-flag {
  width: 96px;
  height: auto;
  border-radius: 12px;
  display: block;
}

.team-name {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.vs {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
}

.match-bottom {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.info-block {
  padding: 1.25rem;
  background: #252525;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}

.info-block .info-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.4rem;
}

.info-block .info-value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.support-block .support-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.support-block .support-logos img {
  max-height: 38px;
  width: auto;
  display: block;
}

/* PRICE */
.price-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.price-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  background: #E8891A;
  border-radius: 16px;
}

.price-big {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}

.price-detail {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.25rem;
}

.includes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.include-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

.check {
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.payment-hint {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: #1E1E1E;
  border: 1px dashed rgba(232,137,26,0.3);
  border-radius: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
}

.payment-hint strong {
  color: #E8891A;
  font-weight: 600;
}

/* VIBE */
.vibe-section {
  background: #161616;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.vibe-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.vibe-inner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.vibe-item {
  padding: 1.5rem;
  background: #1E1E1E;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
}

.vibe-emoji {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.vibe-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.vibe-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem 2rem;
  text-align: center;
}

footer img { height: 44px; opacity: 0.4; margin-bottom: 0.75rem; display: block; margin-left: auto; margin-right: auto; }
footer p { font-size: 0.82rem; color: rgba(255,255,255,0.25); }

@media (max-width: 700px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 3rem 1.5rem; }
  .hero-text .sub { margin-left: auto; margin-right: auto; }
  .hero-img { margin-top: 2rem; }
  .match-bottom { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .include-row { justify-content: center; }
  .vibe-grid { grid-template-columns: 1fr; }
}