:root {
  --bg-main: #141922;
  --bg-elevated: #1C212C;
  --panel: #252B36;
  --panel-soft: #2D3442;
  --border-gradient-start: #1796FF;
  --border-gradient-end: #FF7A1A;
  --accent: #FFD32A;
  --accent-soft: #FFE55C;
  --text-main: #FFFFFF;
  --text-muted: #8A96AC;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Segoe UI Light", system-ui, sans-serif;
}

body {
  background: radial-gradient(circle at top, #222838 0, #141922 45%, #0B0E15 100%);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* TOPBAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20,25,34,0.96);
  border-bottom: 1px solid rgba(0,0,0,0.7);
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo als Bild */
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text span:first-child {
  font-size: 16px;
  font-weight: 600;
}

.brand-text span:last-child {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 13px;
}

.nav-link {
  position: relative;
  padding: 6px 0;
  cursor: default;
  color: var(--text-muted);
}

.nav-link.active {
  color: var(--text-main);
  font-weight: 500;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1796FF, #FF7A1A);
}

.nav-actions {
  display: flex;
  gap: 10px;
  font-size: 12px;
  align-items: center;
}

.nav-btn {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: transparent;
  color: var(--text-main);
  cursor: default;
}

.nav-lang {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: default;
}

.nav-lang:hover {
  color: var(--accent-soft);
}

/* PAGE WRAPPER */
.page {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.page-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.requirements-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.requirement-box {
  flex: 1 1 48%;
  background: #1e1e1e;
  border-radius: 10px;
  padding: 20px;
  min-height: 360px; /* gleiche Höhe beider Boxen */
  box-sizing: border-box;
}

.requirement-box h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.2em;
  color: #FFD32A;
}

.requirement-box ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.requirement-box li {
  margin-bottom: 8px;
  line-height: 1.5em;
}
/* HERO */
.hero {
  background: linear-gradient(135deg, rgba(23,150,255,0.25), rgba(255,122,26,0.25));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 26px 24px 24px 24px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: center;
}

.hero-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #E0E5F0;
  margin-bottom: 6px;
}

.hero-title {
  font-size: 28px;
  font-weight: 650;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 14px;
  color: #E0E5F0;
  max-width: 420px;
  margin-bottom: 14px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  font-size: 12px;
  color: #E0E5F0;
}

.hero-tag-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(10, 12, 18, 0.45);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 11px;
}

.hero-right {
  background: radial-gradient(circle at top, rgba(255,211,42,0.3), transparent 60%);
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.45);
  background-color: rgba(12,16,24,0.85);
  padding: 14px 14px 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-right-title {
  font-size: 13px;
  font-weight: 600;
}

.hero-right-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-right-box {
  margin-top: 4px;
  border-radius: 10px;
  background: var(--panel-soft);
  border: 1px solid rgba(0,0,0,0.6);
  padding: 10px 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.hero-cta-main {
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  color: #141922;
  font-weight: 600;
  font-size: 14px;
  cursor: default;
}

.hero-cta-secondary {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(12,16,24,0.7);
  color: var(--text-main);
  font-size: 13px;
  cursor: default;
}

/* FEATURE-KARTEN */
.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  background: rgba(20,25,34,0.96);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 14px 14px 12px 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-tag {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.feature-title {
  font-size: 15px;
  font-weight: 600;
}

.feature-text {
  font-size: 13px;
  color: var(--text-muted);
  flex: 1;
}

.feature-foot {
  margin-top: 6px;
  font-size: 11px;
  color: #E0E5F0;
  opacity: 0.85;
}

/* UNTERER BEREICH: News + Sidebar */
.lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 18px;
}

.panel {
  background: rgba(20,25,34,0.96);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
  overflow: hidden;
}

.panel-header {
  padding: 10px 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  background: linear-gradient(90deg, rgba(23,150,255,0.12), rgba(255,122,26,0.12));
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.news-list {
  padding: 12px 14px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-item {
  background: var(--panel-soft);
  border-radius: 8px;
  padding: 9px 10px;
  border: 1px solid rgba(0,0,0,0.7);
}

.news-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.news-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}

.news-text {
  font-size: 12px;
  color: var(--text-muted);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel-gradient-border {
  position: relative;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, var(--border-gradient-start), var(--border-gradient-end));
}

.panel-inner {
  background: rgba(20,25,34,0.96);
  border-radius: 11px;
  padding: 14px 16px;
  height: 100%;
}

.sidebar-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.sidebar-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.download-button {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  background: linear-gradient(90deg, #1796FF, #FF7A1A);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  cursor: default;
}

.download-meta {
  font-size: 11px;
  color: var(--text-muted);
}

.sidebar-link-list {
  margin-top: 8px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--accent-soft);
}

.status-box {
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text-muted);
}

.status-label {
  color: var(--text-muted);
}

.status-value {
  color: #57FF89;
  font-weight: 600;
}

/* FOOTER */
.footer {
  margin-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.75);
  background: rgba(8,10,16,0.96);
  font-size: 11px;
  color: var(--text-muted);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px 14px 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* Kontaktliste leicht nach innen rücken */
.page-inner ul {
  list-style-position: inside; /* Punkt und Text stehen gemeinsam etwas weiter innen */
  padding-left: 10px;          /* Abstand zur linken Boxkante, anpassbar */
  margin: 0;                   /* entfernt evtl. Standardabstände */
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr 1fr;
  }

  .lower-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .topbar-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .page {
    padding: 12px;
  }
}

.hero-cta-steam {
  border: 1px solid rgba(102, 192, 244, 0.45);
  background: linear-gradient(90deg, #1b2838 0%, #2a475e 100%);
  color: #ffffff;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  transition: 0.2s ease;
}

.hero-cta-steam:hover {
  border-color: #66c0f4;
  box-shadow: 0 0 18px rgba(102, 192, 244, 0.35);
  transform: translateY(-1px);
}

.steam-button {
  width: 100%;
  margin-top: 10px;
  border: 1px solid rgba(102, 192, 244, 0.45);
  background: linear-gradient(90deg, #1b2838 0%, #2a475e 100%);
  color: #ffffff;
  font-weight: 700;
  border-radius: 10px;
  padding: 11px 14px;
  cursor: pointer;
  transition: 0.2s ease;
}

.steam-button:hover {
  border-color: #66c0f4;
  box-shadow: 0 0 18px rgba(102, 192, 244, 0.35);
}

.disabled-button,
.disabled-button:hover {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-cta-main,
.hero-cta-secondary,
.hero-cta-steam {
  border: 0;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.hero-cta-main {
  background: linear-gradient(90deg, #ffd84a 0%, #ffb21c 100%);
  color: #10141c;
  box-shadow: 0 0 18px rgba(255, 190, 32, 0.22);
}

.hero-cta-secondary {
  background: rgba(8, 12, 20, 0.72);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-cta-steam {
  background: linear-gradient(90deg, #1b2838 0%, #2a475e 100%);
  color: #ffffff;
  border: 1px solid rgba(102, 192, 244, 0.5);
  box-shadow: 0 0 18px rgba(102, 192, 244, 0.14);
}

.hero-cta-main:hover,
.hero-cta-secondary:hover,
.hero-cta-steam:hover {
  transform: translateY(-1px);
}

.hero-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
}

.hero-cta-steam:hover {
  border-color: #66c0f4;
  box-shadow: 0 0 22px rgba(102, 192, 244, 0.32);
}

.download-button,
.steam-button {
  width: 100%;
  min-height: 42px;
  border-radius: 10px;
  border: 0;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.download-button {
  background: linear-gradient(90deg, #1796ff 0%, #ff7a1a 100%);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(23, 150, 255, 0.18);
}

.steam-button {
  margin-top: 10px;
  background: linear-gradient(90deg, #1b2838 0%, #2a475e 100%);
  color: #ffffff;
  border: 1px solid rgba(102, 192, 244, 0.5);
  box-shadow: 0 0 18px rgba(102, 192, 244, 0.14);
}

.download-button:hover,
.steam-button:hover {
  transform: translateY(-1px);
}

.steam-button:hover {
  border-color: #66c0f4;
  box-shadow: 0 0 22px rgba(102, 192, 244, 0.32);
}

.disabled-button,
.disabled-button:hover {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  pointer-events: none;
  filter: grayscale(0.15);
}
/* BRICKHUB BUTTONS */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-cta-main,
.hero-cta-secondary,
.hero-cta-steam {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.hero-cta-main {
  background: linear-gradient(90deg, #ffd84a 0%, #ffb21c 100%);
  color: #10141c;
  box-shadow: 0 0 18px rgba(255, 190, 32, 0.22);
}

.hero-cta-secondary {
  background: rgba(8, 12, 20, 0.72);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-cta-steam {
  background: linear-gradient(90deg, #1b2838 0%, #2a475e 100%);
  color: #ffffff;
  border-color: rgba(102, 192, 244, 0.55);
  box-shadow: 0 0 18px rgba(102, 192, 244, 0.14);
}

.hero-cta-secondary:hover,
.hero-cta-steam:hover {
  transform: translateY(-1px);
}

.hero-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
}

.hero-cta-steam:hover {
  border-color: #66c0f4;
  box-shadow: 0 0 22px rgba(102, 192, 244, 0.32);
}

.download-button,
.steam-button {
  width: 100%;
  min-height: 42px;
  border-radius: 10px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.download-button {
  background: linear-gradient(90deg, #1796ff 0%, #ff7a1a 100%);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(23, 150, 255, 0.18);
}

.steam-button {
  margin-top: 10px;
  background: linear-gradient(90deg, #1b2838 0%, #2a475e 100%);
  color: #ffffff;
  border-color: rgba(102, 192, 244, 0.55);
  box-shadow: 0 0 18px rgba(102, 192, 244, 0.14);
}

.steam-button:hover {
  transform: translateY(-1px);
  border-color: #66c0f4;
  box-shadow: 0 0 22px rgba(102, 192, 244, 0.32);
}

.disabled-button,
.disabled-button:hover {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  pointer-events: none;
  filter: grayscale(0.15);
}

@media (max-width: 700px) {
  .hero-cta-main,
  .hero-cta-secondary,
  .hero-cta-steam {
    width: 100%;
  }
}

.brickhub-steam-btn {
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 1px solid rgba(102, 192, 244, 0.65) !important;
  background: linear-gradient(90deg, #1b2838 0%, #2a475e 100%) !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  border-radius: 999px !important;
  min-height: 42px !important;
  padding: 0 20px !important;
  cursor: pointer !important;
  box-shadow: 0 0 18px rgba(102, 192, 244, 0.18) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease !important;
}

.brickhub-steam-btn:hover {
  transform: translateY(-1px) !important;
  border-color: #66c0f4 !important;
  box-shadow: 0 0 24px rgba(102, 192, 244, 0.38) !important;
}

.brickhub-steam-btn-hero {
  min-width: 150px !important;
}

.brickhub-steam-btn-wide {
  margin-top: 12px !important;
}