  :root {
      --bg: #021310;
      --bg-soft: #062720;
      --bg-card: #041b16;
      --accent: #22c55e;
      --accent-soft: rgba(34, 197, 94, 0.12);
      --accent-strong: #16a34a;
      --border-soft: rgba(148, 163, 184, 0.35);
      --text-main: #e5f1e9;
      --text-muted: #a5b4ac;
      --danger: #f97373;
      --danger-soft: rgba(248, 113, 113, 0.14);
      --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.6);
      --shadow-soft-sm: 0 10px 24px rgba(0, 0, 0, 0.55);
      --radius-lg: 18px;
      --radius-xl: 24px;

      --scroll-track: rgba(15, 23, 42, 0.35);
      --scroll-thumb: rgba(34, 197, 94, 0.35);
      --scroll-thumb-hover: rgba(34, 197, 94, 0.55);
  }

  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
      background: radial-gradient(circle at top left, #064e3b, #020617 65%);
      color: var(--text-main);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
  }

  /* Pretty scrollbars */
  * {
      scrollbar-width: thin;
      scrollbar-color: var(--scroll-thumb) var(--scroll-track);
  }

  ::-webkit-scrollbar {
      width: 10px;
      height: 10px;
  }

  ::-webkit-scrollbar-track {
      background: var(--scroll-track);
      border-radius: 999px;
  }

  ::-webkit-scrollbar-thumb {
      background: var(--scroll-thumb);
      border-radius: 999px;
      border: 2px solid rgba(4, 27, 22, 0.9);
  }

  ::-webkit-scrollbar-thumb:hover {
      background: var(--scroll-thumb-hover);
  }

  .app-shell {
      max-width: 1760px;
      width: calc(100% - 28px);
      margin: 14px auto 28px;
      padding: 0 6px 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
  }

  /* Topbar */
  .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      background: linear-gradient(120deg, rgba(4, 27, 22, 0.95), rgba(4, 27, 22, 0.8));
      border-radius: 999px;
      padding: 10px 14px;
      border: 1px solid rgba(148, 163, 184, 0.3);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(18px);
      position: sticky;
      top: 8px;
      z-index: 10;
  }

  .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
  }

  .logo {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: radial-gradient(circle at 25% 25%, #4ade80, #22c55e);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #022c22;
      font-weight: 800;
      font-size: 18px;
      box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.6), 0 12px 32px rgba(22, 163, 74, 0.7);
  }

  .brand-main {
      font-weight: 700;
      letter-spacing: 0.04em;
      font-size: 16px;
  }

  .brand-sub {
      font-size: 11px;
      color: var(--text-muted);
      opacity: 0.9;
  }

  .topbar-right {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
      flex: 1;
  }

  .tools-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
      border: 1px solid rgba(34, 197, 94, 0.4);
      border-radius: 999px;
      color: var(--accent);
      font-size: 12px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s ease;
  }

  .tools-link:hover {
      background: linear-gradient(135deg, rgba(34, 197, 94, 0.35), rgba(34, 197, 94, 0.2));
      border-color: var(--accent);
      box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
      transform: translateY(-1px);
  }

  .tag {
      font-size: 11px;
      border-radius: 999px;
      padding: 4px 10px;
      background: rgba(22, 163, 74, 0.16);
      border: 1px solid rgba(34, 197, 94, 0.3);
      color: #bbf7d0;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      white-space: nowrap;
  }

  .tag-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #4ade80;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.24);
  }

  .tag-soft {
      font-size: 10px;
      border-radius: 999px;
      padding: 3px 8px;
      background: rgba(15, 23, 42, 0.96);
      border: 1px solid rgba(55, 65, 81, 0.9);
      color: var(--text-muted);
  }

  /* Layout */
  .content {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 14px;
      align-items: flex-start;
  }

  /* Cards */
  .card {
      background: radial-gradient(circle at top left, rgba(4, 27, 22, 0.96), rgba(3, 18, 13, 0.98));
      border-radius: var(--radius-xl);
      padding: 16px 16px 14px;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
  }

  .card-soft {
      background: linear-gradient(145deg, rgba(4, 27, 22, 0.98), rgba(3, 18, 13, 0.98));
      box-shadow: var(--shadow-soft-sm);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(55, 65, 81, 0.9);
      padding: 12px 14px 12px;
  }

  .card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
      gap: 8px;
      flex-wrap: wrap;
  }

  .card-title {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #e5e7eb;
  }

  .card-subtitle {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 2px;
  }

  .muted {
      color: var(--text-muted);
  }

  .mono {
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      letter-spacing: 0.03em;
  }

  /* Countdown KPIs */
  .kpi-row {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      margin-top: 10px;
  }

  @media (max-width: 900px) {
      .kpi-row {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
  }

  .kpi-card {
      background: radial-gradient(circle at top left, rgba(4, 27, 22, 0.94), rgba(4, 27, 22, 0.99));
      border-radius: 16px;
      padding: 10px 11px 9px;
      border: 1px solid rgba(55, 65, 81, 0.9);
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-height: 78px;
  }

  .kpi-label {
      font-size: 11px;
      color: var(--text-muted);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px;
  }

  .kpi-value {
      font-size: 24px;
      font-weight: 650;
      line-height: 1.1;
  }

  .kpi-pill {
      font-size: 10px;
      padding: 2px 6px;
      border-radius: 999px;
      background: rgba(34, 197, 94, 0.14);
      color: #bbf7d0;
      border: 1px solid rgba(34, 197, 94, 0.5);
      white-space: nowrap;
  }

  /* Centering the main card a bit */
  .hero-wrap {
      max-width: none;
      width: 100%;
      margin: 0;
  }


  .lead {
      font-size: 12px;
      line-height: 1.55;
      color: var(--text-muted);
      margin-top: 8px;
  }

  .status-live {
      display: none;
      margin-top: 10px;
  }

  .status-live.show {
      display: block;
  }

  .status-live .tag {
      background: rgba(22, 163, 74, 0.18);
      border-color: rgba(34, 197, 94, 0.45);
  }

  /* Feature-Section unter dem Countdown */
  .features-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 10px;
      margin-top: 14px;
      flex-wrap: wrap;
  }

  .features-title {
      font-size: 14px;
      font-weight: 650;
      letter-spacing: 0.02em;
  }

  .features-sub {
      margin-top: 4px;
      font-size: 11px;
      color: var(--text-muted);
  }

  .features-note {
      font-size: 11px;
      color: var(--text-muted);
      text-align: right;
      max-width: 420px;
  }

  .features-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 10px;
  }

  @media (max-width: 900px) {
      .features-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
  }

  @media (max-width: 520px) {
      .features-grid {
          grid-template-columns: 1fr;
      }
  }

  .feature-tile {
      background: radial-gradient(circle at top left, rgba(4, 27, 22, 0.94), rgba(4, 27, 22, 0.99));
      border-radius: 16px;
      padding: 12px 12px 11px;
      border: 1px solid rgba(55, 65, 81, 0.9);
      min-height: 92px;
      display: flex;
      flex-direction: column;
      gap: 8px;
  }

  .feature-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
  }

  .feature-name {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 650;
      font-size: 13px;
  }

  .feature-icon {
      width: 28px;
      height: 28px;
      border-radius: 10px;
      background: rgba(34, 197, 94, 0.12);
      border: 1px solid rgba(34, 197, 94, 0.3);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #bbf7d0;
      flex: 0 0 auto;
  }

  .feature-desc {
      font-size: 11px;
      line-height: 1.45;
      color: var(--text-muted);
  }

  .badge-live {
      font-size: 10px;
      padding: 2px 8px;
      border-radius: 999px;
      background: rgba(22, 163, 74, 0.16);
      border: 1px solid rgba(34, 197, 94, 0.45);
      color: #bbf7d0;
      white-space: nowrap;
  }

  .cta-row {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      margin-top: 12px;
      flex-wrap: wrap;
  }

  .cta-btn {
      appearance: none;
      border: 1px solid rgba(34, 197, 94, 0.55);
      background: linear-gradient(180deg, rgba(34, 197, 94, 0.22), rgba(22, 163, 74, 0.14));
      color: #dcfce7;
      padding: 10px 14px;
      border-radius: 999px;
      font-weight: 650;
      letter-spacing: 0.02em;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
      transition: transform .12s ease, border-color .12s ease, background .12s ease;
  }

  .cta-btn:hover {
      transform: translateY(-1px);
      border-color: rgba(34, 197, 94, 0.75);
      background: linear-gradient(180deg, rgba(34, 197, 94, 0.28), rgba(22, 163, 74, 0.18));
  }

  .cta-btn:active {
      transform: translateY(0px);
  }

  .cta-hint {
      font-size: 11px;
      color: var(--text-muted);
      margin-right: auto;
  }

  /* Haupt-Container / zentrale Karte breiter */
  .container,
  .wrap,
  .shell,
  .main {
      max-width: clamp(980px, 92vw, 1240px);
  }

  /* Footer */
  .footer {
      margin-top: auto;
      padding: 24px 16px;
      border-top: 1px solid rgba(148, 163, 184, 0.15);
  }

  .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      text-align: center;
  }

  .footer-brand {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      font-size: 14px;
      color: var(--text-main);
  }

  .footer-logo {
      width: 24px;
      height: 24px;
      border-radius: 999px;
      background: radial-gradient(circle at 25% 25%, #4ade80, #22c55e);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #022c22;
      font-weight: 800;
      font-size: 12px;
  }

  .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px 20px;
  }

  .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 12px;
      transition: color 0.2s ease;
  }

  .footer-links a:hover {
      color: var(--accent);
  }

  .footer-copy {
      font-size: 11px;
      color: var(--text-muted);
      opacity: 0.7;
  }

  .footer-copy a {
      color: var(--accent);
      text-decoration: none;
  }

  .footer-copy a:hover {
      text-decoration: underline;
  }

  @media (max-width: 520px) {
      .footer-links {
          flex-direction: column;
          gap: 10px;
      }
  }