/* FUTLYTIX – Dashboard-Portal */
:root {
    --bg: #0a0a0a; --bg2: #111111; --card: #121212; --card2: #1a1a1a; --line: #262626; --line2: #333333;
    --text: #ffffff; --muted: #b0b0b0; --dim: #6b6b6b;
    --cyan: #00FF88; --cyan-d: #00c46a; --orange: #f97316; --green: #22c55e; --red: #ef4444; --yellow: #facc15; --violet: #8b5cf6; --pink: #ec4899;
    --radius: 14px;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--text); font: 14px/1.5 Inter, "Segoe UI", system-ui, -apple-system, sans-serif; }
a { color: var(--cyan); text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, .hero-title, .stat-big, .nav .logo, .rz .huge, .hero .big { font-family: Montserrat, Inter, "Segoe UI", sans-serif; }
h1, h2, h3 { margin: 0; letter-spacing: -.01em; }
[hidden] { display: none !important; }
.main { max-width: 1320px; margin: 0 auto; padding: 24px 24px 60px; min-height: 60vh; }

/* Navigation */
.nav-wrap { position: sticky; top: 0; z-index: 20; padding: 16px 24px 0; background: linear-gradient(var(--bg), rgba(10,10,10,.85)); backdrop-filter: blur(8px); }
.nav { max-width: 1320px; margin: 0 auto; display: flex; align-items: center; gap: 6px; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 8px 12px; }
.nav .logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 15px; letter-spacing: .04em; padding: 6px 10px 6px 4px; text-transform: uppercase; color: var(--text); }
.nav .logo svg { width: 28px; height: 28px; }
.nav .item { display: flex; align-items: center; gap: 7px; padding: 10px 14px; border-radius: 10px; color: var(--muted); font-weight: 600; cursor: pointer; white-space: nowrap; position: relative; }
.nav .item:hover { color: var(--text); background: var(--card2); }
.nav .item.active { color: var(--text); background: var(--card2); }
.nav .spacer { flex: 1; }
.nav .pill { display: flex; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 12px; background: var(--card2); border: 1px solid var(--line); cursor: pointer; font-weight: 700; }
.nav .pill .flame { color: var(--orange); }
.nav .avatar { width: 30px; height: 30px; border-radius: 50%; background: #2a2a2a center/cover no-repeat; display: inline-block; flex: none; }
.menu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 230px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 8px; box-shadow: 0 16px 40px rgba(0,0,0,.5); z-index: 30; }
.menu .mi { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 8px; color: var(--text); font-weight: 500; cursor: pointer; }
.menu .mi:hover { background: var(--card2); }
.menu .mh { display: flex; align-items: center; gap: 10px; padding: 8px 10px 10px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.menu .mh b { flex: 1; }
.menu .sep { height: 1px; background: var(--line); margin: 6px 0; }
.tag { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 2px 7px; border-radius: 6px; background: var(--card2); color: var(--muted); }
.tag.cyan { background: #0d2a1c; color: var(--cyan); } .tag.green { background: #0f2e1c; color: var(--green); } .tag.orange { background: #3a1e0e; color: #fb923c; } .tag.red { background: #3a1010; color: #f87171; } .tag.violet { background: #24173f; color: #c4b5fd; }

/* Seitenkopf */
.pagehead { display: flex; align-items: baseline; gap: 22px; margin: 16px 0 22px; flex-wrap: wrap; }
.pagehead h1 { font-size: 30px; font-weight: 800; }
.pagehead .sub { font-size: 24px; font-weight: 700; color: var(--dim); cursor: pointer; }
.pagehead .sub:hover { color: var(--muted); }
.center { text-align: center; }
.hero-title { font-size: 40px; font-weight: 800; margin: 30px 0 10px; text-align: center; }
.hero-sub { color: var(--muted); text-align: center; max-width: 640px; margin: 0 auto 30px; font-size: 16px; }

/* Raster / Karten */
.grid { display: grid; gap: 16px; }
.g3 { grid-template-columns: repeat(3, 1fr); } .g2 { grid-template-columns: repeat(2, 1fr); } .g4 { grid-template-columns: repeat(4, 1fr); } .g5 { grid-template-columns: repeat(5, 1fr); }
.g-12-8 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 1100px) { .g3, .g4, .g5, .g-12-8 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .g2, .g3, .g4, .g5, .g-12-8 { grid-template-columns: 1fr; } .main { padding: 16px; } .nav .item span { display: none; } }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.card.pad-sm { padding: 16px; }
.card h3 { font-size: 16px; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.card .cardhead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.card .cardhead a { font-size: 13px; color: var(--muted); }
.card .ico { width: 30px; height: 30px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; background: var(--card2); font-size: 14px; }
.hero { position: relative; overflow: hidden; background: #0a0a0a url(../assets/hero-card.svg) center/cover no-repeat; min-height: 240px; display: flex; flex-direction: column; justify-content: flex-end; }
.hero .big { font-size: 26px; font-weight: 800; letter-spacing: .02em; }
.hero .stripe { display: none;  position: absolute; right: -40px; top: -40px; width: 260px; height: 400px; background: linear-gradient(160deg, rgba(0,255,136,.35), rgba(0,196,106,.05)); transform: rotate(25deg); border-radius: 40px; }
.muted { color: var(--muted); } .dim { color: var(--dim); } .small { font-size: 12px; } .tiny { font-size: 11px; }
.eyebrow { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.stat-big { font-size: 30px; font-weight: 800; display: flex; align-items: center; gap: 8px; margin: 6px 0 4px; }
.stat-big.two { gap: 28px; }
.stat-big .lbl { font-size: 10px; font-weight: 800; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; display: block; }
.delta { font-size: 12px; font-weight: 700; } .delta.up { color: var(--green); } .delta.down { color: var(--red); }
.coin { display: inline-block; width: 18px; height: 18px; background: url(../assets/coin.svg) center/contain no-repeat; vertical-align: -4px; }
.coin.sm { width: 13px; height: 13px; vertical-align: -2px; }
.spark { display: block; width: 100%; height: 44px; margin-top: 10px; }
.best { border-color: #6b5410; background: linear-gradient(180deg, #1d1a10, var(--card)); }
.best .who { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.best .who .avatar { width: 46px; height: 46px; border-radius: 50%; background: #2a2a2a; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.linkcard { border-style: dashed; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center; cursor: pointer; color: var(--muted); }
.linkcard:hover { color: var(--text); border-color: var(--line2); }
.lb { display: flex; flex-direction: column; gap: 10px; }
.lb .row { display: flex; align-items: center; gap: 12px; }
.lb .row .n { color: var(--dim); width: 16px; font-weight: 700; }
.lb .row .name { flex: 1; font-weight: 700; color: var(--cyan); }
.lb .row:nth-child(2) .name { color: var(--yellow); }
.lb .row .val { font-weight: 800; display: flex; align-items: center; gap: 6px; }
.rankline { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); color: var(--muted); }

/* Tabs / Segment / Buttons */
.tabs { display: flex; gap: 18px; align-items: baseline; }
.tabs .t { font-size: 18px; font-weight: 700; color: var(--dim); cursor: pointer; }
.tabs .t.active { color: var(--cyan); }
.tabs.sm .t { font-size: 15px; }
.rowbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 26px 0 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; border-radius: 10px; border: 1px solid var(--line); background: var(--card2); color: var(--text); font-weight: 700; cursor: pointer; }
.btn:hover { border-color: var(--line2); }
.btn.primary { background: var(--cyan); border-color: var(--cyan); color: #052e16; }
.btn.primary:hover { background: #4dffa6; }
.btn.orange { background: var(--orange); border-color: var(--orange); color: #1a0d00; }
.btn.yellow { background: var(--yellow); border-color: var(--yellow); color: #1a1200; }
.btn.danger { border-color: #7a2320; color: #fca5a5; background: transparent; }
.btn.ghost { background: transparent; }
.btn.sm { padding: 6px 10px; font-size: 12px; border-radius: 8px; }
.btn:disabled { opacity: .5; cursor: default; }
.seg { display: inline-flex; background: var(--bg2); border: 1px solid var(--line); border-radius: 10px; padding: 3px; }
.seg div { padding: 6px 12px; border-radius: 7px; font-size: 12px; font-weight: 700; color: var(--muted); cursor: pointer; }
.seg div.active { background: #fff; color: #0a0a0a; }
input.inp, select.inp, textarea.inp { width: 100%; background: var(--bg2); border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px; color: var(--text); }
input.inp:focus, select.inp:focus, textarea.inp:focus { outline: none; border-color: var(--cyan-d); }
textarea.inp { min-height: 90px; resize: vertical; }
label.lab { display: block; font-weight: 700; font-size: 13px; margin: 14px 0 6px; }
.help { color: var(--dim); font-size: 12px; margin-top: 6px; }
.err { color: #fca5a5; font-size: 13px; margin-top: 8px; }
.ok { color: var(--green); font-size: 13px; margin-top: 8px; }

/* Tabelle */
.table { width: 100%; border-collapse: separate; border-spacing: 0 8px; }
.table th { text-align: left; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 6px 14px; }
.table td { background: var(--card); padding: 14px; vertical-align: middle; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.table td:first-child { border-left: 1px solid var(--line); border-radius: 12px 0 0 12px; }
.table td:last-child { border-right: 1px solid var(--line); border-radius: 0 12px 12px 0; }
.table .item { display: flex; align-items: center; gap: 12px; }
.table .item .pic { width: 44px; height: 44px; border-radius: 50%; background: #2a2a2a; display: flex; align-items: center; justify-content: center; font-weight: 800; flex: none; }
.table .item b { display: block; }
.table .item small { color: var(--muted); }
.status { width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; }
.status.ok { background: var(--green); color: #052e16; } .status.no { background: #3a3f47; color: #cbd5e1; } .status.wait { background: #3a2f10; color: var(--yellow); }
.sess-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: #0d2a1c; color: var(--cyan); margin-top: 4px; }
.sess-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }
.pencil { cursor: pointer; color: var(--muted); margin-left: 6px; }
.empty { padding: 40px 20px; text-align: center; color: var(--muted); border: 1px dashed var(--line2); border-radius: var(--radius); }

/* Reward Zone */
.rz { display: grid; grid-template-columns: 1.4fr 1fr; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); overflow: hidden; }
.rz > div { padding: 26px; }
.rz > div + div { border-left: 1px solid var(--line); }
.rz .huge { font-size: 54px; font-weight: 800; display: flex; align-items: center; gap: 14px; line-height: 1; margin: 12px 0 8px; }
.token { display: inline-flex; width: 40px; height: 40px; border-radius: 50%; background: var(--orange); align-items: center; justify-content: center; color: #fff; font-weight: 900; }
.token.sm { width: 18px; height: 18px; font-size: 10px; }
.claimbox { display: flex; align-items: center; gap: 14px; background: #1d1a10; border: 1px solid #6b5410; border-radius: 12px; padding: 12px 14px; margin-top: 18px; }
.claimbox b { font-size: 18px; color: var(--yellow); }
.claimbox .btn { margin-left: auto; }
.streak-dots { display: flex; gap: 6px; margin: 14px 0 10px; }
.streak-dots i { flex: 1; height: 6px; border-radius: 3px; background: var(--line2); }
.streak-dots i.on { background: var(--orange); } .streak-dots i.today { background: var(--cyan); }
.task { position: relative; }
.task.ready { border-color: #6b5410; box-shadow: inset 0 0 0 1px #4d3d0e; }
.task .tico { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 12px; }
.task .pts { position: absolute; top: 14px; right: 14px; display: flex; align-items: center; gap: 5px; font-weight: 800; background: var(--card2); border: 1px solid var(--line); padding: 3px 8px; border-radius: 8px; }
.bar { height: 6px; border-radius: 3px; background: var(--line2); margin-top: 10px; overflow: hidden; }
.bar i { display: block; height: 100%; background: var(--pink); }
.bar.y i { background: var(--yellow); } .bar.c i { background: var(--cyan); } .bar.o i { background: var(--orange); }
.prog { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-top: 10px; }
.prog b { color: var(--text); }

/* Store */
.store { display: grid; grid-template-columns: 300px 1fr; gap: 24px; }
.sidelist { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 10px; align-self: start; }
.sidelist div { padding: 11px 14px; border-radius: 10px; color: var(--muted); font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 10px; }
.sidelist div.active { background: #0d2a1c; color: var(--cyan); }
.sidelist div:hover { color: var(--text); }
.product .art { height: 200px; border-radius: 12px 12px 0 0; background: radial-gradient(circle at 30% 30%, rgba(34,211,238,.25), transparent 60%), var(--bg2); display: flex; align-items: center; justify-content: center; font-size: 34px; font-weight: 900; letter-spacing: -.02em; }
.product .art.orange { background: radial-gradient(circle at 30% 30%, rgba(249,115,22,.3), transparent 60%), var(--bg2); }
.product .art.violet { background: radial-gradient(circle at 30% 30%, rgba(139,92,246,.35), transparent 60%), var(--bg2); }
.product .body { padding: 18px; }
.product .price { float: right; font-weight: 800; display: flex; align-items: center; gap: 6px; }
.product .actions { display: flex; gap: 10px; margin-top: 14px; }
.product .actions .btn.primary { flex: 1; }
.howto { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.howto .step { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.howto .step i { width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--card2); font-style: normal; }
.howto .step.hi { color: var(--orange); }

/* Prediction */
.match { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; padding: 12px 14px; background: var(--card2); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 8px; }
.match .team { font-weight: 700; } .match .team.r { text-align: right; }
.match .score { display: flex; align-items: center; gap: 6px; }
.match .score input { width: 44px; text-align: center; padding: 6px; }
.match .meta { grid-column: 1 / -1; display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; }
.lbrow { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: var(--card2); border: 1px solid var(--line); border-radius: 10px; margin-bottom: 6px; }
.lbrow .n { color: var(--muted); width: 26px; font-weight: 700; }
.lbrow .name { flex: 1; font-weight: 700; }
.lbrow.me { border-color: var(--cyan-d); }
.rewardrow { display: flex; gap: 12px; padding: 12px 14px; background: var(--card2); border-radius: 10px; margin-bottom: 8px; }
.rewardrow .n { color: var(--muted); font-weight: 700; }
.rewardbanner { height: 150px; border-radius: 12px; background: linear-gradient(110deg, #2563eb 0 45%, #22c55e 45% 100%); display: flex; align-items: center; padding: 0 30px; font-size: 32px; font-weight: 900; color: #fff; margin-bottom: 18px; }
.rules td, .rules th { padding: 10px 14px; }
.rules tr + tr td { border-top: 1px solid var(--line); }

/* Help */
.search { display: flex; gap: 10px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 10px 10px 10px 18px; max-width: 640px; margin: 0 auto 18px; }
.search input { flex: 1; background: transparent; border: 0; color: var(--text); font-size: 16px; }
.search input:focus { outline: none; }
.helpbox { max-width: 640px; margin: 0 auto 36px; background: #0d2a1c; border: 1px solid #1d5a3a; border-radius: 14px; padding: 16px 20px; display: flex; align-items: center; gap: 14px; cursor: pointer; }
.helpbox .ico { background: #144a2f; color: var(--cyan); }
.cat { cursor: pointer; }
.cat:hover { border-color: var(--line2); }
.cat .ico { margin-bottom: 14px; background: #0d2a1c; color: var(--cyan); width: 38px; height: 38px; }
.cat h3 { margin-bottom: 6px; }
.cat p { color: var(--muted); margin: 0 0 12px; }
.cat.accent { background: linear-gradient(180deg, #0d2a1c, var(--card)); border-color: #1d5a3a; }
.cat.accent2 { background: linear-gradient(180deg, #1e1b4b, var(--card)); border-color: #3730a3; }
.cat.accent2 .ico { background: #312e81; color: #c7d2fe; }
.article { max-width: 820px; margin: 0 auto; }
.article h1 { font-size: 28px; margin-bottom: 14px; }
.article p { color: #cbd3de; line-height: 1.7; white-space: pre-line; }
.crumbs { color: var(--dim); font-size: 13px; margin-bottom: 14px; }
.crumbs a { color: var(--muted); }

/* Einstellungen / Profil */
.settings { display: grid; grid-template-columns: 220px 1fr; gap: 24px; }
.sec { margin-bottom: 18px; }
.sec .shead { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.sec .shead .ico { background: #0d2a1c; color: var(--cyan); }
.sec .shead b { display: block; font-size: 16px; }
.sec .shead small { color: var(--muted); }
.sec .shead .right { margin-left: auto; }
.sec.danger { border-color: #7a2320; }
.warn { background: #23100f; border: 1px solid #7a2320; border-radius: 10px; padding: 12px 14px; color: #f4c3c0; font-size: 13px; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; background: var(--bg2); border: 1px solid var(--line); border-radius: 10px; padding: 14px; }
.checks label { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.toggle { position: relative; width: 40px; height: 22px; border-radius: 11px; background: var(--line2); cursor: pointer; flex: none; }
.toggle::after { content: ""; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: left .15s; }
.toggle.on { background: var(--cyan); } .toggle.on::after { left: 21px; }
.privrow { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--line); }
.privrow b { display: block; } .privrow small { color: var(--muted); }
.swatches { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.swatches i { width: 34px; height: 34px; border-radius: 9px; cursor: pointer; border: 2px solid transparent; display: inline-flex; align-items: center; justify-content: center; font-style: normal; color: #fff; }
.swatches i.sel { border-color: #fff; }
.slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 14px 0; }
.slot { height: 90px; border: 1px dashed var(--line2); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; color: var(--dim); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.slot.filled { border-style: solid; border-color: var(--line); color: var(--text); background: var(--card2); }
.badges { display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; }
@media (max-width: 900px) { .badges { grid-template-columns: repeat(4, 1fr); } .settings, .store { grid-template-columns: 1fr; } }
.badge { background: var(--card2); border: 1px solid var(--line); border-radius: 10px; padding: 12px 6px; text-align: center; font-size: 11px; font-weight: 700; cursor: pointer; }
.badge.locked { opacity: .35; }
.badge.sel { border-color: var(--cyan-d); }
.badge .hex { width: 34px; height: 34px; margin: 0 auto 6px; clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); background: #4b5563; display: flex; align-items: center; justify-content: center; }
.badge .hex.gold { background: #d97706; } .badge .hex.silver { background: #9ca3af; } .badge .hex.bronze { background: #b45309; }
.preview { position: sticky; top: 90px; }
.preview .hero-p { height: 90px; border-radius: 14px 14px 0 0; }
.preview .who { display: flex; gap: 14px; padding: 0 18px; margin-top: -30px; align-items: flex-end; }
.preview .who .avatar { width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--card); background: #2a2a2a center/cover no-repeat; }
.preview .who b { font-size: 18px; display: block; }
.preview .mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 18px; }
.preview .mini div { background: var(--card2); border-radius: 10px; padding: 10px; text-align: center; }
.preview .mini b { display: block; font-size: 18px; }
.preview .mini small { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.preview .streakline { margin: 0 18px 18px; background: #1d1a10; border-radius: 8px; padding: 8px 12px; color: var(--yellow); font-weight: 700; }
.savebar { position: sticky; bottom: 0; background: var(--bg); border-top: 1px solid var(--line); padding: 12px 0; display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.savebar .btn { margin-left: auto; }
.savebar .btn + .btn { margin-left: 0; }

/* Auth */
.auth { max-width: 460px; margin: 40px auto; }
.auth h1 { font-size: 26px; margin-bottom: 6px; }

/* Fuß */
.foot { max-width: 1320px; margin: 30px auto 0; padding: 30px 24px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; color: var(--muted); }
.foot h4 { margin: 0 0 12px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); }
.foot a { display: block; color: var(--muted); padding: 4px 0; }
.foot a:hover { color: var(--text); }
.foot .copy { grid-column: 1 / -1; display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 16px; font-size: 12px; color: var(--dim); }
@media (max-width: 720px) { .foot { grid-template-columns: 1fr 1fr; } }

/* Toast */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: #202020; border: 1px solid var(--line2); border-radius: 10px; padding: 10px 16px; font-weight: 600; z-index: 50; box-shadow: 0 10px 30px rgba(0,0,0,.5); }
.toast.err { border-color: #7a2320; color: #fca5a5; }

/* Charts */
.bars { display: flex; align-items: flex-end; gap: 4px; height: 140px; margin-top: 12px; }
.bars div { flex: 1; background: #14402a; border-radius: 3px 3px 0 0; position: relative; min-height: 2px; }
.bars div.best { background: var(--cyan); }
.bars div span { position: absolute; bottom: -18px; left: 0; right: 0; text-align: center; font-size: 9px; color: var(--dim); }
.bars-wrap { padding-bottom: 20px; }
.trend { display: grid; grid-template-columns: 1fr 100px 100px 70px 60px; align-items: center; gap: 10px; padding: 12px 14px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 6px; }
.trend b { display: block; } .trend .r { text-align: right; font-weight: 700; }
.trend .sc { text-align: right; font-weight: 800; color: var(--cyan); }
.trend .tags { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 3px; }
.thead { display: grid; grid-template-columns: 1fr 100px 100px 70px 60px; gap: 10px; padding: 0 14px 6px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 800; }
.thead .r { text-align: right; }
.kv { display: flex; justify-content: space-between; padding: 8px 0; border-top: 1px solid var(--line); }
.kv:first-child { border-top: 0; }
code.k { background: var(--bg2); border: 1px solid var(--line); border-radius: 6px; padding: 2px 8px; font-family: Consolas, monospace; }
.steps li { margin-bottom: 10px; color: #cbd3de; }

.foot svg { width: 28px; height: 28px; }

.ic { vertical-align: -3px; flex: none; }
.nav .item .ic, .menu .mi .ic, .sidelist .ic { color: var(--cyan); }
.nav .item.active .ic { color: var(--cyan); }

.legal section { margin-top: 26px; }
.legal h2 { font-size: 17px; margin-bottom: 8px; }
.legal p { margin: 0 0 10px; }

.main > .grid.g3:first-child, .main > .card:first-child { margin-top: 12px; }

/* ---- Abo ---- */
.planbadge { font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line, #262626); color: var(--muted); margin-right: 8px; white-space: nowrap; }
.planbadge.pro { color: #7dd3fc; border-color: #1e4a63; background: #0c1f2b; }
.planbadge.premium { color: #052e16; background: var(--cyan, #00ff88); border-color: transparent; }
.lockmark { display: inline-flex; opacity: .55; vertical-align: -1px; }
.locked { max-width: 560px; margin: 60px auto; text-align: center; padding: 40px 30px; }
.locked h1 { font-size: 24px; margin: 0 0 10px; }
.lockico { width: 64px; height: 64px; border-radius: 18px; background: #0d2a1c; color: var(--cyan, #00ff88); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.planstate { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 24px; align-items: center; margin-bottom: 30px; }
.ptoggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 30px; font-weight: 600; }
.ptoggle .sw { width: 60px; height: 32px; border-radius: 16px; background: #1a1a1a; border: 1px solid #262626; position: relative; cursor: pointer; }
.ptoggle .sw::after { content: ""; position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: #fff; transition: left .18s; }
.ptoggle .sw.on::after { left: 31px; }
.ptoggle .save { color: var(--cyan, #00ff88); font-style: italic; border-bottom: 2px solid var(--cyan, #00ff88); }
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.plan { background: #15181c; border: 1px solid #262626; border-radius: 22px; padding: 28px; position: relative; }
.plan.rec { border: 2px solid var(--cyan, #00ff88); background: linear-gradient(160deg, #12211a, #151515 60%); }
.plan.mine { box-shadow: 0 0 0 3px rgba(0, 255, 136, .18); }
.plan .badge { position: absolute; top: -13px; right: 30px; background: var(--cyan, #00ff88); color: #052e16; font-weight: 800; font-size: 11px; padding: 6px 14px; border-radius: 999px; }
.plan h3 { font-size: 21px; display: flex; align-items: center; gap: 10px; margin: 0; }
.plan.rec h3 { color: var(--cyan, #00ff88); }
.pprice { display: flex; align-items: flex-start; gap: 6px; margin: 16px 0; padding-bottom: 18px; border-bottom: 1px solid #262626; }
.pprice .cur { font-size: 20px; font-weight: 800; margin-top: 8px; }
.pprice .amt { font-family: Montserrat, sans-serif; font-size: 40px; font-weight: 800; line-height: 1; }
.pprice small { color: #ddd; font-size: 11px; margin-top: 8px; font-weight: 600; }
.plan > p { color: #d6d6d6; margin: 0 0 14px; }
.plan .grp { font-family: Montserrat, sans-serif; font-style: italic; font-weight: 800; color: var(--cyan, #00ff88); margin: 18px 0 8px; }
.plan ul { list-style: none; margin: 0; padding: 0; }
.plan li { display: flex; gap: 10px; padding: 3px 0; font-size: 14.5px; }
.plan li svg { color: var(--cyan, #00ff88); flex: none; margin-top: 3px; }
.codes { background: #0a0a0a; border: 1px solid #262626; border-radius: 10px; padding: 12px; margin-top: 12px; font-size: 13px; user-select: all; }
[dir=rtl] .planbadge { margin-right: 0; margin-left: 8px; }
@media (max-width: 900px) { .plans, .planstate { grid-template-columns: 1fr; } .planstate > div { text-align: left !important; } }

.article h2 { font-size: 20px; margin: 28px 0 10px; }
.article ul { margin: 0 0 14px; padding-left: 20px; color: var(--muted); }
.article li { margin: 5px 0; line-height: 1.6; }
.article .table { margin: 6px 0 18px; }
