/* ==========================================================================
   SENA HUB (senahub.xyz) — PURE MONOCHROME DARK THEME (BLACK & GREY ONLY)
   Strictly Obsidian Black, Dark Graphite, Slate Steel & Titanium Chrome
   Zero Yellow / Zero Gold. Clean, elite, and frictionless.
   ========================================================================== */

:root {
    --bg-base: #070709;
    --bg-surface: #0c0d10;
    --bg-card: #121317;
    --bg-card-hover: #181920;
    --bg-element: #191a20;
    --bg-element-hover: #22232c;
    --bg-track: #2a2b35;

    --stroke-dim: #1e1f26;
    --stroke-medium: #2b2c37;
    --stroke-bright: #3f4152;
    --stroke-chrome: rgba(255, 255, 255, 0.22);

    --text-white: #ffffff;
    --text-primary: #ededf2;
    --text-secondary: #9ea0b0;
    --text-muted: #676978;

    --chrome-bright: #f0f1f5;
    --chrome-silver: #c8cad6;
    --chrome-dim: #8b8d9c;
    --status-green: #34d399;
    --status-red: #f87171;
    --accent-discord: #5865F2;

    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 18px;

    --transition: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Typography & Helpers */
.text-center { text-align: center; }
.text-white { color: var(--text-white); }
.text-muted { color: var(--text-muted); }
.text-sub { color: var(--text-secondary); }
.text-chrome { color: var(--chrome-silver); }

.gradient-title {
    background: linear-gradient(180deg, #ffffff 40%, #8b8d9c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(7, 7, 9, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--stroke-dim);
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

/* Transparent Brand Logo — NO background box, clean floating metallic S */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9));
    transition: var(--transition);
}

.brand:hover .brand-logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 14px rgba(255, 255, 255, 0.15));
}

.brand-name {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-white);
}

.brand-name span {
    color: var(--chrome-silver);
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
   BUTTONS (BLACK & GREY / CHROME ONLY)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-sans);
    text-decoration: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 12px;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
}

/* Titanium Primary Button */
.btn-primary {
    background: #e8e9ef;
    color: #0c0d10;
    border: 1px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
}

/* Steel Secondary Button */
.btn-secondary {
    background: var(--bg-element);
    color: var(--text-primary);
    border: 1px solid var(--stroke-medium);
}

.btn-secondary:hover {
    background: var(--bg-element-hover);
    color: var(--text-white);
    border-color: var(--stroke-bright);
}

/* Brushed Titanium VIP Button (Zero Gold) */
.btn-vip {
    background: linear-gradient(180deg, #282933 0%, #16171d 100%);
    color: var(--text-white);
    border: 1px solid var(--stroke-chrome);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.btn-vip:hover {
    background: linear-gradient(180deg, #353644 0%, #1e1f28 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.btn-discord {
    background: var(--accent-discord);
    color: #ffffff;
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-1px);
}

/* ==========================================================================
   HERO / COMMAND HEADER
   ========================================================================== */
.hero {
    padding: 48px 0 36px;
}

.hero-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 32px;
}

.live-indicator-bar {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 6px 16px;
    background: var(--bg-card);
    border: 1px solid var(--stroke-dim);
    border-radius: 999px;
    font-size: 12px;
    font-family: var(--font-mono);
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--status-green);
    font-weight: 700;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--status-green);
    box-shadow: 0 0 8px var(--status-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--text-white);
    margin-bottom: 14px;
}

.hero-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
}

/* Universal Loader Box in Hero */
.loader-strip {
    background: var(--bg-card);
    border: 1px solid var(--stroke-medium);
    border-radius: var(--radius-lg);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 840px;
    margin: 28px auto 44px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.6);
}

.loader-tag {
    font-size: 10px;
    font-family: var(--font-mono);
    font-weight: 700;
    padding: 2px 6px;
    background: var(--bg-element);
    border-radius: 4px;
    color: var(--chrome-silver);
    border: 1px solid var(--stroke-dim);
}

.loader-code-text {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-white);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ==========================================================================
   WORKSPACE GRID: REAL SENALIB GUI + LIVE GLOBAL CHAT
   ========================================================================== */
.workspace-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.95fr;
    gap: 18px;
    margin-bottom: 60px;
}

/* LEFT: REAL SENALIB GUI WINDOW */
.sena-gui-window {
    background: var(--bg-base);
    border: 1px solid var(--stroke-medium);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 520px;
}

.gui-topbar {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--stroke-dim);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gui-topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gui-logo-thumb {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.gui-app-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.gui-app-sub {
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    padding: 2px 6px;
    background: var(--bg-element);
    border-radius: 4px;
}

.gui-topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gui-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    background: var(--bg-card);
    border: 1px solid var(--stroke-dim);
    border-radius: 4px;
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--text-secondary);
}

.gui-body-split {
    display: grid;
    grid-template-columns: 170px 1fr;
    flex-grow: 1;
    min-height: 0;
}

.gui-sidebar {
    background: var(--bg-surface);
    border-right: 1px solid var(--stroke-dim);
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gui-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.gui-tab-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    flex-shrink: 0;
}

.gui-tab-btn:hover {
    color: var(--text-white);
    background: var(--bg-element);
}

.gui-tab-btn.active {
    color: var(--text-white);
    background: var(--bg-element);
    border-left: 2px solid var(--chrome-silver);
}

.gui-content-pane {
    padding: 16px;
    background: var(--bg-base);
    overflow-y: auto;
}

.sena-section-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 4px;
}

.sena-section-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.sena-card {
    background: var(--bg-card);
    border: 1px solid var(--stroke-dim);
    border-radius: var(--radius-sm);
    padding: 10px;
    margin-bottom: 10px;
}

.sena-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: var(--bg-element);
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
}

.sena-row:last-child {
    margin-bottom: 0;
}

.sena-row-info {
    display: flex;
    flex-direction: column;
}

.sena-row-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.sena-row-sub {
    font-size: 10px;
    color: var(--text-muted);
}

/* Sena Toggle (32x17px, knob 12px, track Theme.Track #2a2b35 -> #e8e9ef) */
.sena-toggle {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 17px;
    flex-shrink: 0;
}

.sena-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.sena-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--bg-track);
    border-radius: 9px;
    transition: 0.16s ease-out;
}

.sena-toggle-slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 2.5px;
    bottom: 2.5px;
    background-color: var(--text-secondary);
    border-radius: 50%;
    transition: 0.16s ease-out;
}

.sena-toggle input:checked + .sena-toggle-slider {
    background-color: var(--chrome-bright);
}

.sena-toggle input:checked + .sena-toggle-slider:before {
    transform: translateX(15px);
    background-color: #0c0d10;
}

.gui-bottombar {
    background: var(--bg-surface);
    border-top: 1px solid var(--stroke-dim);
    padding: 6px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* RIGHT: REAL LIVE GLOBAL CHAT STREAM */
.live-chat-window {
    background: var(--bg-card);
    border: 1px solid var(--stroke-medium);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    height: 520px;
    overflow: hidden;
}

.chat-header {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--stroke-dim);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-online-pill {
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--status-green);
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.25);
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 700;
}

.chat-feed-box {
    flex-grow: 1;
    overflow-y: auto;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--bg-base);
}

.chat-entry {
    display: flex;
    gap: 10px;
    padding: 8px 10px;
    background: var(--bg-card);
    border: 1px solid var(--stroke-dim);
    border-radius: var(--radius-sm);
    animation: messageIn 0.2s ease-out;
}

@keyframes messageIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-element);
    border: 1px solid var(--stroke-dim);
    flex-shrink: 0;
    object-fit: cover;
}

.chat-avatar-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-element);
    border: 1px solid var(--stroke-bright);
    color: var(--chrome-bright);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-mono);
}

.chat-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.chat-author-line {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
}

.chat-author-name {
    font-weight: 700;
    color: var(--text-white);
}

.chat-tag-donator {
    color: var(--chrome-bright);
    font-weight: 800;
    font-size: 9px;
    padding: 0 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    border: 1px solid var(--stroke-chrome);
}

.chat-game-tag {
    color: var(--text-muted);
    font-size: 10px;
    font-family: var(--font-mono);
}

.chat-text-line {
    font-size: 12px;
    color: var(--text-primary);
    word-break: break-word;
    line-height: 1.4;
}

.chat-input-bar {
    padding: 10px 14px;
    background: var(--bg-surface);
    border-top: 1px solid var(--stroke-dim);
    display: flex;
    gap: 8px;
}

.chat-input-field {
    flex-grow: 1;
    background: var(--bg-element);
    border: 1px solid var(--stroke-dim);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 12px;
    color: var(--text-white);
    outline: none;
    font-family: var(--font-sans);
}

.chat-input-field:focus {
    border-color: var(--stroke-bright);
}

/* ==========================================================================
   KEY SYSTEM & TIERS (BLACK & GREY ONLY)
   ========================================================================== */
.section {
    padding: 56px 0;
    border-top: 1px solid var(--stroke-dim);
}

.section-head {
    text-align: center;
    margin-bottom: 36px;
}

.section-tag {
    font-size: 11px;
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.section-h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.dual-tier-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.tier-box {
    background: var(--bg-card);
    border: 1px solid var(--stroke-medium);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.tier-box.donator {
    border-color: var(--stroke-chrome);
    background: linear-gradient(180deg, #15161c 0%, #101115 100%);
}

.tier-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #e8e9ef;
    color: #0c0d10;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 999px;
    letter-spacing: 0.5px;
}

.tier-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 6px;
}

.tier-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
}

.tier-price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.tier-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    min-height: 40px;
}

.tier-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    flex-grow: 1;
}

.tier-list li {
    font-size: 13px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tier-list li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ==========================================================================
   SUPPORTED GAMES
   ========================================================================== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.game-item {
    background: var(--bg-card);
    border: 1px solid var(--stroke-medium);
    border-radius: var(--radius-md);
    padding: 22px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.game-item:hover {
    border-color: var(--stroke-bright);
    transform: translateY(-2px);
}

.game-item-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
}

.game-item-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.game-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.game-item-tags span {
    font-size: 10px;
    font-family: var(--font-mono);
    padding: 2px 7px;
    background: var(--bg-element);
    border: 1px solid var(--stroke-dim);
    border-radius: 4px;
    color: var(--text-secondary);
}

/* ==========================================================================
   KEY CHECKER WIDGET
   ========================================================================== */
.checker-widget {
    background: var(--bg-card);
    border: 1px solid var(--stroke-medium);
    border-radius: var(--radius-lg);
    padding: 24px;
    max-width: 720px;
    margin: 40px auto 0;
}

.checker-form {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.checker-input {
    flex-grow: 1;
    background: var(--bg-base);
    border: 1px solid var(--stroke-medium);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-white);
    outline: none;
}

.checker-input:focus {
    border-color: var(--stroke-chrome);
}

.checker-box-result {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    line-height: 1.6;
}

.checker-box-result.valid {
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: #a7f3d0;
}

.checker-box-result.invalid {
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: #fca5a5;
}

.hidden { display: none !important; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    border-top: 1px solid var(--stroke-dim);
    padding: 36px 0;
    background: var(--bg-base);
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--text-white);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 960px) {
    .workspace-grid { grid-template-columns: 1fr; }
    .dual-tier-grid { grid-template-columns: 1fr; }
    .games-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 34px; }
}

@media (max-width: 680px) {
    .nav-links { display: none; }
    .loader-strip { flex-direction: column; align-items: stretch; }
    .gui-body-split { grid-template-columns: 1fr; }
    .gui-sidebar { display: none; }
}

/* ==========================================================================
   WISHUB / ZEROIN STYLE KEY SYSTEM (BLACK & TITANIUM)
   ========================================================================== */
.key-hub-container {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.key-card {
    background: #0d0e12;
    border: 1px solid #1c1d25;
    border-radius: 14px;
    padding: 22px 24px;
    transition: var(--transition);
}

.key-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.key-card-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.key-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
}

.key-badge-pill {
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--chrome-silver);
    background: #181921;
    border: 1px solid #282937;
    padding: 2px 10px;
    border-radius: 999px;
}

.key-badge-dim {
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.btn-pill-white {
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 10px;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-pill-white:hover {
    background: #e4e5ec;
    transform: translateY(-1px);
}

.btn-pill-white:disabled {
    background: #252631;
    color: #636575;
    cursor: not-allowed;
    transform: none;
}

.btn-pill-dark {
    background: #15161d;
    border: 1px solid #282937;
    color: var(--text-primary);
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-pill-dark:hover {
    background: #1e202a;
    border-color: #3f4154;
    color: #ffffff;
}

.key-progress-track {
    width: 100%;
    height: 4px;
    background: #161720;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 12px;
}

.key-progress-fill {
    height: 100%;
    background: #ffffff;
    width: 0%;
    border-radius: 999px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.key-task-prompt {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.key-empty-state {
    text-align: center;
    padding: 38px 16px;
}

.key-empty-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.key-empty-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.key-row-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #111218;
    border: 1px solid #1e202a;
    border-radius: 10px;
    margin-bottom: 8px;
    gap: 12px;
}

.key-row-item:last-child {
    margin-bottom: 0;
}

.key-code-display {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.key-meta-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-secondary);
}

.key-meta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--status-green);
    display: inline-block;
}

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