/* pixpower.css */

:root{
  --bg: #0f1115;
  --panel: #141823;
  --panel-2: #10131b;
  --text: #e8eaf0;
  --muted: #a9b0c3;
  --line: rgba(255,255,255,.10);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --radius-sm: 14px;

  --accent: #ffd84d;     /* PixPower Gelb */
  --accent-2: #4da3ff;   /* kühles Blau */
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1100px 500px at 20% -10%, rgba(255,216,77,.18), transparent 55%),
              radial-gradient(900px 450px at 90% 10%, rgba(77,163,255,.16), transparent 55%),
              linear-gradient(180deg, #0b0d12 0%, var(--bg) 40%, #0b0d12 100%);
  line-height: 1.6;
  font-size: 18px; /* größer & besser lesbar */
}

img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

/* Topbar (schwarz, kleine Links wie früher) */
.topbar{
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
}
.topbar__inner{
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.topbar__left{
  color: #fff;
  opacity: .9;
}
.topbar__nav{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.topbar__nav a{
  color: #fff;
  opacity: .85;
}
.topbar__nav a:hover{ opacity: 1; }

/* Haupt-Navigation (grauer Balken + Logo) */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(60,60,60,.95), rgba(50,50,50,.92));
  border-bottom: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}
.nav__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}
.brand__logo{
  width: 34px;
  height: 34px;
  border-radius: 8px;
}
.brand__text{ display: grid; line-height: 1.15; }
.brand__name{
  font-weight: 750;
  letter-spacing: .2px;
  color: #d6d6d6;
}
.brand__sub{
  font-size: 14px;
  color: rgba(255,255,255,.75);
}
.brand__version{
  color: rgba(255,255,255,.85);
}

.nav__toggle{
  display: none;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.20);
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.nav__menu{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav__menu a{
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  border: 1px solid transparent;
}
.nav__menu a:hover{
  border-color: rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
  text-decoration: none;
}
.nav__cta{
  background: rgba(255,216,77,.18);
  border-color: rgba(255,216,77,.35) !important;
}
.nav__cta:hover{
  background: rgba(255,216,77,.26);
}

/* Hero */
.hero{
  padding: 34px 0 24px;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 26px;
  align-items: start;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.88);
  font-size: 14px;
}

h1{
  margin: 14px 0 10px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.15;
  letter-spacing: .2px;
}

.lead{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 18px;
}

.release{
  display: grid;
  gap: 10px;
  margin: 16px 0 18px;
}
.release__item{
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.release__label{
  color: rgba(255,255,255,.75);
  font-size: 14px;
}
.release__value{
  color: #ff6a6a;
  font-weight: 700;
}
.muted{ color: var(--muted); font-weight: 500; }

.actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 16px;
}
.actions--center{
  justify-content: center;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.btn:hover{
  text-decoration: none;
  border-color: rgba(255,255,255,.24);
  transform: translateY(-1px);
}
.btn--primary{
  background: linear-gradient(180deg, rgba(255,216,77,.30), rgba(255,216,77,.16));
  border-color: rgba(255,216,77,.40);
  color: #fff;
}
.btn--ghost{
  background: rgba(0,0,0,.12);
}
.btn--soft{
  background: rgba(77,163,255,.12);
  border-color: rgba(77,163,255,.30);
}
.btn__icon{ display:block; }

.quicklinks{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.82);
}
.quicklinks a{ color: rgba(255,255,255,.92); }

/* Medien-Panel rechts */
.hero__media{
  display: grid;
  gap: 14px;
}

.shot{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
  box-shadow: var(--shadow);
}
.shot img{
  width: 100%;
  display: block;
}

.mini-card{
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.mini-card__title{
  margin: 0 0 6px;
  font-weight: 750;
}
.mini-card__text{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 16px;
}
.mini-card__img{
  display: inline-block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}
.mini-card__img img{
  width: 180px;
}

/* Sektionen */
.section{
  padding: 26px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
h2{
  margin: 0 0 14px;
  font-size: clamp(22px, 2.4vw, 30px);
}
h3{
  margin: 0 0 8px;
  font-size: 18px;
}

/* Cards */
.cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card{
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.card p{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

/* Quote / Bewertung */
.quote{
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
}
.quote__badge{
  display: inline-block;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,216,77,.18);
  border: 1px solid rgba(255,216,77,.35);
  color: rgba(255,255,255,.95);
  margin-bottom: 10px;
}
.quote__grid{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 16px;
  align-items: start;
}
.quote__rating{
  display: grid;
  gap: 10px;
}
.pill{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 12px;
}
.pill__label{
  display:block;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.pill__value{
  display:block;
  font-weight: 800;
  margin-top: 2px;
}

blockquote{
  margin: 0;
  padding: 14px 16px;
  border-left: 3px solid rgba(255,216,77,.65);
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  color: rgba(255,255,255,.92);
}

/* Hinweisbox */
.notice{
  margin-top: 14px;
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.notice p{ margin: 0; color: var(--muted); font-size: 16px; }

/* Messwerte */
.media-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}
.figure{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  box-shadow: var(--shadow);
}
.figure figcaption{
  padding: 12px 14px;
  color: rgba(255,255,255,.84);
  font-size: 15px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* Footer */
.footer{
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.25);
}
.footer__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: center;
}
.footer__brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__title{
  font-weight: 800;
}
.footer__muted{
  color: var(--muted);
  font-size: 14px;
}
.footer__links{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer__links a{
  color: rgba(255,255,255,.85);
}
.footer__links a:hover{ color: #fff; }

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .quote__grid{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  body{ font-size: 17px; }
  .topbar__nav{ display: none; } /* oben kompakter */
  .nav__toggle{ display: inline-flex; }
  .nav__menu{
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    padding: 12px 16px 16px;
    background: rgba(50,50,50,.98);
    border-bottom: 1px solid rgba(255,255,255,.10);
  }
  .nav__inner{ position: relative; }
  .nav__menu.is-open{
    display: grid;
    gap: 8px;
  }
  .nav__menu a{
    padding: 12px 12px;
    background: rgba(0,0,0,.18);
    border-color: rgba(255,255,255,.14);
  }

  .cards{ grid-template-columns: 1fr; }
  .media-grid{ grid-template-columns: 1fr; }
}
