:root{
  --yellow:#f6c400;
  --yellow2:#ffd84a;
  --black:#090909;
  --black2:#121212;
  --black3:#1a1a1a;
  --white:#f7f7f7;
  --muted:#bcbcbc;
  --line:#2a2a2a;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--black);
  color:var(--white);
  font-family:Inter,Arial,Helvetica,sans-serif;
  line-height:1.5;
}
body.modal-open{overflow:hidden}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit}
.container{width:min(var(--max),calc(100% - 40px));margin:auto}

.warning-bar{
  overflow:hidden;
  white-space:nowrap;
  background:repeating-linear-gradient(
    135deg,
    var(--yellow) 0,
    var(--yellow) 24px,
    #111 24px,
    #111 48px
  );
  color:#111;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
  border-bottom:2px solid #111;
}
.warning-bar span{
  display:block;
  width:max-content;
  padding:8px 0 8px 100%;
  animation:marquee 20s linear infinite;
  text-shadow:0 1px #fff7;
}
@keyframes marquee{to{transform:translateX(-100%)}}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(8,8,8,.9);
  backdrop-filter:blur(12px);
  border-bottom:1px solid #222;
}
.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand img{width:105px}
.nav-links{display:flex;align-items:center;gap:24px;font-size:14px}
.nav-links a:hover{color:var(--yellow)}

.btn{
  border:0;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:9px;
  padding:14px 20px;
  font-weight:950;
  transition:.18s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-yellow{background:var(--yellow);color:#111}
.btn-yellow:hover{background:var(--yellow2)}
.btn-outline{background:#101010;color:#fff;border:1px solid #525252}
.btn-outline:hover{border-color:var(--yellow);color:var(--yellow)}
.btn-dark{background:#0d0d0d;color:#fff}

.hero{
  min-height:760px;
  position:relative;
  overflow:hidden;
  display:grid;
  align-items:center;
  background:
    radial-gradient(circle at 78% 38%,rgba(246,196,0,.20),transparent 26%),
    linear-gradient(120deg,#070707,#151515 60%,#050505);
}
.hero::after{
  content:"";
  position:absolute;
  right:-180px;
  bottom:-130px;
  width:850px;
  height:300px;
  background:var(--yellow);
  transform:rotate(-9deg);
}
.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:60px;
  align-items:center;
}
.eyebrow,.section-tag{
  color:var(--yellow);
  font-size:12px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.hero h1{
  margin:14px 0 22px;
  font-size:clamp(48px,7vw,90px);
  line-height:.9;
  letter-spacing:-.055em;
}
.yellow{color:var(--yellow)}
.small-line{font-size:.72em}
.hero-text{max-width:650px;color:#d4d4d4;font-size:20px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
.micro-copy{margin-top:16px;color:#7f7f7f;font-size:12px}

.hero-card{
  background:linear-gradient(145deg,#171717,#0d0d0d);
  border:1px solid #2f2f2f;
  border-radius:24px;
  padding:30px;
  box-shadow:0 28px 70px rgba(0,0,0,.5);
  transform:rotate(-1deg);
}
.hero-card img{filter:drop-shadow(0 18px 22px rgba(0,0,0,.55))}
.hero-card-slogan{
  margin-top:20px;
  background:var(--yellow);
  color:#111;
  padding:12px 15px;
  text-align:center;
  border-radius:8px;
  text-transform:uppercase;
  font-weight:950;
  letter-spacing:.03em;
}

.section{padding:92px 0}
.section-light{background:#efefef;color:#111}
.section-dark{background:#0d0d0d}
.section-yellow{background:var(--yellow);color:#111}
h2{
  font-size:clamp(36px,5vw,58px);
  line-height:1;
  letter-spacing:-.04em;
  margin:8px 0 14px;
}
.section-lead{font-size:18px;color:#555;max-width:720px}

.cards{display:grid;gap:18px;margin-top:36px}
.cards.three{grid-template-columns:repeat(3,1fr)}
.card,.review{
  border-radius:18px;
  padding:28px;
  background:#fff;
  border:1px solid #d5d5d5;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}
.card{min-height:235px;position:relative;overflow:hidden}
.card::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  height:5px;
  width:100%;
  background:var(--yellow);
}
.card-icon{font-size:38px}
.card h3{font-size:23px;margin:14px 0 8px}
.card p{color:#555}
.footnote{margin-top:20px;color:#777;font-size:12px}
.dark-note{color:#5b4b00}

.status-grid{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:20px;
  margin-top:35px;
}
.status-panel,.distance-card{
  background:#151515;
  border:1px solid #2b2b2b;
  border-radius:20px;
}
.status-panel{padding:10px 24px}
.status-row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:19px 0;
  border-bottom:1px solid #292929;
}
.status-row:last-child{border-bottom:0}
.status-row span{color:#999}
.status-ok{color:#8eff8e}
.distance-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:30px;
}
.distance-label{
  color:var(--yellow);
  letter-spacing:.13em;
  font-size:12px;
  font-weight:950;
}
.distance-card strong{
  margin-top:12px;
  color:var(--yellow);
  font-size:clamp(54px,7vw,88px);
  line-height:1;
}
.distance-card p{font-size:24px;margin:6px 0 22px}
.distance-card small{margin-top:14px;color:#707070}

.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.stats div{border-right:1px solid rgba(0,0,0,.25);padding-right:20px}
.stats div:last-child{border-right:0}
.stats strong{display:block;font-size:54px;line-height:1}
.stats span{display:block;margin-top:10px;font-weight:800}

.review .stars{color:#c79500;font-size:18px;letter-spacing:.05em}
.review blockquote{
  margin:18px 0;
  font-size:24px;
  line-height:1.2;
  font-weight:850;
}
.review cite{color:#666;font-style:normal}
.rating-banner{
  margin-top:24px;
  background:#111;
  color:#fff;
  border-radius:14px;
  padding:22px;
  display:flex;
  align-items:baseline;
  gap:18px;
}
.rating-banner strong{color:var(--yellow);font-size:34px}

.faq-list{margin-top:30px;display:grid;gap:10px}
details{
  background:#151515;
  border:1px solid #2c2c2c;
  border-radius:12px;
  padding:18px 20px;
}
summary{
  cursor:pointer;
  font-weight:900;
  font-size:18px;
}
details p{color:#bbb;margin-bottom:0}

.cta-section{background:#101010}
.cta-box{
  background:var(--yellow);
  color:#111;
  border-radius:26px;
  padding:40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.cta-box p{max-width:690px;font-weight:700}
.dark-tag{color:#111}

footer{
  border-top:1px solid #222;
  padding:42px 0;
  color:#aaa;
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}
.footer-grid p{margin:4px 0}
.footer-warning{max-width:530px}

.modal{
  position:fixed;
  inset:0;
  z-index:100;
  background:rgba(0,0,0,.78);
  display:none;
  place-items:center;
  padding:20px;
}
.modal.show{display:grid}
.modal-card{
  width:min(500px,100%);
  background:#151515;
  border:2px solid var(--yellow);
  border-radius:22px;
  padding:34px;
  text-align:center;
  position:relative;
  box-shadow:0 30px 80px #000;
}
.modal-card h2{color:var(--yellow);font-size:54px;margin:5px 0}
.modal-card p{font-size:24px}
.modal-icon{font-size:70px}
.modal-close{
  position:absolute;
  right:16px;
  top:10px;
  color:#fff;
  background:none;
  border:0;
  font-size:34px;
  cursor:pointer;
}

.toast{
  position:fixed;
  z-index:120;
  right:20px;
  bottom:20px;
  background:var(--yellow);
  color:#111;
  border-radius:10px;
  padding:14px 18px;
  font-weight:900;
  transform:translateY(120px);
  transition:.25s ease;
}
.toast.show{transform:translateY(0)}

@media(max-width:900px){
  .nav-links{display:none}
  .hero{min-height:auto;padding:90px 0 120px}
  .hero-grid,.status-grid{grid-template-columns:1fr}
  .hero-card{transform:none}
  .cards.three{grid-template-columns:1fr 1fr}
  .stats{grid-template-columns:1fr 1fr}
  .cta-box{flex-direction:column;align-items:flex-start}
}
@media(max-width:620px){
  .container{width:calc(100% - 24px)}
  .nav{min-height:66px}
  .brand img{width:82px}
  .nav>.panic-btn{padding:10px 12px}
  .hero h1{font-size:49px}
  .section{padding:68px 0}
  .cards.three,.stats{grid-template-columns:1fr}
  .stats div{border-right:0;border-bottom:1px solid rgba(0,0,0,.2);padding-bottom:18px}
  .stats div:last-child{border-bottom:0}
  .status-row{flex-direction:column;gap:6px}
  .rating-banner{align-items:flex-start;flex-direction:column}
  .cta-box{padding:28px 22px}
}


/* Sjove ekstra funktioner */
.fun-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:20px;
}
.meter-card,.task-card{
  background:#151515;
  border:1px solid #2b2b2b;
  border-radius:20px;
  padding:28px;
}
.meter-value{
  margin:15px 0 14px;
  font-size:20px;
  font-weight:900;
}
.meter-value strong{color:var(--yellow);font-size:44px;margin-right:8px}
.meter-track{
  height:20px;
  border-radius:999px;
  background:#292929;
  overflow:hidden;
  border:1px solid #3a3a3a;
}
.meter-fill{
  width:97%;
  height:100%;
  background:linear-gradient(90deg,#806600,var(--yellow));
  border-radius:inherit;
  transition:width .7s cubic-bezier(.2,.9,.25,1);
}
.meter-labels{display:flex;justify-content:space-between;color:#777;font-size:12px;margin-top:8px}
.task-card p{font-size:22px;font-weight:850;min-height:66px;margin:15px 0 18px}
.task-card small{display:block;color:#6f6f6f;margin-top:14px}

.panic-sequence{
  position:fixed;
  inset:0;
  z-index:95;
  pointer-events:none;
  display:none;
  background:rgba(246,196,0,.08);
}
.panic-sequence.show{display:block;animation:panicFlash .22s linear 5}
.panic-banner{
  position:absolute;
  left:0;right:0;top:0;
  background:var(--yellow);
  color:#111;
  padding:18px;
  text-align:center;
  font-size:clamp(20px,4vw,42px);
  font-weight:1000;
  box-shadow:0 8px 40px #000;
  transform:translateY(-110%);
}
.panic-sequence.show .panic-banner{animation:bannerDrop .45s ease forwards}
.panic-status{
  position:absolute;
  left:50%;top:50%;
  transform:translate(-50%,-50%) scale(.7);
  width:min(650px,calc(100% - 32px));
  background:#101010;
  color:#fff;
  border:3px solid var(--yellow);
  border-radius:18px;
  padding:28px;
  text-align:center;
  font-size:clamp(22px,4vw,38px);
  font-weight:950;
  opacity:0;
}
.panic-sequence.show .panic-status{animation:statusPop .35s .35s ease forwards}
@keyframes panicFlash{50%{background:rgba(246,196,0,.28)}}
@keyframes bannerDrop{to{transform:translateY(0)}}
@keyframes statusPop{to{opacity:1;transform:translate(-50%,-50%) scale(1)}}

.driveby{
  container-type:inline-size;
  position:fixed;
  left:0;right:0;bottom:5px;
  height:110px;
  z-index:80;
  pointer-events:none;
  overflow:hidden;
  display:none;
}
.driveby.go{display:block}
.mini-excavator{
  position:absolute;
  bottom:18px;
  left:-130px;
  font-size:72px;
  filter:drop-shadow(0 7px 5px rgba(0,0,0,.55));
}
.driveby.go .mini-excavator{animation:driveAcross 7s linear forwards}
.trackmarks{
  position:absolute;
  bottom:2px;
  left:0;
  color:#3e3210;
  font-size:20px;
  letter-spacing:14px;
  opacity:0;
}
.driveby.go .trackmarks{animation:tracksIn 7s linear forwards}
.driveby-text{
  position:absolute;
  right:20px;
  bottom:75px;
  background:#111;
  border:2px solid var(--yellow);
  border-radius:9px;
  padding:8px 12px;
  font-weight:900;
  opacity:0;
}
.driveby.go .driveby-text{animation:driveText 7s linear forwards}
@keyframes driveAcross{from{transform:translateX(0)}to{transform:translateX(calc(100cqw + 270px))}}
@keyframes tracksIn{15%{opacity:.8}85%{opacity:.8}100%{opacity:0}}
@keyframes driveText{55%,82%{opacity:1}0%,45%,100%{opacity:0}}

body.full-send{animation:tinyRumble .12s linear 8}
@keyframes tinyRumble{50%{transform:translateX(1px)}}

@media(max-width:700px){
  .fun-grid{grid-template-columns:1fr}
  .driveby-text{font-size:12px}
}

/* Pepsi Max dåser i Live Status */
.pepsi-status{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.pepsi-cans{display:inline-flex;align-items:center;gap:4px}
.pepsi-cans i{
  width:24px;height:42px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  position:relative;
  border-radius:5px 5px 4px 4px;
  background:linear-gradient(90deg,#111 0%,#353535 28%,#0b0b0b 65%,#222 100%);
  border:1px solid #555;
  box-shadow:inset 0 2px 1px #888,inset 0 -2px 1px #050505,0 2px 4px #0008;
  color:#fff;
  font-style:normal;
  font-size:5px;
  font-weight:950;
  letter-spacing:-.2px;
  line-height:1;
}
.pepsi-cans i::before{
  content:"";
  width:14px;height:14px;
  margin-bottom:2px;
  border-radius:50%;
  background:linear-gradient(#e32934 0 44%,#fff 45% 56%,#1769aa 57%);
  transform:rotate(-10deg);
  box-shadow:0 0 0 1px #eee9;
}
.pepsi-cans i::after{
  content:"";
  position:absolute;left:3px;right:3px;top:1px;height:2px;
  border-radius:50%;
  background:#aaa;
}
.pepsi-cans small{
  display:block;
  margin-top:1px;
  color:#e32934;
  font-size:5px;
  font-weight:1000;
}
#pepsiPercent{font-size:inherit}
@media(max-width:620px){
  .pepsi-cans i{width:22px;height:39px}
}


/* Finjustering: Pepsi Max-rækken som på referencebilledet */
.status-row .pepsi-status{
  margin-left:auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:nowrap;
}
.pepsi-cans{
  display:inline-flex;
  align-items:flex-end;
  gap:6px;
}
.pepsi-cans i{
  width:26px;
  height:44px;
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border-radius:6px 6px 5px 5px;
  background:
    linear-gradient(90deg,#080808 0%,#333 28%,#0a0a0a 62%,#242424 100%);
  border:1px solid #555;
  box-shadow:
    inset 0 2px 1px #999,
    inset 0 -2px 1px #050505,
    0 2px 4px rgba(0,0,0,.65);
  overflow:hidden;
  color:#fff;
  font-style:normal;
  line-height:1;
}
.pepsi-cans i::before{
  content:"";
  position:absolute;
  top:1px;
  left:4px;
  right:4px;
  height:2px;
  border-radius:50%;
  background:#aaa;
}
.pepsi-cans i em{
  width:15px;
  height:15px;
  margin-top:5px;
  margin-bottom:2px;
  border-radius:50%;
  background:
    linear-gradient(165deg,#e61b2b 0 42%,#fff 43% 57%,#1568b2 58% 100%);
  transform:rotate(-10deg);
  box-shadow:0 0 0 1px rgba(255,255,255,.55);
}
.pepsi-cans i b{
  font-size:5px;
  letter-spacing:-.2px;
  font-weight:950;
}
.pepsi-cans i small{
  margin-top:1px;
  color:#f03a45;
  font-size:5px;
  font-weight:1000;
}
#pepsiPercent{
  color:#fff;
  font-weight:950;
  white-space:nowrap;
}
@media(max-width:620px){
  .status-row .pepsi-status{
    margin-left:0;
    justify-content:flex-start;
    gap:10px;
  }
  .pepsi-cans i{
    width:23px;
    height:40px;
  }
}


/* Chaos Pack v1 */
.chaos-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:20px}
.chaos-card{background:#151515;border:1px solid #2b2b2b;border-radius:20px;padding:28px}
.chaos-card h3{font-size:26px;margin:12px 0 6px}
.chaos-card p{color:#aaa;min-height:50px}
.boost-status{display:inline-block;margin-top:14px;padding:10px 14px;border:1px solid #444;border-radius:9px;font-weight:950}
.boost-status.overpressure{background:var(--yellow);color:#111;border-color:var(--yellow);animation:boostPulse .4s ease infinite alternate}
@keyframes boostPulse{to{transform:scale(1.04);box-shadow:0 0 25px rgba(246,196,0,.35)}}
body.animations-paused .warning-bar span,
body.animations-paused .boost-status.overpressure{animation-play-state:paused}
.pepsi-cans{cursor:pointer}
.pepsi-cans:active{transform:scale(.96)}
.pepsi-cans.boosted i{animation:canBounce .35s ease}
@keyframes canBounce{50%{transform:translateY(-8px) rotate(3deg)}}
.bonus-reviews{margin-top:18px}
.company-reply{margin-top:18px!important;padding-top:14px;border-top:1px solid #ddd;font-size:13px!important;color:#555!important}

.footer-toys{display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap;margin-bottom:30px}
.dont-click{background:none;border:1px dashed #555;color:#777;border-radius:9px;padding:10px 14px;cursor:pointer;font-weight:850}
.dont-click:hover{color:var(--yellow);border-color:var(--yellow)}
.serious-toggle{display:flex;align-items:center;gap:10px;color:#777;font-size:13px;cursor:pointer}
.serious-toggle input{accent-color:var(--yellow)}

.hole-overlay{position:fixed;inset:0;z-index:150;pointer-events:none;display:none;overflow:hidden}
.hole-overlay.active{display:block}
.site-hole{position:absolute;left:50%;top:55%;width:20px;height:10px;transform:translate(-50%,-50%);border-radius:50%;background:#000;box-shadow:0 0 0 8px #24180e,0 0 55px #000;opacity:0}
.hole-overlay.active .site-hole{animation:digHole 4.5s ease-in-out forwards}
.hole-message{position:absolute;left:50%;top:18%;transform:translate(-50%,-30px);background:#111;border:2px solid var(--yellow);color:#fff;padding:18px 24px;border-radius:14px;font-weight:950;text-align:center;opacity:0;width:min(520px,calc(100% - 30px))}
.hole-overlay.active .hole-message{animation:holeMessage 4.5s ease forwards}
body.hole-chaos main,body.hole-chaos .site-header{animation:siteSucked 4.5s ease-in-out}
@keyframes digHole{0%{opacity:0;transform:translate(-50%,-50%) scale(.1)}20%,75%{opacity:1;transform:translate(-50%,-50%) scale(18)}100%{opacity:0;transform:translate(-50%,-50%) scale(.1)}}
@keyframes holeMessage{0%,25%{opacity:0}35%,78%{opacity:1;transform:translate(-50%,0)}100%{opacity:0}}
@keyframes siteSucked{0%,15%,85%,100%{transform:none;filter:none}40%{transform:scale(.96) rotate(-.4deg);filter:brightness(.7)}58%{transform:scale(.94) rotate(.5deg);filter:brightness(.55)}}

.serious-message{position:fixed;left:50%;top:90px;z-index:140;transform:translate(-50%,-160px);background:#fff;color:#111;border-radius:8px;padding:18px 24px;text-align:center;box-shadow:0 15px 50px #0008;transition:.35s ease}
.serious-message strong,.serious-message span{display:block}
.serious-message span{font-size:12px;color:#555;margin-top:3px}
.serious-message.show{transform:translate(-50%,0)}
body.serious-mode .warning-bar,
body.serious-mode .panic-btn,
body.serious-mode .fun-grid,
body.serious-mode .chaos-grid,
body.serious-mode .driveby,
body.serious-mode .footnote,
body.serious-mode .footer-warning{display:none!important}
body.serious-mode .yellow,body.serious-mode .section-tag,body.serious-mode .eyebrow{color:#ddd!important}
body.serious-mode .hero::after{background:#444}
body.serious-mode .hero-card-slogan,body.serious-mode .section-yellow{background:#d7d7d7!important;color:#111!important}
body.serious-mode .btn-yellow{background:#ddd!important}
body.serious-mode{filter:grayscale(1)}

@media(max-width:700px){
  .chaos-grid{grid-template-columns:1fr}
  .footer-toys{align-items:flex-start;flex-direction:column}
}

/* Pepsi Max Boost: én statisk dåse */
.pepsi-cans-static{cursor:default!important;pointer-events:none}
.pepsi-cans-static:active{transform:none!important}
