@charset "utf-8";
/* CSS Document */

:root {
  --bg: #050816;
  --bg-alt: #0b1020;
  --accent: #06b6d4; /* vorher #ff4b8b */
  --accent-soft: rgba(6, 182, 212, 0.2); /* vorher rgba(255, 75, 139, 0.2) */
  --accent-2: #3fd0ff;
  --text: #f9fafb;
  --text-muted: #9ca3af;
  --card-bg: #0f172a;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --radius-lg: 18px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.65);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #111827 0%, #020617 45%, #000 100%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 16px 40px;
  flex: 1;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff4b8b, #ffe082, #3fd0ff);
  box-shadow:
    0 0 18px rgba(255, 75, 139, 0.8),
    0 0 26px rgba(63, 208, 255, 0.55);
  position: relative;
  overflow: hidden;
}

.logo::after {
  content: "🎮";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.brand-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title span:first-child {
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.05rem;
}

.brand-title span:last-child {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border-subtle);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
}

.pill-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
}

main {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 24px;
  align-items: flex-start;
}

@media (max-width: 880px) {
  main {
    grid-template-columns: minmax(0, 1fr);
  }
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-right {
    align-self: stretch;
    justify-content: space-between;
  }
}

.hero {
  padding: 20px 18px 22px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, #111827 0, #020617 55%, #000 100%);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -120px;
  background:
    radial-gradient(circle at 10% 0, rgba(63, 208, 255, 0.2) 0, transparent 40%),
    radial-gradient(circle at 100% 30%, rgba(6, 182, 212, 0.22) 0, transparent 46%);
  /* zweite Radial-Farbe vorher rgba(255, 75, 139, 0.22) */
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px 4px 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.8rem;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.hero-tagline span.badge {
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.75rem;
}

h1 {
  font-size: clamp(1.9rem, 3.3vw, 2.3rem);
  line-height: 1.2;
  margin-bottom: 10px;
}


/* Streamer Toolbox Gradient – bleibt pink/gemischt */
h1 span.highlight {
  background: linear-gradient(120deg, #ff4b8b, #ffe082, #3fd0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 0.96rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.btn-primary,
.btn-ghost {
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease,
    border-color 0.14s ease, opacity 0.14s ease;
  text-decoration: none;
}

.btn-primary {
  background-image: linear-gradient(135deg, #06b6d4, #0ea5e9);
  /* vorher linear-gradient(135deg, #ff4b8b, #ff6e40) */
  box-shadow: 0 14px 30px rgba(6, 182, 212, 0.55);
  /* vorher rgba(255, 75, 139, 0.55) */
  color: #111827;
  font-weight: 600;
}

.btn-primary span.icon {
  font-size: 1.1rem;
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.9);
  border-color: var(--border-subtle);
  color: var(--text-muted);
}

.btn-primary:hover,
.btn-ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
  opacity: 0.97;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px dashed rgba(148, 163, 184, 0.35);
  padding-top: 10px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.7);
}

/* TOOLGRID */

.tool-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tool-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.tool-section-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.tool-section-badge {
  font-size: 0.8rem;
  color: var(--accent-2);
  background: rgba(63, 208, 255, 0.14);
  border-radius: 999px;
  padding: 4px 10px;
}

.tool-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

@media (min-width: 600px) {
  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .tool-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.tool-card {
  background: rgba(15, 23, 42, 0.94);
  border-radius: var(--radius-lg);
  padding: 12px 12px 13px;
  border: 1px solid var(--border-subtle);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    border-color 0.12s ease, background 0.12s ease;
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.2), transparent 55%);
  /* vorher rgba(255, 75, 139, 0.15) */
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}

.tool-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(248, 250, 252, 0.15);
  background: rgba(15, 23, 42, 0.98);
}

.tool-card:hover::before {
  opacity: 1;
}

.tool-icon {
  min-width: 40px;
  height: 40px;
  border-radius: 14px;
  background: radial-gradient(circle at 20% 0,
    #e0f2fe,
    #3b82f6 45%,
    #1d4ed8 100%); /* SUBGOALS: Blau wie im Subgoal-Screenshot */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

/* GLÜCKSRAD: Gold/Orange wie im Wheel-Screenshot */
.tool-icon.wheel {
  background: radial-gradient(circle at 20% 0,
    #fef3c7,
    #fbbf24 45%,
    #f59e0b 100%);
}

/* MISSION GRID: Neon-Grün, neues Icon (🎯) im HTML) */
.tool-icon.bingo {
  background: radial-gradient(circle at 20% 0,
    #dcfce7,
    #22c55e 45%,
    #16a34a 100%);
}

/* IMAGE OVERLAY: Türkis wie im Image-Overlay-Screenshot */
.tool-icon.overlay {
  background: radial-gradient(circle at 20% 0,
    #e0faff,
    #06b6d4 45%,
    #0ea5e9 100%);
}

/* QUIZ: Leuchtendes Rot + Fragezeichen-Icon */
.tool-icon.quiz {
  background: radial-gradient(circle at 20% 0,
    #fee2e2,
    #f97373 45%,
    #b91c1c 100%);
  color: #fef2f2;
  font-weight: 700;
  font-size: 20px;
}
.tool-icon.town {
  background: radial-gradient(
    circle at 20% 0,
    #fef9c3,
    #facc15 45%,
    #eab308 100%
  );
}



.tool-content {
  flex: 1;
  min-width: 0;
}

.tool-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

.tool-name {
  font-weight: 600;
  font-size: 0.96rem;
}

.tool-tag {
  font-size: 0.72rem;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--text-muted);
  white-space: nowrap;
}

.tool-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.tool-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.tool-footer span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.tool-footer .pill-mini {
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.74rem;
  color: var(--accent-2);
}

.tool-arrow {
  font-size: 1.1rem;
  opacity: 0.85;
}

.hero-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 36rem;
}
.hero-note strong {
  color: var(--accent);
}


/* SIDE PANEL */

.side-panel {
  padding: 16px 14px 14px;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.side-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.side-highlight {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.side-highlight strong {
  color: var(--accent);
}

.side-list {
  list-style: none;
  font-size: 0.83rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.side-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.side-bullet {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.side-footer {
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px dashed rgba(148, 163, 184, 0.4);
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

footer {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px 18px;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0.8;
}

footer a {
  text-decoration: underline;
  text-decoration-style: dotted;
}

.tool-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  box-shadow: 0 0 10px currentColor;
  margin-left: auto;
  flex-shrink: 0;
}

/* Grün wie Live-tauglich & kostenlos */
.tool-status-dot.green {
  background: #22c55e;
  color: #22c55e;
}

/* Rot für „In Arbeit“ */
.tool-status-dot.red {
  background: #ef4444;
  color: #ef4444;
}
.powered-with-beta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.beta-badge {
  background: #ef4444;           /* rot */
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
  text-transform: uppercase;
  white-space: nowrap;
}

