:root{
  --bg-paper:#ece8e1;
  --bg-dark:#0b0f14;
  --bg-darker:#070a0d;
  --text:#0f1923;
  --white:#ffffff;
  --muted:rgba(255,255,255,.75);
  --accent:#ff4655;
  --accent-dark:#11161d;
  --max:1280px;

  --header-h:72px;
  --shadow: 0 10px 30px rgba(0,0,0,.18);
  --shadow-soft: 0 8px 20px rgba(0,0,0,.10);
  --border: 1px solid rgba(15,25,35,.15);
}

@font-face{
  font-family: "Tungsten";
  src: url("../fonts/Tungsten-Bold.woff2") format("woff2"),
       url("../fonts/Tungsten-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;

  /* wichtig: verhindert das “erst andere Font, dann Tungsten” */
  font-display: block;
}

/* =========================
   Base / Reset
========================= */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg-paper);
}
a{ color:inherit; text-decoration:none; }
button{ font:inherit; }

/* =========================
   Helpers / Layout
========================= */
.container{
  width:min(var(--max), calc(100% - 48px));
  margin:0 auto;
}
.page{ padding-top:var(--header-h); }

/* =========================
   Header
========================= */
.site-header{
  position:fixed;
  left:0; right:0; top:0;
  height:var(--header-h);
  background:#0a0a0a;
  z-index:50;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{
  height:100%;
  display:flex;
  align-items:center;
  gap:18px;
  padding:0 20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:260px;
}
.val-mark{
  font-family: Anton, Inter, Arial, sans-serif;
  letter-spacing:.12em;
  font-size:14px;
  color:#fff;
  opacity:.95;
}

.nav{
  display:flex;
  align-items:center;
  gap:34px;        /* mehr Abstand zwischen den Reitern */
  flex: 1;
  justify-content:flex-start; /* sicherstellen: links */
  overflow:hidden;
}

.nav__link{
  color:#fff;
  font-weight:800;
  font-size:13px;     /* vorher 12px -> etwas größer */
  letter-spacing:.10em;
  opacity:.92;
  white-space:nowrap;
  padding:12px 0;     /* etwas mehr Höhe */
  position:relative;
}

.nav__link::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:2px;
  height:2px;
  background:var(--accent);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .18s ease;
}
.nav__link:hover{ opacity:1; }
.nav__link:hover::after{ transform:scaleX(1); }

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.icon-btn{
  width:38px; height:38px;
  border-radius:8px;
  background:transparent;
  border:1px solid rgba(255,255,255,.10);
  display:grid;
  place-items:center;
  cursor:pointer;
}
.icon-btn svg{ width:18px; height:18px; fill:#fff; opacity:.92; }
.icon-btn:hover{ border-color:rgba(255,255,255,.22); }
/* Weltkugel wie Original: kein Rahmen/Shadow, etwas größer */
.icon-btn--globe{
  border: none;
  background: transparent;
  box-shadow: none;
  width: 42px;
  height: 42px;
}

.icon-btn--globe svg{
  width: 20px;
  height: 20px;
  opacity: .95;
}

/* CTA wie Original (nicht komplett rund + leichter Verlauf) */
.cta{
  background: linear-gradient(180deg, #ff5a66 0%, #ff4655 55%, #e93b49 100%);
  color:black;
  font-weight:800;
  letter-spacing:.10em;
  font-size:13px;
  padding:12px 18px;
  border-radius: 16px;              /* ✅ nur leicht abgerundet */
  white-space:nowrap;
  box-shadow: none;                  /* ✅ kein extra Shadow */
}

.cta:hover{
  filter: brightness(0.98);
}

/* Mobile nav toggle */
.nav-toggle{
  display:none;
  width:42px; height:42px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  background:transparent;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:#fff;
  margin:4px auto;
  opacity:.9;
}

/* Brand etwas schmaler, damit Nav früher anfängt */
.brand{
  display:flex;
  align-items:center;
  gap:16px;
  min-width: 200px; /* vorher 260px -> Nav startet weiter links */
}

.logo{
  display:block;
  height:22px;     /* wie im Original recht kompakt */
  width:auto;
}

/* Riot Games Logo links */
.logo--riot{
  height:60px;
}

/* VALORANT "V" Logo rechts daneben */
.logo--val{
  height:22px;

  /* macht einfarbig/orange Logos weiß */
  filter: brightness(0) invert(1);
  opacity:.95;
}

/* =========================
   Hero
========================= */
.hero{
  position:relative;
  min-height:calc(100vh - var(--header-h));
  display:grid;
  place-items:center;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  overflow:hidden; /* wichtig */
}

/* Video füllt den Hero komplett */
.hero__video{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;        /* füllt ohne Balken (cropt ggf.) */
  object-position: center;
  filter:saturate(.9);
}

/* falls du den bestehenden Gradient noch willst: als Overlay */
.hero__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(200,200,200,.35) 0%,
    rgba(70,80,85,.35) 55%,
    rgba(15,25,35,.55) 100%
  );
  pointer-events:none;
}
.hero__vignette{
  position:absolute; inset:-2px;
  background: radial-gradient(900px 400px at 50% 40%, rgba(255,255,255,.18), rgba(0,0,0,.55));
  mix-blend-mode:multiply;
  pointer-events:none;
}
.hero__content{
  position:relative;
  text-align:center;
  padding:80px 0;
}
/* Hero Logo als Bild */
.hero__logoImg{
  display:block;
  margin: 0 auto 14px auto;
  width: min(532px, 55vw);
  height: auto;

  /* optional: wenn dein PNG nicht weiß ist (z.B. orange) */
  filter: brightness(0) invert(1);
  opacity: .98;

  /* optional: ähnlich wie vorher etwas “Tiefe” */
  filter: brightness(0) invert(1) drop-shadow(0 12px 30px rgba(0,0,0,.25));
}
.hero__subtitle{
  color:rgba(255,255,255,.92);
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size: clamp(12px, 1.25vw, 14px);
  max-width:820px;
  margin:0 auto 26px auto;
}

/* =========================
   Buttons
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:0;
  padding:14px 22px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  border:2px solid transparent;
  box-shadow: var(--shadow-soft);
}
.btn--primary{
  background:var(--accent);
  color:#fff;
  border-color:rgba(255,255,255,.18);
}
.btn--primary:hover{ filter:brightness(.96); }

.btn--dark{
  background:#10151c;
  color:#fff;
  border-color:rgba(255,255,255,.12);
}
.btn--dark:hover{ filter:brightness(1.05); }

/* =========================
   Common typography
========================= */
.big-title{
  font-family: Anton, Inter, Arial, sans-serif;
  text-transform:uppercase;
  letter-spacing:.03em;
  font-size: clamp(34px, 5vw, 64px);
  margin:0 0 10px 0;
}
.big-title--white{ color:#fff; }

.subhead{
  margin:0 0 10px 0;
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-weight:900;
  opacity:.95;
}
.subhead--white{ color:#fff; }

/* =========================
   Sections / News
========================= */
.section{ padding:54px 0; }
.section--paper{ background:var(--bg-paper); }

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:22px;
}
.section-title{
  margin:0;
  font-family: Anton, Inter, Arial, sans-serif;
  font-size: clamp(26px, 3vw, 46px);
  letter-spacing:.02em;
  text-transform:uppercase;
}
.section-link{
  font-weight:800;
  letter-spacing:.08em;
  font-size:12px;
  text-transform:uppercase;
  color:#0f1923;
  opacity:.85;
  display:flex;
  align-items:center;
  gap:10px;
}
.section-link:hover{ opacity:1; }
.section-link .ext{ color:var(--accent); font-weight:900; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:28px;
}
.card{ background:transparent; border-radius:0; }
.card__media{
  height:180px;
  border-radius:2px;
  box-shadow: var(--shadow-soft);
  position:relative;
  overflow:hidden;
}
.card__media::after{
  content:"";
  position:absolute;
  right:0; bottom:0;
  width:36px; height:36px;
  background:rgba(0,0,0,.30);
  backdrop-filter: blur(2px);
}
.card__meta{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:14px;
  margin-bottom:6px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:11px;
}
.tag{ color:var(--accent); }
.date{
  color:rgba(15,25,35,.6);
  font-weight:700;
  letter-spacing:.02em;
  text-transform:none;
}
.card__title{
  margin:0 0 6px 0;
  font-size:18px;
  font-weight:900;
  letter-spacing:.01em;
}
.card__text{
  margin:0;
  color:rgba(15,25,35,.72);
  font-size:13px;
  line-height:1.45;
}

.media{
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(0,0,0,.25)),
    linear-gradient(135deg, rgba(0,0,0,.06), rgba(0,0,0,.14));
  background-size:cover;
  background-position:center;
}
.media--news1{ background-image: url("../assets/news-1.jpg"), linear-gradient(135deg, rgba(150,50,255,.75), rgba(20,20,30,.9)); }
.media--news2{ background-image: url("../assets/news-2.jpg"), linear-gradient(135deg, rgba(60,170,90,.8), rgba(15,25,35,.9)); }
.media--news3{ background-image: url("../assets/news-3.jpg"), linear-gradient(135deg, rgba(120,40,220,.85), rgba(15,25,35,.92)); }

/* =========================
   Season banner
========================= */
.season{
  position:relative;
  padding:0;
  background:#dfead9;
  overflow:hidden;
}
.season__bg{
  position:absolute; inset:0;
  background:
    url("../assets/season-banner.jpg"),
    linear-gradient(90deg, rgba(236,232,225,.90) 0%, rgba(236,232,225,.90) 46%, rgba(0,0,0,0) 46%),
    linear-gradient(180deg, rgba(236,232,225,.9), rgba(210,240,215,.75));
  background-size:cover;
  background-position:center right;
  filter:saturate(.95);
}
.season__inner{
  position:relative;
  min-height:580px;   /* vorher 420px -> höher wie Original */
  display:flex;
  align-items:center;
  padding:64px 0;     /* vorher 48px -> mehr Höhe/„Luft“ */
}
.season__left{ max-width:560px; }
.pipe{ opacity:.85; }
.season__text{
  margin:0 0 18px 0;
  color:rgba(15,25,35,.78);
  font-weight:600;
  line-height:1.45;
  max-width:460px;
}

/* =========================
   About (WIR SIND VALORANT) - Video
========================= */
.about{
  background:var(--bg-paper);
  padding:96px 0 112px;
  position:relative;
  overflow:hidden;
}
.about__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:56px;
  align-items:center;
}
.about::before{
  content:"";
  position:absolute;
  left:14%;
  top:28%;
  width:8px;
  height:8px;
  background:var(--accent);
  box-shadow:
    220px -120px 0 var(--accent),
    520px  40px 0 var(--accent),
    760px -40px 0 var(--accent),
    980px 120px 0 var(--accent);
  opacity:.9;
}
.about__content{ max-width:680px; }
.about .big-title{
  font-size: clamp(40px, 4.4vw, 78px);
  margin-bottom:14px;
  white-space: nowrap;
}
.about .subhead{ font-size:13px; margin-bottom:10px; }
.about__text{
  margin:0 0 26px 0;
  color:rgba(15,25,35,.78);
  line-height:1.7;
  font-size:15px;
  max-width:700px;
}
.about .btn{ padding:16px 28px; font-size:13px; }

.about__video{
  width:100%;
  aspect-ratio:16 / 9;
  min-height:340px;
  border-radius:2px;
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  background:#0b0f14;
}
.about__videoEl{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
  object-position:center;
}

.about__index{
  position:absolute;
  left:50%;
  bottom:2px;
  transform: translateX(-50%);
  font-family: Anton, Inter, Arial, sans-serif;
  font-size:72px;
  letter-spacing:.02em;
  color:rgba(15,25,35,.10);
  user-select:none;
  pointer-events:none;
}

/* =========================
   Agents
========================= */
.agents{
  background:var(--accent);
  padding:60px 0;
  position:relative;
  overflow:hidden;
}
.agents::before,
.agents::after{
  content:"";
  position:absolute;
  width:10px; height:10px;
  background:rgba(0,0,0,.18);
  filter:blur(.2px);
}
.agents::before{ left:64px; top:56px; }
.agents::after{ right:120px; bottom:60px; }

.agents__inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:34px;
  align-items:center;
}
.agents__art{
  width:100%;
  aspect-ratio: 1 / 1;
  height:auto;
  min-height:360px;
  border-radius:2px;
  box-shadow: var(--shadow);
  background-image:
    url("../assets/agents.png"),
    url("../assets/agents.jpg"),
    linear-gradient(135deg, rgba(0,0,0,.10), rgba(0,0,0,.45));
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.agents__content{ color:#fff; }
.agents__text{
  margin:0 0 18px 0;
  color:rgba(255,255,255,.88);
  line-height:1.5;
  max-width:520px;
}

/* =========================
   Maps
========================= */
.maps{ padding:90px 0; } /* etwas mehr Höhe wie Original */

.maps__inner{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:44px;               /* etwas mehr Luft */
  align-items:center;
}

/* Typo größer (nur Maps) */
.maps .big-title{
  font-size: clamp(46px, 5.1vw, 92px);
  margin:0 0 14px 0;
  font-weight: 400; /* normal */
}
.maps .subhead{
  font-size: 13px;
  margin:0 0 12px 0;
}

/* Text größer/luftiger */
.maps__text{
  margin:0 0 22px 0;
  color:rgba(15,25,35,.72);
  line-height:1.7;
  font-size:14.5px;
  max-width:560px;
}

/* PNG soll mit Background verschmelzen (kein Schwarz) */
.maps__art{
  width:100%;
  aspect-ratio: 1 / 1;
  height:auto;
  min-height:360px;                 /* etwas höher */
  border-radius:2px;
  box-shadow: none;

  background-color: var(--bg-paper); /* wichtig für transparente PNG */
  background-image:
    url("../assets/maps.png"),
    url("../assets/maps.jpg");       /* optional fallback */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  position: relative;
  overflow: hidden;
}

/* weicher Übergang ins Paper (wie Original) */
.maps__art::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg,
      rgba(236,232,225,0) 58%,
      rgba(236,232,225,.90) 100%
    ),
    linear-gradient(90deg,
      rgba(236,232,225,.65) 0%,
      rgba(236,232,225,0) 28%,
      rgba(236,232,225,0) 72%,
      rgba(236,232,225,.55) 100%
    );
}

/* =========================
   Footer (wie Original)
========================= */
.footer{
  background:#0b0f14;
  color:#fff;
  padding:38px 0 74px; /* etwas mehr Luft wie Original */
}

.footer__top{
  text-align:center;
}

/* Logo */
.footer__logoWrap{
  display:flex;
  justify-content:center;
  margin-bottom:22px; /* mehr Abstand Logo -> Text */
}

.footer__logo{
  height:70px;         /* wirkt wie im Original */
  width:auto;
  display:block;
  opacity:.55;         /* Original ist eher grau */
  filter: brightness(0) invert(1); /* falls Logo nicht weiß ist */
}

/* Copyright / Legal Text */
.footer__legal{
  color:rgba(255,255,255,.60);
  font-size:13px;
  line-height:1.55;
  max-width:760px;
  margin:0 auto 34px;  /* mehr Abstand Text -> Links */
}

/* Links */
.footer__links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:34px;
  font-size:13px;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-weight:800;
  color:rgba(255,255,255,.90);
  margin-bottom:42px;  /* Abstand Links -> USK */
}

.footer__links a:hover{ color:#fff; }

/* USK (bei dir schon als Bild) */
.footer__rating{
  display:flex;
  justify-content:center;
}

.usk{
  width:92px;
  height:92px;
  border-radius:0;
  background:url("../assets/usk16.png") center / contain no-repeat;
  border:none;
  box-shadow: none; /* Original hat praktisch keinen starken Schatten */
}

/* =========================
   Play Modal (JETZT SPIELEN)
========================= */
body.modal-open{
  overflow:hidden;
}

.play-modal{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
}

.play-modal.is-open{
  display:block;
}

.play-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
}

.play-modal__dialog{
  position:relative;
  width:min(980px, calc(100% - 120px));
  margin:0 auto;
  top:50%;
  transform:translateY(-50%);
  background:#0b1721;
  border:1px solid rgba(255,255,255,.06);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);

  /* ✅ mehr Luft oben/unten wie gewünscht */
  padding:150px 84px 120px;
}

/* Close Button (rotes Quadrat mit weißem X) */
.play-modal__close{
  position:absolute;
  top:8px;
  right:8px;
  width:38px;
  height:38px;
  background:var(--accent);
  border:none;
  cursor:pointer;

  /* ✅ leicht abgerundete Ecken */
  border-radius:3px;
}

.play-modal__close::before,
.play-modal__close::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:22px;
  height:3px;
  background:#fff;
  transform-origin:center;
}

.play-modal__close::before{
  transform:translate(-50%,-50%) rotate(45deg);
}
.play-modal__close::after{
  transform:translate(-50%,-50%) rotate(-45deg);
}

/* Title */
.play-modal__title{
  margin:0;
  text-align:center;

  /* ✅ wirkt weniger “fett” als Anton */
  font-family: "Tungsten", Inter, Arial, sans-serif;
  font-weight: 700;

  text-transform:uppercase;
  letter-spacing:.055em;
  color:rgba(255,255,255,.92);
  font-size: clamp(42px, 4.8vw, 68px);
}

/* Options Layout */
.play-modal__options{
  /* ✅ mehr Luft vom Titel zu Buttons + mehr Luft nach unten */
  margin-top:56px;
  margin-bottom:18px;

  display:flex;
  justify-content:center;
  gap:56px;
}

.play-modal__option{
  text-align:center;
  min-width:260px;
}

.play-modal__hint{
  color:rgba(255,255,255,.85);
  font-weight:700;
  margin-bottom:14px;
  font-size:15px;
}

/* Buttons */
.play-modal__btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-width:260px;
  padding:16px 26px;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.12em;
  font-size:14px;
  border-radius:2px;
  border:2px solid transparent;
}

.play-modal__btn--light{
  background:var(--bg-paper);
  color:#0f1923;
  border-color:rgba(255,255,255,.15);
}

.play-modal__btn--red{
  background: linear-gradient(180deg, #ff5a66 0%, #ff4655 55%, #e93b49 100%);
  color:#fff;
  border-color:rgba(255,255,255,.10);
}

.play-modal__btn:hover{
  filter:brightness(.98);
}

/* Responsive */
@media (max-width: 900px){
  .play-modal__dialog{
    width:calc(100% - 40px);

    /* ✅ ebenfalls mehr Luft oben/unten mobil */
    padding:78px 26px 72px;
  }
  .play-modal__options{
    flex-direction:column;
    gap:22px;
    align-items:center;
    margin-bottom:10px;
  }
  .play-modal__option{ min-width:auto; }
  .play-modal__btn{ min-width: 260px; }
}

/* =========================
   Responsive
========================= */
@media (max-width: 1100px){
  .nav{ display:none; }
  .nav-toggle{ display:inline-block; }
  .brand{ min-width:auto; }

  .cards{ grid-template-columns:1fr; }
  .card__media{ height:220px; }

  .about{ padding:70px 0 78px; }
  .about__inner{ grid-template-columns:1fr; gap:26px; }
  .about__video{ min-height:260px; }
  .about__index{ display:none; }

  .agents__inner{ grid-template-columns:1fr; }
  .agents__art{ min-height:280px; }

  .maps__inner{ grid-template-columns:1fr; }
  .maps__art{ min-height:260px; }
}

@media (max-width: 900px){
  .about .big-title{ white-space: normal; }
}

@media (max-width: 520px){
  .header-inner{ padding:0 12px; gap:10px; }
  .cta{ display:none; }
}

@media (max-width: 1100px){
  .season__inner{
    min-height:460px;
    padding:56px 0;
  }
}