:root {
  --primary: #E10600;          /* racing red */
  --primary-light: #FF3B3B;
  --secondary: #FF1E1E;
  --accent: #ff6b6b;
  --bg: #0c0c0f;               /* near-black */
  --bg-soft: #141418;
  --bg-card: #1a1a20;
  --line: rgba(225, 6, 0, .18);
  --text: #f3ecec;
  --muted: #9a8f8f;
  --shadow: 0 14px 40px rgba(0, 0, 0, .55);
  --glow: 0 0 24px rgba(225, 6, 0, .45);
  --radius: 18px;
  --tablet: 767px;
  --desktop: 1239px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  font-family: 'Varela Round', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Content protection (deters casual copying) ===== */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;     /* no iOS long-press image menu */
}
/* keep the contact form usable */
.form__input, .form__textarea, input, textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
img, .app-screen, .stadium, .shot, .phone {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  user-drag: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #8a0300);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 8px 20px rgba(225, 6, 0, .4);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(225, 6, 0, .6), var(--glow); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 10px 22px; font-size: 14px; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 12, 15, .8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.logo {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  white-space: nowrap;
  letter-spacing: .5px;
}
.logo span { color: var(--secondary); }
.nav { display: flex; gap: 26px; margin-left: auto; }
.nav__link {
  font-size: 15px;
  color: var(--text);
  position: relative;
  transition: color .15s ease;
}
.nav__link:hover { color: var(--secondary); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--secondary);
  transition: width .2s ease;
}
.nav__link:hover::after { width: 100%; }
.header .btn--sm { margin-left: 8px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
}
.burger span { width: 26px; height: 3px; background: var(--secondary); border-radius: 3px; transition: transform .25s ease, opacity .25s ease; }
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  padding: 70px 0 90px;
  background:
    radial-gradient(900px 520px at 80% -10%, rgba(225, 6, 0, .35), transparent 60%),
    radial-gradient(700px 420px at 5% 120%, rgba(138, 3, 0, .35), transparent 60%),
    linear-gradient(180deg, #0c0c0f, #121216);
}
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px; }
.hero__title {
  margin: 0;
  font-size: 66px;
  line-height: 1.04;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 30px rgba(225, 6, 0, .5);
}
.hero__title span { color: var(--secondary); }
.hero__subtitle { margin-top: 16px; font-size: 22px; color: var(--accent); }
.hero__text { margin-top: 10px; color: var(--muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 14px;
  background: #000;
  border: 1px solid var(--line);
  color: #fff;
  transition: transform .15s ease, box-shadow .15s ease;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--glow); }
.store-badge__icon { font-size: 22px; color: var(--secondary); }
.store-badge__text { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge__text small { font-size: 10px; opacity: .7; text-transform: uppercase; letter-spacing: .5px; }
.store-badge__text strong { font-size: 17px; }

.hero__stats { display: flex; gap: 36px; margin-top: 36px; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-size: 26px; color: var(--secondary); }
.hero__stats span { font-size: 13px; color: var(--muted); }

/* Phone mockup */
.hero__art { display: flex; justify-content: center; }
.phone {
  width: 270px;
  height: 540px;
  border-radius: 38px;
  background: #050505;
  border: 1px solid rgba(225, 6, 0, .25);
  padding: 14px;
  box-shadow: var(--shadow), var(--glow);
  transform: rotate(3deg);
}
.phone__screen { width: 100%; height: 100%; border-radius: 26px; overflow: hidden; }

/* Sky scene used for screens / screenshots */
.app-screen {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 0%, #3a0606, transparent 60%),
    linear-gradient(180deg, #1a0606 0%, #0a0a0d 60%, #050505 100%);
  overflow: hidden;
}
.app-screen::before {  /* speed/cloud streaks */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 60%, rgba(255, 59, 59, .12) 61%, transparent 63%),
    linear-gradient(90deg, transparent 30%, rgba(255, 255, 255, .06) 31%, transparent 33%);
  background-size: 120px 100%, 200px 100%;
}
.app-screen::after {   /* plane */
  content: "\2708";    /* ✈ */
  position: absolute;
  top: 44%; left: 50%;
  transform: translate(-50%, -50%) rotate(-35deg);
  font-size: 84px;
  color: var(--secondary);
  text-shadow: 0 0 24px rgba(225, 6, 0, .8);
}

/* ===== Generic section ===== */
.section { padding: 80px 0; }
.section--soft { background: var(--bg-soft); }
.section__title {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 40px;
}
.section__title span { color: var(--secondary); }

/* ===== About ===== */
.about__text { max-width: 760px; margin: 0 auto; text-align: center; font-size: 18px; color: var(--text); display: grid; gap: 18px; }
.about__quote { font-weight: 700; font-size: 22px; color: var(--accent); }

/* ===== Info ===== */
.info__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.info__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow);
}
.info__card--wide { grid-column: 1 / -1; }
.info__label { font-size: 13px; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); }
.info__value { font-size: 18px; font-weight: 700; color: var(--secondary); }

/* ===== Gallery slider ===== */
.slider { display: flex; align-items: center; gap: 12px; }
.slider__viewport { overflow: hidden; flex: 1; }
.slider__track { display: flex; gap: 20px; transition: transform .4s ease; will-change: transform; }
.shot {
  flex: 0 0 240px;
  height: 420px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.shot--2::after { transform: translate(-50%,-50%) rotate(20deg); top: 38%; font-size: 76px; }
.shot--3::after { transform: translate(-50%,-50%) rotate(-12deg); top: 52%; font-size: 92px; }
.shot--4::after { transform: translate(-50%,-50%) rotate(8deg); top: 40%; font-size: 70px; }
.shot--5::after { content: "\26BD"; transform: translate(-50%,-50%); top: 46%; font-size: 96px; color: #fff; text-shadow: 0 0 24px rgba(255, 255, 255, .45); }
.slider__btn {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--secondary);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .15s ease, background .15s ease;
}
.slider__btn:hover { transform: scale(1.08); background: var(--primary); color: #fff; }

/* ===== European Nights (football event) ===== */
.nights__lead { max-width: 760px; margin: 0 auto 36px; text-align: center; font-size: 18px; color: var(--muted); }
.nights__stats { display: flex; gap: 36px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.nights__stats li { display: flex; flex-direction: column; align-items: center; }
.nights__stats strong { font-size: 26px; color: var(--secondary); }
.nights__stats span { font-size: 13px; color: var(--muted); }

.stadium {
  position: relative;
  height: 440px;
  max-width: 920px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow), var(--glow);
  background: radial-gradient(120% 90% at 50% 0%, #3a0606, transparent 55%), linear-gradient(180deg, #160404, #0a0a0d);
}
.stadium__sky { position: absolute; inset: 0; background: radial-gradient(60% 40% at 50% 12%, rgba(255, 240, 200, .12), transparent 70%); }

/* floodlights */
.floodlight { position: absolute; top: 10%; width: 6px; height: 32%; background: linear-gradient(#3a3a3a, #111); border-radius: 3px; }
.floodlight::after {
  content: "";
  position: absolute;
  top: -16px; left: -18px;
  width: 42px; height: 15px;
  background: #fff6e0;
  border-radius: 4px;
  box-shadow: 0 0 34px 12px rgba(255, 240, 200, .55);
}
.floodlight--l { left: 11%; }
.floodlight--r { right: 11%; }

/* pitch with perspective */
.stadium__pitch {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 56%;
  background: repeating-linear-gradient(90deg, #0f2c17 0 44px, #0b2210 44px 88px);
  clip-path: polygon(14% 0, 86% 0, 100% 100%, 0 100%);
  box-shadow: inset 0 22px 50px rgba(0, 0, 0, .6);
}
.stadium__pitch::before { /* halfway line */
  content: "";
  position: absolute;
  left: 0; right: 0; top: 42%;
  height: 2px;
  background: rgba(255, 30, 30, .45);
}
.stadium__pitch::after { /* centre circle */
  content: "";
  position: absolute;
  left: 50%; top: 42%;
  width: 120px; height: 56px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 30, 30, .45);
  border-radius: 50%;
}

/* ball */
.ball {
  position: absolute;
  left: 50%; bottom: 16%;
  transform: translateX(-50%);
  font-size: 48px;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, .45));
  animation: ball-bob 2.6s ease-in-out infinite;
}

/* banner-towing plane */
.banner-plane {
  position: absolute;
  top: 16%; left: -45%;
  display: inline-flex;
  align-items: center;
  font-size: 34px;
  white-space: nowrap;
  animation: fly-across 11s linear infinite;
}
.banner {
  margin-left: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--primary), #8a0300);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 0 6px 6px 0;
  transform: skewX(-12deg);
  box-shadow: var(--glow);
}

/* twinkling stars */
.spark { position: absolute; color: var(--accent); font-size: 14px; animation: twinkle 2.4s ease-in-out infinite; }
.spark.s1 { top: 14%; left: 24%; animation-delay: .0s; }
.spark.s2 { top: 22%; left: 70%; animation-delay: .5s; }
.spark.s3 { top: 33%; left: 40%; animation-delay: 1s; font-size: 18px; }
.spark.s4 { top: 12%; left: 56%; animation-delay: 1.4s; }
.spark.s5 { top: 28%; left: 82%; animation-delay: .8s; }

@keyframes fly-across { from { transform: translateX(0); } to { transform: translateX(380%); } }
@keyframes ball-bob { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-12px); } }
@keyframes twinkle { 0%, 100% { opacity: .25; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.25); } }

@media (prefers-reduced-motion: reduce) {
  .banner-plane, .ball, .spark { animation: none; }
  .banner-plane { left: 28%; }
}

/* ===== Reviews ===== */
.reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.review {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}
.review__stars { color: var(--secondary); letter-spacing: 2px; font-size: 18px; }
.review blockquote { margin: 0; font-size: 16px; color: var(--text); }
.review figcaption { font-weight: 700; color: #fff; }

/* ===== Contacts / form ===== */
.form { max-width: 640px; margin: 0 auto; display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: var(--bg-card);
  color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form__input::placeholder { color: var(--muted); }
.form__input:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(225, 6, 0, .2); }
.form__textarea { min-height: 130px; resize: vertical; }
.form .btn { justify-self: start; }
.form__status { font-size: 14px; color: var(--secondary); min-height: 18px; }

/* ===== Legal pages (Terms / Privacy) ===== */
.legal { padding: 60px 0 90px; }
.legal__inner { max-width: 820px; margin: 0 auto; }
.legal__back { display: inline-flex; align-items: center; gap: 6px; color: var(--secondary); font-weight: 700; margin-bottom: 18px; }
.legal h1 { font-size: 38px; color: #fff; margin: 0 0 6px; }
.legal__updated { color: var(--muted); font-size: 14px; margin-bottom: 30px; }
.legal h2 { font-size: 22px; color: var(--secondary); margin: 34px 0 10px; }
.legal p, .legal li { font-size: 16px; color: var(--text); }
.legal p { margin: 0 0 14px; }
.legal ul { list-style: disc; padding-left: 22px; margin: 0 0 14px; display: grid; gap: 8px; }
.legal a { color: var(--secondary); text-decoration: underline; }

/* ===== Footer ===== */
.footer { background: #000; border-top: 1px solid var(--line); color: #fff; padding: 40px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.footer .logo { color: #fff; }
.footer__nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__nav a { color: var(--accent); transition: opacity .15s ease; }
.footer__nav a:hover { opacity: .7; }
.footer__copy { color: rgba(255, 255, 255, .5); font-size: 14px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__actions, .hero__stats { justify-content: center; }
  .hero__art { order: -1; }
  .info__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    padding: 10px 20px;
    transform: translateY(-130%);
    transition: transform .25s ease;
    margin: 0;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
  .header .btn--sm { display: none; }
  .burger { display: flex; }
  .hero__title { font-size: 46px; }
  .section { padding: 56px 0; }
  .section__title { font-size: 30px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
}
