/* Minestakes Dark Theme — v3 */
:root {
    --bg-primary: #0d0f18;
    --bg-secondary: #151825;
    --bg-card: #1e2133;
    --bg-card-hover: #252840;
    --bg-input: #151825;
    --border: #282d45;
    --border-subtle: #1e2235;
    --text-primary: #e6e8f4;
    --text-secondary: #8a8fa8;
    --text-muted: #555a72;
    --accent: #6c5ce7;
    --accent-hover: #7e6ff0;
    --accent-dim: rgba(108, 92, 231, 0.15);
    --green: #00d68f;
    --green-dim: rgba(0, 214, 143, 0.12);
    --red: #ff6b6b;
    --red-dim: rgba(255, 107, 107, 0.12);
    --yellow: #ffd93d;
    --blue: #4ea8de;
    --radius: 8px;
    --radius-lg: 14px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --transition: 0.18s ease;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* Subtle background texture */
    background-image: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(108, 92, 231, 0.08) 0%, transparent 60%);
    background-attachment: fixed;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--accent-hover);
}

/* ── Navbar ── */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 60px;
    background: rgba(21, 24, 37, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
}
.navbar-brand {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 30%, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.navbar-links {
    display: flex;
    gap: 0.25rem;
}
.navbar-links a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius);
    border-bottom: none;
    transition: color var(--transition), background var(--transition);
}
.navbar-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}
.navbar-links a.active {
    color: var(--accent);
    background: var(--accent-dim);
}
.navbar-authed {
    display: contents;
}
.navbar-authed-name {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius);
    background: var(--accent-dim);
    color: var(--accent);
}
.navbar-authed-logout {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color var(--transition), background var(--transition);
}
.navbar-authed-logout:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

/* ── Layout ── */
.page {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    flex: 1 0 auto;
}

/* ── Cards ── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(108, 92, 231, 0.2);
}
.card-header {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.card-header::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 12px;
    background: var(--accent);
    border-radius: 2px;
    flex-shrink: 0;
}

/* ── Balance display ── */
.balance-amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -1px;
    line-height: 1;
}
.balance-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Game cards grid ── */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}
.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-sm);
    cursor: default;
}
.game-card:hover {
    border-color: var(--game-accent, var(--accent));
    transform: translateY(-3px);
    box-shadow: 0 8px 28px color-mix(in srgb, var(--game-accent, var(--accent)) 30%, transparent);
}
.game-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.game-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}
.game-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* ── Tables ── */
.table-wrap {
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}
th {
    text-align: left;
    padding: 0.65rem 1rem;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}
td {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    transition: background var(--transition);
}
tbody tr:last-child td {
    border-bottom: none;
}
tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.015);
}
tr:hover td {
    background: rgba(108, 92, 231, 0.07) !important;
}

/* ── Status badges ── */
.badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
}
.badge-won      { background: var(--green-dim);  color: var(--green); border: 1px solid rgba(0, 214, 143, 0.2); }
.badge-lost     { background: var(--red-dim);    color: var(--red);   border: 1px solid rgba(255, 107, 107, 0.2); }
.badge-active   { background: rgba(78, 168, 222, 0.12); color: var(--blue);   border: 1px solid rgba(78, 168, 222, 0.2); }
.badge-pending  { background: rgba(255, 217, 61, 0.12); color: var(--yellow); border: 1px solid rgba(255, 217, 61, 0.2); }
.badge-confirmed { background: var(--green-dim); color: var(--green); border: 1px solid rgba(0, 214, 143, 0.2); }
.badge-expired  { background: var(--red-dim);    color: var(--red);   border: 1px solid rgba(255, 107, 107, 0.2); }

/* ── Forms ── */
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 0.4rem;
    font-weight: 600;
}
input[type="text"],
select {
    width: 100%;
    padding: 0.6rem 0.85rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}
input[type="text"]:focus,
select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}
input[type="text"]::placeholder {
    color: var(--text-muted);
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--accent), #7c6de8);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    box-shadow: 0 2px 12px rgba(108, 92, 231, 0.3);
    letter-spacing: 0.2px;
    text-align: center;
}
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(108, 92, 231, 0.45);
    color: #fff;
    opacity: 0.95;
}
.btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 6px rgba(108, 92, 231, 0.3);
}

/* ── Hero section ── */
.hero {
    text-align: center;
    padding: 4rem 0 2rem;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid rgba(108,92,231,0.25);
    border-radius: 50px;
    padding: 0.3rem 0.9rem;
    margin-bottom: 1.25rem;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 0.85rem;
    line-height: 1.05;
}
.hero h1 span {
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.hero-actions .server-ip {
    margin-top: 0;
}
.btn-outline {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.btn-outline:hover {
    color: var(--text-primary);
    border-color: var(--text-muted);
    background: rgba(255,255,255,0.04);
}

/* ── Feature pills ── */
.features-strip {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}
.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: border-color var(--transition), color var(--transition);
}
.feature-pill:hover {
    border-color: rgba(108,92,231,0.35);
    color: var(--text-primary);
}
.feature-pill-icon {
    font-size: 0.95rem;
    line-height: 1;
}

/* ── Provably fair CTA card ── */
.fair-cta-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.fair-cta-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
}
.fair-cta-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.fair-cta-body p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
@media (max-width: 600px) {
    .fair-cta-card { flex-direction: column; text-align: center; }
}

/* ── Server IP box ── */
.server-ip {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(108, 92, 231, 0.35);
    border-radius: var(--radius);
    font-family: 'SFMono-Regular', 'Consolas', monospace;
    font-size: 1.05rem;
    color: var(--accent);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.1);
    cursor: pointer;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.server-ip:hover {
    box-shadow: 0 0 28px rgba(108, 92, 231, 0.2);
    border-color: rgba(108, 92, 231, 0.6);
}

/* ── Section headings ── */
.section-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
    letter-spacing: -0.2px;
}

/* ── Hash / seed display ── */
.hash-display {
    font-family: 'SFMono-Regular', 'Consolas', monospace;
    font-size: 0.82rem;
    word-break: break-all;
    padding: 0.75rem 1rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--green);
    line-height: 1.5;
}

/* ── Loading ── */
@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}
.loading {
    color: var(--text-muted);
    padding: 2.5rem;
    text-align: center;
    font-size: 0.875rem;
    animation: pulse 1.8s ease-in-out infinite;
}

/* ── Empty state ── */
.empty {
    color: var(--text-muted);
    padding: 2.5rem;
    text-align: center;
    font-style: italic;
    font-size: 0.9rem;
}

/* ── Result box ── */
.result-box {
    margin-top: 1rem;
    padding: 1.1rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent);
    border-radius: var(--radius);
}
.result-box .label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.result-box .value {
    font-family: 'SFMono-Regular', 'Consolas', monospace;
    font-size: 0.82rem;
    word-break: break-all;
    color: var(--green);
}

/* ── Two-column layout ── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 768px) {
    .two-col { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .navbar { padding: 0 1rem; }
    .page { padding: 1rem; }
    .navbar-links { gap: 0; }
    .navbar-links a { padding: 0.4rem 0.5rem; font-size: 0.8rem; }
}

/* ── Game detail page ── */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}
.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.75rem;
    background: var(--bg-input);
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
}
.detail-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}
.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ── Seed display rows ── */
.seed-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.seed-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

/* ── Mine grid ── */
.mine-grid {
    display: grid;
    gap: 5px;
    max-width: 320px;
}
.mine-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 1.2rem;
    border: 1px solid var(--border);
    transition: transform 0.1s;
}
.mine-cell.safe {
    background: var(--bg-input);
}
.mine-cell.revealed {
    background: var(--green-dim);
    border-color: rgba(0, 214, 143, 0.4);
}
.mine-cell.mine {
    background: var(--red-dim);
    border-color: rgba(255, 107, 107, 0.4);
}

/* ── Crash point ── */
.crash-point-display {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}
.crash-red    { color: var(--red);    font-weight: 700; }
.crash-green  { color: var(--green);  font-weight: 700; }
.crash-purple { color: var(--accent); font-weight: 700; }
.crash-high   { color: var(--green);  font-weight: 700; }
.crash-low    { color: var(--red);    font-weight: 700; }

/* ── Fishing result ── */
.fishing-result {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.fishing-tier {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.tier-junk      { background: rgba(92, 96, 120, 0.2);  color: var(--text-muted); border: 1px solid rgba(92,96,120,0.3); }
.tier-common    { background: rgba(78, 168, 222, 0.12); color: var(--blue);       border: 1px solid rgba(78,168,222,0.25); }
.tier-rare      { background: rgba(108, 92, 231, 0.15); color: var(--accent);     border: 1px solid rgba(108,92,231,0.3); }
.tier-treasure  { background: rgba(255, 217, 61, 0.12); color: var(--yellow);     border: 1px solid rgba(255,217,61,0.25); }
.tier-legendary { background: rgba(255, 159, 67, 0.12); color: #ff9f43;           border: 1px solid rgba(255,159,67,0.25); }
.fishing-multiplier {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -0.5px;
}
.fishing-multiplier.fishing-loss {
    color: var(--red);
}

/* ── Clickable table rows ── */
.clickable-row {
    cursor: pointer;
}
.clickable-row:hover td {
    background: rgba(108, 92, 231, 0.1) !important;
}
.clickable-row:active td {
    background: rgba(108, 92, 231, 0.18) !important;
}

/* ── Verify form grid ── */
.verify-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .verify-grid { grid-template-columns: 1fr; }
}

/* ── Small button ── */
.btn-small {
    display: inline-block;
    padding: 0.22rem 0.7rem;
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}
.btn-small:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ── Deposit form ── */
.amount-presets {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}
.preset-btn {
    padding: 0.35rem 0.9rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.preset-btn:hover {
    border-color: var(--accent);
    background: var(--accent-dim);
    color: var(--accent);
}

/* ── Deposit result ── */
.deposit-result {
    margin-top: 1.5rem;
}
.deposit-success {
    padding: 1.25rem;
    background: var(--bg-input);
    border: 1px solid rgba(0, 214, 143, 0.25);
    border-top: 2px solid var(--green);
    border-radius: var(--radius);
}
.deposit-detail {
    margin-bottom: 0.75rem;
}
.deposit-detail .hash-display {
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .seed-row { grid-template-columns: 1fr; }
    .detail-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Provably fair tabs ── */
.fair-tabs {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    padding: 0.25rem;
    background: var(--bg-input);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.fair-tab {
    flex: 1;
    padding: 0.5rem 1rem;
    background: none;
    border: none;
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: color var(--transition), background var(--transition);
}
.fair-tab:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}
.fair-tab.active {
    color: var(--accent);
    background: var(--accent-dim);
}

/* ── HTMX loading indicator ── */
.htmx-indicator { display: none; }
.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator { display: inline-block; }

/* ── Steps ── */
.steps {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-top: 0.5rem;
}
.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.step-num {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(108, 92, 231, 0.35);
}
.step-body {
    flex: 1;
    padding-top: 0.15rem;
}
.step-body > strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
    font-size: 0.925rem;
}
.step-body p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

/* ── Footer ── */
.site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.82rem;
    text-align: center;
    flex-shrink: 0;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
}
.footer-links a {
    color: var(--text-muted);
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--text-secondary);
}
.footer-brand {
    color: var(--text-muted);
}

/* ── Copy flash notification ── */
.copy-flash {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--green);
    color: #0d1117;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 700;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s;
    box-shadow: 0 4px 16px rgba(0, 214, 143, 0.3);
    z-index: 9999;
}
