:root {
      --bg: #050505;
      --bg-2: #090909;
      --panel: rgba(17, 17, 17, 0.94);
      --line: rgba(255, 255, 255, 0.08);
      --text: #f7f4ee;
      --muted: #aaa49a;
      --muted-2: #777168;
      --orange: #ff8a00;
      --orange-2: #ffb347;
      --green: #30d158;
      --radius: 24px;
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
      --max: 1180px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      color: var(--text);
      background:
        radial-gradient(circle at 50% -10%, rgba(255, 138, 0, 0.22), transparent 34%),
        radial-gradient(circle at 12% 8%, rgba(255, 138, 0, 0.10), transparent 24%),
        linear-gradient(180deg, #101010 0%, #050505 42%, #030303 100%);
      font-family: Arial, Helvetica, sans-serif;
      overflow-x: hidden;
    }


    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    strong { color: #fff; }

    .lang-en { display: none; }
    #languageSwitch:checked ~ .page .lang-de { display: none; }
    #languageSwitch:checked ~ .page .lang-en { display: inline; }
    #languageSwitch:checked ~ .page p.lang-en,
    #languageSwitch:checked ~ .page div.lang-en,
    #languageSwitch:checked ~ .page h1.lang-en,
    #languageSwitch:checked ~ .page h2.lang-en,
    #languageSwitch:checked ~ .page h3.lang-en,
    #languageSwitch:checked ~ .page blockquote.lang-en,
    #languageSwitch:checked ~ .page cite.lang-en,
    #languageSwitch:checked ~ .page .lang-en.block { display: block; }
    #languageSwitch:checked ~ .page .lang-en.grid { display: grid; }
    #languageSwitch:checked ~ .page .lang-en.flex { display: flex; }

    .container {
      width: min(calc(100% - 28px), var(--max));
      margin: 0 auto;
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      white-space: nowrap;
    }

    .page {
      min-height: 100vh;
    }

    .page {
      position: relative;
      z-index: 1;
    }


    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(5, 5, 5, 0.78);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      backdrop-filter: blur(14px);
    }

    .header-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 4px solid var(--orange);
      display: grid;
      place-items: center;
      position: relative;
      flex-shrink: 0;
      box-shadow: 0 0 26px rgba(255, 138, 0, 0.18);
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      left: 50%;
      width: 17px;
      height: 3px;
      transform: translateX(-50%);
      background: var(--orange);
      border-radius: 999px;
    }

    .brand-mark::before { top: 6px; }
    .brand-mark::after { bottom: 6px; }

    .brand-mark span {
      font-size: 24px;
      font-weight: 950;
      line-height: 1;
      letter-spacing: -0.08em;
    }

    .brand-copy {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
    }

    .brand-name {
      font-size: 17px;
      line-height: 1;
      font-weight: 950;
      letter-spacing: 0.04em;
      white-space: nowrap;
    }

    .brand-name .orange { color: var(--orange); }

    .brand-tag {
      color: var(--orange-2);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }

    .language-toggle {
      min-height: 42px;
      padding: 0 11px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.03);
      color: var(--text);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      font-size: 11px;
      font-weight: 950;
      letter-spacing: 0.08em;
      cursor: pointer;
      user-select: none;
    }

    .language-toggle .inactive { color: var(--muted-2); }
    #languageSwitch:checked ~ .page .language-toggle .de-label { color: var(--muted-2); }
    #languageSwitch:checked ~ .page .language-toggle .en-label { color: var(--text); }

    .desktop-nav {
      display: none;
      align-items: center;
      gap: 4px;
    }

    .desktop-nav a {
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 10px 12px;
      border-radius: 999px;
    }

    .desktop-nav a:hover {
      color: #fff;
      background: rgba(255,255,255,0.05);
    }

    .menu-button {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.03);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      cursor: pointer;
    }

    .menu-lines {
      width: 20px;
      display: grid;
      gap: 5px;
    }

    .menu-lines span {
      display: block;
      height: 2px;
      background: var(--text);
      border-radius: 999px;
    }

    .mobile-menu-shell {
      position: relative;
      flex-shrink: 0;
    }

    .mobile-menu-shell summary {
      list-style: none;
    }

    .mobile-menu-shell summary::-webkit-details-marker {
      display: none;
    }

    .mobile-menu-shell[open] .menu-button {
      border-color: rgba(255, 138, 0, 0.36);
      background: rgba(255, 138, 0, 0.10);
    }

    .mobile-menu {
      position: absolute;
      top: calc(100% + 12px);
      right: 0;
      width: min(82vw, 310px);
      padding: 10px;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 18px;
      background: rgba(10,10,10,0.98);
      box-shadow: var(--shadow);
      display: grid;
      gap: 6px;
      z-index: 100;
    }

    .mobile-menu a {
      display: flex;
      align-items: center;
      min-height: 46px;
      padding: 0 14px;
      border-radius: 14px;
      color: var(--text);
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,255,255,0.06);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 12px;
      font-weight: 900;
    }

    .mobile-menu a:hover {
      color: #111;
      background: var(--orange);
      border-color: var(--orange);
    }

    .hero { padding: 34px 0 22px; }

    .hero-grid {
      display: grid;
      gap: 24px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--orange);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 12px;
      font-weight: 900;
      margin-bottom: 16px;
    }

    .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--orange);
      box-shadow: 0 0 18px rgba(255, 138, 0, 0.9);
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(58px, 18vw, 118px);
      line-height: 0.86;
      letter-spacing: -0.075em;
      font-weight: 950;
      text-transform: uppercase;
    }

    .hero h1 .orange { color: var(--orange); }

    .hero-text {
      margin: 20px 0 0;
      color: #d7d0c5;
      font-size: 18px;
      line-height: 1.5;
      max-width: 660px;
    }

    .hero-actions {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      margin-top: 22px;
    }

    .btn {
      min-height: 54px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      border: 1px solid transparent;
      padding: 0 20px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 950;
      transition: 0.18s ease;
      cursor: pointer;
      text-align: center;
    }

    .btn-primary {
      background: var(--orange);
      color: #15110a;
      box-shadow: 0 14px 34px rgba(255, 138, 0, 0.22);
    }

    .btn-secondary {
      border-color: rgba(255,255,255,0.12);
      color: #fff;
      background: rgba(255,255,255,0.03);
    }

    .btn:hover { transform: translateY(-1px); }

    .hero-card {
      min-height: 430px;
      border-radius: 32px;
      border: 1px solid var(--line);
      background:
        radial-gradient(circle at 50% 38%, rgba(255, 138, 0, 0.22), transparent 40%),
        radial-gradient(circle at 80% 15%, rgba(255, 138, 0, 0.14), transparent 30%),
        linear-gradient(180deg, rgba(22,22,22,0.96), rgba(6,6,6,0.98));
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
      display: grid;
      place-items: center;
      padding: 22px 12px 18px;
    }

    .hero-card::before {
      content: "SURA  |  WARRIOR";
      position: absolute;
      top: 18px;
      left: 18px;
      right: 18px;
      color: rgba(255,255,255,0.16);
      font-weight: 950;
      letter-spacing: 0.22em;
      font-size: 11px;
      text-align: center;
      text-transform: uppercase;
    }

    .hero-card::after {
      content: "";
      position: absolute;
      left: -20%;
      right: -20%;
      bottom: -26px;
      height: 120px;
      background: radial-gradient(ellipse at center, rgba(255, 138, 0, 0.18), transparent 62%);
      filter: blur(2px);
    }

    .miners-stage {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: 14px;
      width: 100%;
      position: relative;
      z-index: 2;
      padding-top: 26px;
    }

    .miner-figure {
      width: min(46%, 230px);
      position: relative;
      transform: translateY(6px);
    }

    .miner-figure:nth-child(2) { transform: translateY(-6px); }

    .miner-nameplate {
      display: grid;
      place-items: center;
      min-height: 38px;
      border-radius: 12px;
      background: #171717;
      color: var(--orange);
      font-size: 15px;
      font-weight: 950;
      letter-spacing: 0.08em;
      margin: 0 auto 10px;
      width: 84%;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .miner-shell {
      background: linear-gradient(180deg, #f2f0e9 0%, #c9c6bd 100%);
      border-radius: 20px;
      padding: 12px 10px 12px;
      box-shadow: 0 26px 42px rgba(0,0,0,0.38), inset 0 0 0 1px rgba(255,255,255,0.42);
      position: relative;
    }

    .miner-shell::before {
      content: "";
      position: absolute;
      top: 17px;
      left: 16px;
      right: 16px;
      height: 48px;
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(112,88,58,0.95), rgba(64,52,40,0.95));
      box-shadow: inset 0 0 0 2px rgba(255,255,255,0.12);
    }

    .fan {
      width: min(116px, 88%);
      aspect-ratio: 1;
      border-radius: 18px;
      background: #f8f8f4;
      border: 3px solid #d5d2ca;
      display: grid;
      place-items: center;
      margin: 72px auto 8px;
      position: relative;
      z-index: 1;
    }

    .fan::before {
      content: "";
      width: 70%;
      aspect-ratio: 1;
      border-radius: 50%;
      background:
        conic-gradient(from 0deg, #111 0 18%, #2c2c2c 18% 32%, #111 32% 50%, #2c2c2c 50% 66%, #111 66% 82%, #2c2c2c 82% 100%);
      box-shadow: inset 0 0 0 12px #191919;
    }

    .bitaxe {
      color: #222;
      font-family: Georgia, serif;
      text-align: center;
      font-size: 26px;
      line-height: 1;
      opacity: 0.84;
    }

    .section { padding: 24px 0; }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 16px;
    }

    .section-kicker {
      color: var(--orange);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 12px;
      font-weight: 950;
      margin-bottom: 8px;
    }

    .section-title {
      margin: 0;
      font-size: clamp(30px, 8vw, 56px);
      line-height: 0.95;
      letter-spacing: -0.055em;
      text-transform: uppercase;
      font-weight: 950;
    }

    .section-title .orange { color: var(--orange); }

    .section-sub {
      margin: 8px 0 0;
      color: var(--muted);
      line-height: 1.55;
      font-size: 16px;
      max-width: 760px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .stat-tile,
    .miner-card,
    .feature-card,
    .leaderboard-card,
    .roadmap-card,
    .story-card,
    .wiki-card,
    .quote-card,
    .form-card,
    .support-card,
    .partner-card,
    .funding-card,
    .forum-card,
    .forum-post,
    .forum-rules {
      background:
        radial-gradient(circle at top right, rgba(255, 138, 0, 0.09), transparent 34%),
        linear-gradient(180deg, rgba(18,18,18,0.97), rgba(8,8,8,0.98));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .stat-tile {
      min-height: 138px;
      padding: 18px;
      position: relative;
      overflow: hidden;
    }

    .stat-tile::after {
      content: "";
      position: absolute;
      right: 16px;
      bottom: 16px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 2px solid rgba(255, 138, 0, 0.28);
      opacity: 0.85;
    }

    .stat-label {
      display: block;
      color: var(--muted);
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 850;
      min-height: 28px;
      line-height: 1.25;
    }

    .stat-value {
      margin-top: 14px;
      font-size: clamp(22px, 7vw, 36px);
      line-height: 1;
      font-weight: 950;
      letter-spacing: -0.05em;
    }

    .stat-note {
      margin-top: 8px;
      color: var(--muted-2);
      font-size: 12px;
      line-height: 1.35;
    }

    .miners-grid,
    .feature-grid,
    .support-grid,
    .forum-layout,
    .wiki-grid,
    .roadmap-list,
    .funding-list,
    .partner-slots,
    .forum-list,
    .forum-rule-list {
      display: grid;
      gap: 14px;
    }

    .miner-card,
    .feature-card,
    .leaderboard-card,
    .roadmap-card,
    .story-card,
    .wiki-card,
    .form-card,
    .support-card,
    .partner-card,
    .funding-card,
    .forum-card,
    .forum-rules {
      padding: 20px;
    }

    .miner-card { overflow: hidden; }

    .miner-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 16px;
    }

    .miner-id {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .miner-avatar {
      width: 62px;
      height: 62px;
      border-radius: 18px;
      background:
        radial-gradient(circle at 50% 36%, #fff7e8 0 16%, transparent 17%),
        linear-gradient(180deg, #ff9b22, #c76600);
      position: relative;
      border: 1px solid rgba(255,255,255,0.13);
      flex-shrink: 0;
    }

    .miner-avatar.dark {
      background:
        radial-gradient(circle at 50% 36%, #fff7e8 0 16%, transparent 17%),
        linear-gradient(180deg, #3a3a3a, #111);
    }

    .miner-avatar::before,
    .miner-avatar::after {
      content: "";
      position: absolute;
      top: 24px;
      width: 9px;
      height: 16px;
      background: #fff;
      border-radius: 999px;
    }

    .miner-avatar::before { left: 18px; }
    .miner-avatar::after { right: 18px; }

    .miner-title h3,
    .feature-card h3,
    .wiki-card h3,
    .leaderboard-card h3,
    .roadmap-card h3,
    .form-card h3,
    .support-card h3,
    .partner-card h3,
    .funding-card h3,
    .forum-card h3,
    .forum-rules h3 {
      margin: 0 0 10px;
      color: var(--orange);
      font-size: 22px;
      line-height: 1.05;
      letter-spacing: -0.03em;
      font-weight: 950;
      text-transform: uppercase;
    }

    .miner-title h3 {
      font-size: 24px;
      margin-bottom: 4px;
    }

    .miner-title p,
    .feature-card p,
    .wiki-card p,
    .leaderboard-card p,
    .roadmap-card p,
    .form-card p,
    .support-card p,
    .partner-card p,
    .funding-card p,
    .forum-card p,
    .forum-rules p {
      margin: 0 0 14px;
      color: #d0c9bf;
      line-height: 1.55;
      font-size: 15px;
    }

    .miner-title p { margin: 0; color: var(--muted); font-size: 14px; }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 36px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.09);
      color: #fff;
      background: rgba(255,255,255,0.03);
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 900;
      flex-shrink: 0;
    }

    .dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 12px rgba(48, 209, 88, 0.8);
    }

    .miner-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin: 16px 0;
    }

    .mini-metric {
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 16px;
      padding: 13px;
      background: rgba(255,255,255,0.025);
    }

    .mini-metric span {
      display: block;
      color: var(--muted);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 850;
      margin-bottom: 8px;
    }

    .mini-metric strong {
      display: block;
      color: #fff;
      font-size: 18px;
      letter-spacing: -0.03em;
    }

    .miner-flavor {
      color: #d8d1c8;
      line-height: 1.5;
      margin: 0 0 16px;
      font-size: 15px;
    }

    .card-link {
      width: 100%;
      border: 1px solid rgba(255, 138, 0, 0.34);
      color: var(--orange);
      background: rgba(255,138,0,0.03);
    }

    .story-card {
      display: grid;
      gap: 20px;
      overflow: hidden;
    }

    .story-card h2 {
      margin: 0;
      font-size: clamp(36px, 10vw, 72px);
      line-height: 0.94;
      letter-spacing: -0.06em;
      text-transform: uppercase;
      font-weight: 950;
    }

    .story-card h2 .orange { color: var(--orange); }

    .story-card p {
      margin: 16px 0 0;
      color: #d8d1c8;
      font-size: 17px;
      line-height: 1.58;
    }

    .story-visual {
      min-height: 270px;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,0.07);
      background:
        radial-gradient(circle at 75% 20%, rgba(255, 138, 0, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(8,8,8,0.92), rgba(3,3,3,0.98));
      position: relative;
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .speech {
      position: absolute;
      top: 18px;
      right: 18px;
      left: 18px;
      max-width: 250px;
      margin-left: auto;
      background: rgba(0,0,0,0.62);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 24px;
      padding: 14px 16px;
      color: #fff;
      text-transform: uppercase;
      text-align: center;
      font-weight: 950;
      line-height: 1.35;
      font-size: 13px;
    }

    .speech .orange { color: var(--orange); }

    .person {
      width: 170px;
      height: 206px;
      position: relative;
      opacity: 0.82;
      transform: translateY(26px);
    }

    .person-head {
      width: 76px;
      height: 76px;
      border-radius: 50%;
      border: 3px solid rgba(255,255,255,0.66);
      margin: 0 auto;
    }

    .person-body {
      width: 150px;
      height: 112px;
      border: 3px solid rgba(255,255,255,0.66);
      border-top-left-radius: 70px;
      border-top-right-radius: 70px;
      border-bottom-left-radius: 30px;
      border-bottom-right-radius: 30px;
      margin: -4px auto 0;
    }

    .question {
      position: absolute;
      color: rgba(255,255,255,0.58);
      font-weight: 950;
      font-size: 34px;
    }

    .q1 { left: 0; top: 18px; }
    .q2 { right: 0; top: 76px; font-size: 28px; }
    .q3 { left: 18px; top: 122px; font-size: 24px; }

    .leaderboard-tabs,
    .forum-tags,
    .support-meta {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin: 14px 0;
    }

    .tab,
    .forum-tag,
    .support-chip {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 0 10px;
      border-radius: 999px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      color: var(--muted);
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 900;
    }

    .tab.active {
      color: #111;
      background: var(--orange);
      border-color: var(--orange);
    }

    .leaderboard-list {
      display: grid;
      gap: 8px;
      margin-top: 4px;
    }

    .leader-row {
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 12px;
      align-items: center;
      border: 1px solid rgba(255,255,255,0.06);
      background: rgba(255,255,255,0.025);
      border-radius: 16px;
      padding: 12px;
    }

    .rank {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--orange);
      background: rgba(255,138,0,0.13);
      font-weight: 950;
    }

    .leader-name,
    .forum-author,
    .forum-post-title {
      color: #fff;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: -0.02em;
    }

    .forum-post-title { color: var(--orange); margin-bottom: 6px; }

    .leader-meta,
    .forum-time {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
      margin-top: 3px;
    }

    .leader-score {
      grid-column: 2;
      color: #fff;
      font-weight: 950;
      letter-spacing: -0.02em;
    }

    .forum-post {
      box-shadow: none;
      border-radius: 18px;
      padding: 16px;
      background:
        radial-gradient(circle at top right, rgba(255, 138, 0, 0.06), transparent 36%),
        rgba(255,255,255,0.025);
    }

    .forum-post-head {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: flex-start;
      margin-bottom: 10px;
    }

    .forum-post-text {
      color: #d0c9bf;
      line-height: 1.5;
      font-size: 14px;
    }

    .forum-badge {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 0 8px;
      border-radius: 999px;
      background: rgba(255,138,0,0.10);
      border: 1px solid rgba(255,138,0,0.18);
      color: var(--orange);
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 950;
      margin-top: 10px;
    }

    .forum-rule,
    .roadmap-item,
    .funding-item,
    .partner-slot {
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 16px;
      padding: 14px;
      background: rgba(255,255,255,0.025);
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .forum-rule strong,
    .roadmap-text strong,
    .funding-item strong,
    .partner-slot strong {
      display: block;
      color: #fff;
      margin-bottom: 4px;
      font-size: 14px;
    }

    .roadmap-item {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 12px;
      align-items: start;
    }

    .roadmap-number {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--orange);
      color: #15110a;
      font-weight: 950;
      font-size: 13px;
    }

    .roadmap-text span,
    .funding-item span,
    .partner-slot span {
      color: var(--muted);
      line-height: 1.45;
      font-size: 13px;
    }

    .funding-item strong {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .funding-status {
      color: var(--orange);
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 950;
      white-space: nowrap;
    }

    .wiki-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .wiki-card { min-height: 144px; }
    .wiki-card h3 { font-size: 16px; }

    .quote-card {
      margin-top: 14px;
      text-align: center;
      padding: 30px 18px;
    }

    .quote-card blockquote {
      margin: 0;
      font-size: clamp(25px, 8vw, 50px);
      line-height: 1.08;
      letter-spacing: -0.055em;
      font-weight: 950;
      text-transform: uppercase;
    }

    .quote-card .orange { color: var(--orange); }

    .quote-card cite {
      display: block;
      margin-top: 16px;
      color: var(--muted);
      font-style: normal;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 12px;
      font-weight: 900;
    }

    .form-grid {
      display: grid;
      gap: 12px;
      margin-top: 16px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field label {
      color: var(--muted);
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 900;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.09);
      background: rgba(255,255,255,0.035);
      color: #fff;
      padding: 14px;
      outline: none;
    }

    .field textarea {
      min-height: 110px;
      resize: vertical;
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: rgba(255,255,255,0.38);
    }

    .form-note {
      color: var(--muted-2);
      font-size: 12px;
      line-height: 1.45;
      margin-top: 12px;
    }

    .support-card.featured {
      border-color: rgba(255, 138, 0, 0.34);
      background:
        radial-gradient(circle at top right, rgba(255, 138, 0, 0.16), transparent 38%),
        linear-gradient(180deg, rgba(22,18,12,0.98), rgba(8,8,8,0.98));
    }

    .bottom-nav {
      position: sticky;
      bottom: 0;
      z-index: 40;
      background: rgba(4,4,4,0.86);
      border-top: 1px solid rgba(255,255,255,0.08);
      backdrop-filter: blur(14px);
      padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 5px;
    }

    .bottom-nav a {
      min-height: 48px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: var(--muted);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 900;
      text-align: center;
    }

    .bottom-nav a:hover,
    .bottom-nav a.active {
      color: #111;
      background: var(--orange);
    }

    .footer {
      padding: 34px 0 92px;
      text-align: center;
      color: var(--muted-2);
      font-size: 14px;
      line-height: 1.55;
    }

    .footer strong {
      display: block;
      color: #fff;
      margin-bottom: 8px;
    }

    .disclaimer {
      max-width: 820px;
      margin: 14px auto 0;
      font-size: 12px;
      color: #716a61;
    }

    @media (min-width: 640px) {
      .hero-actions {
        display: flex;
        flex-wrap: wrap;
      }

      .btn { min-width: 210px; }
      .miners-grid { grid-template-columns: repeat(2, 1fr); }
      .feature-grid { grid-template-columns: repeat(3, 1fr); }

      .leader-row {
        grid-template-columns: 42px 1fr auto;
      }

      .leader-score { grid-column: auto; }
    }

    @media (min-width: 900px) {
      .container { width: min(calc(100% - 56px), var(--max)); }

      .site-header {
        top: 12px;
        width: min(calc(100% - 32px), var(--max));
        margin: 12px auto 0;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 22px;
      }

      .header-inner {
        min-height: 76px;
        padding: 0 10px 0 16px;
      }

      .desktop-nav { display: flex; }
      .mobile-menu-shell { display: none !important; }

      .hero { padding: 72px 0 34px; }

      .hero-grid {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 34px;
      }

      .hero-card { min-height: 560px; }
      .stats-grid { grid-template-columns: repeat(6, 1fr); }
      .stat-tile { min-height: 164px; }

      .story-card {
        grid-template-columns: 1.05fr 0.95fr;
        padding: 28px;
        align-items: center;
      }

      .story-visual { min-height: 390px; }
      .wiki-grid { grid-template-columns: repeat(4, 1fr); }

      .form-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .field.full,
      .form-note,
      .form-card .btn,
      .forum-card .btn {
        grid-column: 1 / -1;
      }

      .support-grid {
        grid-template-columns: 1.15fr 0.85fr;
      }

      .support-card.featured { grid-row: span 2; }

      .forum-layout {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: start;
      }

      .forum-rules {
        position: sticky;
        top: 112px;
      }

      .bottom-nav { display: none; }
      .footer { padding-bottom: 54px; }
    }

    @media (max-width: 420px) {
      .brand-name { font-size: 15px; }
      .brand-tag { font-size: 9px; letter-spacing: 0.18em; }
      .language-toggle { padding: 0 9px; font-size: 10px; }
    }

/* Asset-ready layer
   Ab jetzt kÃ¶nnen echte Dateien genutzt werden:
   assets/hero-sura-warrior.png
   assets/sura.png
   assets/warrior.png

   Wenn die Bilder noch fehlen, fÃ¤llt die Seite automatisch auf die CSS-Platzhalter zurÃ¼ck.
*/

.hero-card-assets {
  display: block;
  padding: 18px;
  min-height: auto;
}

.hero-card-assets::before {
  display: none;
}

.hero-card-assets::after {
  pointer-events: none;
}

.hero-card-label {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  text-align: center;
  color: rgba(255,255,255,0.32);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero-card-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  min-height: 320px;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  box-shadow: 0 20px 60px rgba(0,0,0,0.34);
}

.hero-card-assets .asset-fallback {
  display: none;
  min-height: 390px;
}

.hero-card-assets.asset-missing .asset-fallback {
  display: flex;
}

.miner-avatar-wrap {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
}

.miner-avatar-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.fallback-avatar {
  display: none;
  border-radius: 18px;
  border: none;
}

@media (max-width: 640px) {
  .hero-card-img {
    min-height: 300px;
    max-height: 460px;
  }

  .hero-card-assets .asset-fallback {
    min-height: 390px;
  }
}



/* FINAL MOBILE MENU FIX
   Replaces the old details dropdown with a fixed drawer controlled by #navToggle.
   Important: this lives at the very end of style.css and intentionally overrides earlier menu styles.
*/

.mobile-menu-shell,
.mobile-menu {
  display: none !important;
}

.mobile-menu-button {
  display: grid !important;
  position: relative;
  z-index: 10002;
}

.mobile-menu-backdrop {
  display: none;
}

.mobile-drawer {
  display: none;
}

#navToggle:checked ~ .page .mobile-menu-backdrop {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(3px);
}

#navToggle:checked ~ .page .mobile-drawer {
  display: grid;
  position: fixed;
  top: 94px;
  left: 14px;
  right: 14px;
  z-index: 9999;
  gap: 8px;
  padding: 14px;
  max-height: calc(100vh - 180px);
  overflow-y: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 138, 0, 0.42);
  background: #050505;
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.95),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}

.mobile-drawer a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 16px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #f7f4ee;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 14px;
  font-weight: 950;
}

.mobile-drawer a:active,
.mobile-drawer a:hover {
  color: #111;
  background: var(--orange);
  border-color: var(--orange);
}

#navToggle:checked ~ .page .mobile-menu-button {
  border-color: rgba(255, 138, 0, 0.55);
  background: rgba(255, 138, 0, 0.14);
}

@media (min-width: 900px) {
  .mobile-menu-button,
  .mobile-menu-backdrop,
  .mobile-drawer {
    display: none !important;
  }
}

