:root {
    --p1: #00ceff;
    --p2: #7de5ff;
    --bg0: #080d10;
    --bg1: #0b1014;
    --bg2: #101a23;
    --panel: rgba(18, 29, 36, 0.62);
    --text: #F2F0FF;
    --muted: rgba(242, 240, 255, .72);
    --dim: rgba(242, 240, 255, .55);
    --shadow: 0 30px 85px rgba(0, 0, 0, .65);
    --r: 28px;
}

body.light {
    --bg0: #f6f4fb;
    --bg1: #f1edfb;
    --bg2: #ebe6f8;
    --panel: rgba(255, 255, 255, .75);
    --text: #1b1526;
    --muted: rgba(27, 21, 38, .70);
    --dim: rgba(27, 21, 38, .55);
    /* was rgba(90, 60, 140, .25) (purple-ish) */
    --shadow: 0 30px 85px rgba(0, 168, 210, .25);
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    /* purples removed -> cyan equivalents */
    background:
    radial-gradient(1100px 700px at 18% 12%, rgba(0, 206, 255, .16) 0%, rgba(0, 206, 255, 0) 60%),
    radial-gradient(1000px 680px at 82% 18%, rgba(125, 229, 255, .14) 0%, rgba(125, 229, 255, 0) 62%),
    radial-gradient(900px 650px at 50% 100%, rgba(57, 194, 255, .12) 0%, rgba(57, 194, 255, 0) 60%),
    linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 40%, var(--bg2) 100%);
    overflow-x: hidden;
    transition: background .6s ease, color .4s ease;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'width='300'height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise'baseFrequency='.6'numOctaves='2'stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300'height='300'filter='url(%23n)'opacity='.18'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    opacity: .14;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at 50% 60%, black 0%, transparent 70%);
    animation: gridMove 30s linear infinite;
    opacity: .35;
}

@keyframes gridMove {
    from { background-position: 0 0, 0 0; }
    to { background-position: 600px 600px, 600px 600px; }
}

@keyframes fall {
    to { transform: translateY(120vh) rotate(360deg); }
}

.blob {
    position: fixed;
    width: 520px;
    aspect-ratio: 1/1;
    filter: blur(40px);
    opacity: .26;
    z-index: 0;
    animation: drift 16s ease-in-out infinite;
}

body.light .blob { opacity: .18; }

/* b1 had purple fade; now fades to cyan transparent */
.b1 {
    left: -160px;
    top: -160px;
    background: radial-gradient(circle at 30% 35%, rgba(0, 206, 255, .9), rgba(0, 206, 255, 0) 64%);
}

.b2 {
    right: -180px;
    top: 30px;
    width: 620px;
    opacity: .22;
    background: radial-gradient(circle at 40% 40%, rgba(95, 223, 255, 0.9), rgba(157, 224, 255, 0) 62%);
    animation-duration: 18s;
}

/* b3 had purple fade; now fades to cyan transparent */
.b3 {
    left: 50%;
    bottom: -260px;
    width: 720px;
    opacity: .20;
    transform: translateX(-50%);
    background: radial-gradient(circle at 50% 45%, rgba(129, 230, 255, 0.85), rgba(57, 194, 255, 0) 66%);
    animation-duration: 20s;
}

@keyframes drift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(22px, -18px, 0) scale(1.03); }
}

/* ── ANNOUNCEMENT BANNER ── */
.announcement-banner {
    position: relative;
    z-index: 100;
    width: 100%;
    /* purple strip -> cyan strip */

    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.announcement-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
    90deg,
    rgba(0,206,255,.03) 0px,
    rgba(0,206,255,.03) 1px,
    transparent 1px,
    transparent 80px
    );
    pointer-events: none;
}

.anni-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.anni-text {
    font-size: 20px;
    font-weight: 560;
    letter-spacing: .10em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--p1), var(--p2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.anni-divider {
    width: 1px;
    height: 16px;
    background: rgba(125, 229, 255, .22);
    flex-shrink: 0;
}

.anni-discord {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(242, 240, 255, .65);
    padding: 5px 13px;
    border: 1px solid rgba(125, 229, 255, .18);
    border-radius: 999px;
    background: rgba(0, 206, 255, .08);
    transition: background .2s, border-color .2s, color .2s, transform .18s;
    position: relative;
    overflow: hidden;
}

.anni-discord::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,206,255,.18), rgba(125,229,255,.18));
    opacity: 0;
    transition: opacity .2s;
    border-radius: inherit;
}

.anni-discord:hover { border-color: rgba(125,229,255,.5); color: var(--p2); transform: translateY(-1px); }
.anni-discord:hover::before { opacity: 1; }

.anni-discord svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.anni-discord-text { position: relative; z-index: 1; }

.anni-pill {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #ffd37a;
    background: rgba(255, 200, 90, .12);
    border: 1px solid rgba(255, 200, 90, .28);
    border-radius: 999px;
    padding: 2px 8px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .anni-text, .anni-divider { display: none; }
}

/* ── REST OF STYLES ── */
.wrap {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px 18px;
}

.shell { width: min(980px, 100%); display: grid; gap: 16px; }

.reviews {
    background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    radial-gradient(1400px 500px at 30% 0%, rgba(127, 173, 226, 0.2), rgba(127, 186, 226, 0) 55%),
    radial-gradient(1200px 520px at 82% 20%, rgba(157, 204, 255, 0.16), rgba(157, 203, 255, 0) 58%),
    var(--panel);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    overflow: hidden;
    padding: 0px;
    position: relative;
    isolation: isolate;
    min-height: 0px;
}

.reviews::after {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    /* conic glow: purple -> cyan */
    background: conic-gradient(
    from 180deg at 50% 50%,
    rgba(0,206,255,.00),
    rgba(0,206,255,.22),
    rgba(125,229,255,.20),
    rgba(0,206,255,.00)
    );
    filter: blur(20px);
    opacity: .35;
    z-index: -1;
    animation: spin 10s linear infinite;
}

.hero {
    background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    radial-gradient(1400px 500px at 30% 0%, rgba(127, 173, 226, 0.2), rgba(127, 186, 226, 0) 55%),
    radial-gradient(1200px 520px at 82% 20%, rgba(157, 204, 255, 0.16), rgba(157, 203, 255, 0) 58%),
    var(--panel);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    overflow: hidden;
    padding: 26px;
    position: relative;
    isolation: isolate;
    min-height: 260px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    /* conic glow: purple -> cyan */
    background: conic-gradient(
    from 180deg at 50% 50%,
    rgba(0,206,255,.00),
    rgba(0,206,255,.22),
    rgba(125,229,255,.20),
    rgba(0,206,255,.00)
    );
    filter: blur(20px);
    opacity: .35;
    z-index: -1;
    animation: spin 10s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; flex-wrap: wrap; position: relative; z-index: 2; }
.title { display: grid; gap: 10px; max-width: 62ch; }

.kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }
.dot { width: 10px; height: 10px; border-radius: 999px; background: linear-gradient(135deg, var(--p1), var(--p2)); box-shadow: 0 0 0 6px rgba(47,212,255,.12); }

h1 { margin: 0; font-size: clamp(28px, 4.2vw, 46px); line-height: 1.02; letter-spacing: -.04em; }

.grad { background: linear-gradient(90deg, var(--p1), var(--p2)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.lead { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.65; text-align: left; }

.actions { display: flex; gap: 10px; align-items: center; justify-content: flex-end; flex: 1; min-width: 260px; }

.btn { background: rgba(255,255,255,.04); color: var(--text); padding: 11px 16px; font-weight: 700; cursor: pointer; box-shadow: 0 12px 30px rgba(0,0,0,.35); transition: transform .18s ease, background .18s ease, border-color .18s ease, color .3s ease; display: inline-flex; align-items: center; gap: 10px; }
.btn:hover { transform: translateY(-1px); background: rgba(255,255,255,.08); border-color: rgba(124,231,255,.22); }
.btn.primary { border-color: rgba(124,231,255,.30); background: linear-gradient(135deg, rgba(47,212,255,.28), rgba(124,231,255,.22)); }

.grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; }

@media (max-width:860px) {
    .grid { grid-template-columns: 1fr; }
    .actions { justify-content: flex-start; }
}

.card { border: 1px solid rgba(255,255,255,.10); background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); box-shadow: 0 22px 65px rgba(0,0,0,.55); backdrop-filter: blur(14px); overflow: hidden; position: relative; display: flex; flex-direction: column; }
.card .inner { padding: 18px; display: flex; flex-direction: column; gap: 10px; height: 100%; }
.card h2 { margin: 0; font-size: 16px; }
.card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }

.cmd-search { display: flex; flex-direction: column; gap: 10px; flex: 1; min-height: 0; }
.cmd-input { width: 100%; border: 1px solid rgba(255,255,255,.14); background: rgba(0,0,0,.25); color: var(--text); padding: 11px 14px; outline: none; font-weight: 600; }
.cmd-input::placeholder { color: var(--dim); }
.cmd-list { display: flex; flex-direction: column; gap: 8px; overflow-y: auto; padding-right: 4px; max-height: 360px; }
.cmd { border: 1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.22); padding: 10px 12px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cmd-left { display: grid; gap: 4px; }
.cmd strong { font-size: 13px; }
.cmd span { font-size: 12px; color: var(--muted); }

.badge { font-size: 11px; font-weight: 900; padding: 5px 10px; border-radius: 999px; text-transform: uppercase; white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; min-width: 86px; height: 26px; line-height: 1; flex-shrink: 0; text-align: center; }
.stable   { background: rgba(80,220,140,.18); color: #6dffb1; border: 1px solid rgba(80,220,140,.35); }
.experimental { background: rgba(255,200,90,.18); color: #ffd37a; border: 1px solid rgba(255,200,90,.35); }
.new      { background: rgba(90,180,255,.18); color: #7cc4ff; border: 1px solid rgba(90,180,255,.35); }
.warning  { background: rgba(255,110,40,.22); color: #ff9a4d; border: 1px solid rgba(255,110,40,.45); }
.unstable { background: rgba(255,90,90,.18); color: #ff9b9b; border: 1px solid rgba(255,90,90,.35); }

.links { display: grid; gap: 10px; margin-top: 6px; }
.link { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.22); text-decoration: none; color: var(--text); font-weight: 700; transition: transform .18s ease, border-color .18s ease, background .18s ease; position: relative; overflow: hidden; }
.link:hover { transform: translateY(-2px); background: rgba(255,255,255,.06); border-color: rgba(124,231,255,.28); }
.link span { color: var(--muted); font-weight: 600; font-size: 13px; }
.link .ico { width: 22px; height: 22px; object-fit: contain; flex: 0 0 auto; }

.toast { position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%) translateY(20px); opacity: 0; pointer-events: none; padding: 10px 14px; background: rgba(12,14,26,.65); border: 1px solid rgba(124,231,255,.22); color: rgba(242,240,255,.92); box-shadow: 0 22px 65px rgba(0,0,0,.55); backdrop-filter: blur(14px); transition: .25s ease; z-index: 20; font-size: 13px; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.rata-layer { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.rata-wrap { position: absolute; top: -40px; animation: fall linear infinite; }
.rata { width: 18px; opacity: .85; filter: drop-shadow(0 4px 10px rgba(0,0,0,.35)); animation: spin 1s linear infinite; }
.particle { position: fixed; left: 0; top: 0; width: 14px; pointer-events: none; will-change: transform; z-index: 9999; }

@media (prefers-reduced-motion: reduce) {
    .blob, .hero::after, body::after { animation: none !important; }
}

.simple-topbar {
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--panel);
    border-bottom: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(14px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 24px;
    gap: 20px;
    z-index: 100;
}

.simple-topbar a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: color .18s ease;
}

.simple-topbar a:hover {
    color: var(--text);
}

/* ── REVIEWS SECTION ── */
.reviews-section {
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 16px 0;
    margin: 16px 0;
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 40px rgba(0,0,0,.15);
}

.reviews-wrapper {
    overflow: hidden;
    padding: 10px 0;
    margin: 0 -26px;
    position: relative;
}

.reviews-wrapper::before,
.reviews-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 10;
    pointer-events: none;
}

.reviews-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, rgba(8,13,16,0.9) 0%, rgba(8,13,16,0.7) 50%, transparent 100%);
}

.reviews-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, rgba(8,13,16,0.9) 0%, rgba(8,13,16,0.7) 50%, transparent 100%);
}

.reviews-track {
    display: flex;
    gap: 16px;
    padding: 0 26px;
    animation: scrollReviews 25s linear infinite;
}

.review {
    flex: 0 0 auto;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    padding: 16px;
    min-width: 280px;
    max-width: 320px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review:hover {
    transform: translateY(-2px);
    border-color: rgba(124,231,255,.3);
    box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

.review .stars {
    color: #ffd700;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.review .text {
    color: var(--text);
    font-style: italic;
    flex: 1;
}

.review .user {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    text-align: right;
    margin-top: 8px;
}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
