/* ═══════════════════════════════════════════════════════════
   Kickot Dashboard — Consolidated Stylesheet (kickot.css)
   Merged from: base.css + dashboard.css + inline <style> block
   Cleaned: duplicate selectors merged, dead/unused rules removed
   (see audit report for details)
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800;14..32,900&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ───────────── Base Styles (shared) ───────────── */
/*
   kickot - Base Styles (Shared across all pages)
   Tema: Cyberpunk Dark Neon (Violet & Green)
   Boje: #8B5CF6 (Ljubičasta), #53FC18 (Neon zelena)
*/

/* ═══════════════════════════════════════════════════════════
   CSS Variables (Shared)
   ═══════════════════════════════════════════════════════════ */

:root {
    /* Primary Colors */
    --color-violet: #8B5CF6;
    --color-violet-glow: rgba(139, 92, 246, 0.5);
    --color-violet-dark: #6D28D9;
    --color-green: #53FC18;
    --color-green-glow: rgba(83, 252, 24, 0.5);
    --color-green-dark: #3FBA0E;
    --kick-green: #53FC18;
    --kick-green-dim: rgba(83, 252, 24, 0.12);
    --app-primary: #8B5CF6;
    --app-primary-dim: rgba(139, 92, 246, 0.12);
    --app-gradient: linear-gradient(90deg, #8B5CF6 0%, #6D28D9 100%);

    /* Background Colors */
    --color-bg-dark: #06040A;
    --color-bg-panel: #0E0A1D;
    --color-bg-card: #130E26;
    --color-bg-input: #0A0614;

    /* Border Colors */
    --color-border: rgba(139, 92, 246, 0.15);
    --color-border-hover: rgba(83, 252, 24, 0.35);

    /* Text Colors */
    --color-text: #F8FAFC;
    --color-text-muted: #94A3B8;
    --color-text-dark: #06040A;

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-violet: 0 0 25px rgba(139, 92, 246, 0.3);
    --shadow-green: 0 0 25px rgba(83, 252, 24, 0.3);
    --shadow-glass: 0 8px 32px 0 rgba(4, 3, 8, 0.5);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ═══════════════════════════════════════════════════════════
   Reset & Base Styles
   ═══════════════════════════════════════════════════════════ */

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

html {
    font-size: 16px;
    overflow-x: hidden;
    scroll-behavior: auto;
}


/* ═══════════════════════════════════════════════════════════
   Typography
   ═══════════════════════════════════════════════════════════ */

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* ═══════════════════════════════════════════════════════════
   Custom Scrollbar
   ═══════════════════════════════════════════════════════════ */

* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-violet) transparent;
}

/* WebKit pregledači (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-violet), var(--color-green));
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-green);
}

::selection {
    background: rgba(139, 92, 246, 0.2);
    color: var(--color-text);
}

/* ═══════════════════════════════════════════════════════════
   Shared Button Styles
   ═══════════════════════════════════════════════════════════ */


.btn:focus,
.btn:active,
.btn:focus-visible {
    outline: none !important;
    outline-offset: 0 !important;
}


.btn-primary:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4), 0 0 15px rgba(139, 92, 246, 0.2);
}

.btn-primary:active {
    transform: translateY(0) scale(0.99);
}

.btn-secondary {
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--color-text);
    border-color: rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background-color: var(--color-violet);
    color: var(--color-text);
    border-color: var(--color-violet);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5), 0 0 20px rgba(139, 92, 246, 0.3);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
}


.btn-danger {
    background: rgba(239, 68, 68, 0.08);
    color: #FCA5A5;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-danger:hover {
    background: rgba(239, 68, 68, 0.15);
}


.btn-sm {
    padding: 0.4375rem 0.875rem;
    font-size: 0.8125rem;
}


.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ═══════════════════════════════════════════════════════════
   Shared Badge Styles
   ═══════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════
   Shared Dropdown Styles
   ═══════════════════════════════════════════════════════════ */

.dropdown-item {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    border-left: 3px solid transparent;
    color: var(--color-text-muted);
    padding: 10px 14px 10px 12px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color 0.2s, padding-left 0.2s, background-color 0.2s, color 0.2s;
}

.dropdown-item:hover {
    color: var(--color-text);
    background-color: rgba(83, 252, 24, 0.04);
    border-left-color: var(--color-green);
    padding-left: 18px;
}

.dropdown-item.danger {
    color: #FCA5A5;
}

.dropdown-item.danger:hover {
    background-color: rgba(239, 68, 68, 0.05);
    border-left-color: #EF4444;
    padding-left: 18px;
    color: #FCA5A5;
}

.dropdown-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.06);
    margin: 6px 8px;
}

/* ═══════════════════════════════════════════════════════════
   Shared Utility Classes
   ═══════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════
   Shared Animations
   ═══════════════════════════════════════════════════════════ */

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

/* ═══════════════════════════════════════════════════════════
   Language Switching
   ═══════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════
   Input & Form Elements
   ═══════════════════════════════════════════════════════════ */

input,
textarea,
select,
button {
    font-family: inherit;
}

button {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

button:focus {
    outline: none;
}

button:focus-visible {
    outline: 2px solid rgba(139, 92, 246, 0.55);
    outline-offset: 2px;
}

/* ───────────── Dashboard-Specific Styles ───────────── */
/* ═══════════════════════════════════════════════════════════
   KickOt Dashboard — CSS
   Premium dark sidebar layout
   ═══════════════════════════════════════════════════════════ */


/* ── Dashboard Specific Variables ── */
:root {
  --bg-base: #07070D;
  --bg-surface: #0D0D17;
  --bg-elevated: #12121E;
  --bg-card: #171728;
  --bg-sidebar: #0A0A16;
  --bg-overlay: rgba(7, 7, 13, 0.95);

  --kick-green: #53FC18;
  --kick-green-dim: rgba(83, 252, 24, 0.1);
  --app-primary: #8B5CF6;
  --app-primary-dim: rgba(139, 92, 246, 0.1);
  --app-secondary: #6366F1;
  --app-gradient: linear-gradient(90deg, #8B5CF6 0%, #6366F1 60%, #4F46E5 100%);

  --text-primary: #FFFFFF;
  --text-secondary: #D1D1EB;
  --text-muted: #9393B5;

  --border-subtle: rgba(255, 255, 255, 0.04);
  --border-normal: rgba(139, 92, 246, 0.15);
  --border-accent: rgba(139, 92, 246, 0.4);

  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.7);
  --shadow-purple: 0 4px 32px rgba(139, 92, 246, 0.18);
  --shadow-green: 0 4px 32px rgba(83, 252, 24, 0.15);

  --sidebar-w: 240px;
  --topbar-h: 56px;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.12s var(--ease-smooth);
  --transition-base: 0.22s var(--ease-smooth);
}

/* ── Dashboard Specific Body Styles ── */
body {
  background-color: var(--color-bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  background: var(--bg-base);
  overflow: hidden;
  height: 100vh;
}

/* ── Auth Gate ── */
.auth-gate {
  position: fixed;
  inset: 0;
  background: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease-out;
}

.auth-gate.fade-out {
  opacity: 0;
  pointer-events: none;
}

.auth-gate-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.auth-gate-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.auth-gate-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--app-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.auth-gate-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border-normal);
  border-top-color: var(--app-primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.auth-gate-msg {
  font-size: 0.9rem;
  color: var(--text-muted);
}


/* ── App Layout ── */
.app {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  height: 100vh;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

.app.fade-in {
  opacity: 1;
}

/* ══════════ SIDEBAR ══════════ */
.sidebar {
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  transition: width var(--transition-base);
  position: relative;
  z-index: 50;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  flex-shrink: 0;
  gap: 8px;
}

.sidebar-header-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  cursor: pointer;
}

.sidebar-header-btn:hover {
  background: var(--app-primary-dim);
  color: var(--text-primary);
  border-color: var(--border-normal);
}

.sidebar-header-btn.back-btn:hover {
  color: var(--kick-green);
  border-color: rgba(83, 252, 24, 0.35);
  background: rgba(83, 252, 24, 0.08);
  box-shadow: 0 0 12px rgba(83, 252, 24, 0.15);
}

.sidebar-header-btn.coffee-btn:hover {
  color: #F59E0B;
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.08);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.15);
}

.sidebar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.sidebar-logo .logo-img {
  height: 40px;
  max-height: 42px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.sidebar-logo:hover .logo-img {
  transform: scale(1.05);
}

/* ── Channel Switcher ── */
.channel-switcher {
  padding: 0.875rem 0.875rem 0.5rem;
  flex-shrink: 0;
  position: relative;
}

.channel-current {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid var(--border-subtle);
}

.channel-current:hover,
.channel-switcher:has(.channel-menu.open) .channel-current {
  background: var(--app-primary-dim);
  border-color: var(--border-normal);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.15);
}

.channel-switcher:has(.channel-menu.open) .channel-chevron {
  transform: rotate(180deg);
  color: var(--app-primary);
}

.channel-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--app-gradient);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}

.channel-info {
  flex: 1;
  overflow: hidden;
}

.channel-name {
  font-size: 0.875rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.channel-status {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-on {
  background: var(--kick-green);
}

.status-off {
  background: var(--text-muted);
}

.channel-status span:last-child {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.channel-chevron {
  color: var(--text-muted);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.channel-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0.75rem;
  right: 0.75rem;
  background: rgba(13, 13, 23, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-normal);
  border-radius: var(--radius-lg);
  padding: 0.625rem;
  z-index: 200;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(139, 92, 246, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.96);
  transition: all var(--transition-base);
}

.channel-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.channel-group-header {
  padding: 6px 10px 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  margin-bottom: 4px;
}

.channel-empty-text {
  padding: 6px 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.channel-option {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid transparent;
}

.channel-option:hover {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.15);
  color: var(--text-primary);
  transform: translateX(2px);
}

.channel-option.selected {
  background: var(--app-primary-dim);
  border-color: var(--border-accent);
  color: #fff;
  font-weight: 700;
}

.channel-option .ch-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.channel-option .ch-check {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kick-green);
  flex-shrink: 0;
}

.channel-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(83, 252, 24, 0.06);
  border: 1px dashed rgba(83, 252, 24, 0.3);
  color: var(--kick-green);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-top: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.channel-add-btn:hover {
  background: rgba(83, 252, 24, 0.14);
  border-color: var(--kick-green);
  box-shadow: 0 4px 12px rgba(83, 252, 24, 0.15);
  transform: translateY(-1px);
}

/* ── Sidebar Nav ── */
.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-section-label {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 0.625rem 0.375rem;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  background: none;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
  transition: var(--transition-fast);
  position: relative;
  letter-spacing: -0.01em;
}

.nav-item svg {
  flex-shrink: 0;
}

.nav-item:hover {
  background: var(--app-primary-dim);
  color: var(--text-secondary);
}

.nav-item.active {
  background: var(--app-primary-dim);
  color: var(--text-primary);
  border: 1px solid var(--border-normal);
}

.nav-item.active svg {
  color: var(--app-primary);
}


.user-menu-sm {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0.5rem;
  right: 0.5rem;
  background: rgba(14, 10, 29, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: var(--radius-lg);
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 200;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.25);
}

.user-menu-sm.open {
  opacity: 1;
  pointer-events: all;
  transform: none;
}

.user-menu-sm .dropdown-item {
  padding: 8px 12px 8px 10px;
  font-size: 0.85rem;
  gap: 8px;
}

.user-menu-sm .dropdown-item:hover {
  padding-left: 14px;
}

.user-menu-sm .dropdown-item.danger:hover {
  padding-left: 14px;
}

.user-menu-sm .dropdown-divider {
  margin: 4px 6px;
}
.sidebar-footer {
  padding: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.user-pill {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.user-pill:hover,
.user-pill:has(.user-menu-sm.open) {
  background: var(--app-primary-dim);
  box-shadow: rgba(139, 92, 246, 0.15) 0px 0px 10px;
}

.user-avatar-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--app-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.user-info {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.user-display-name {
  font-size: 0.85rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.user-plan {
  margin-top: 3px;
  display: flex;
  align-items: center;
}

.sidebar-upgrade-btn {
  width: 100% !important;
  box-sizing: border-box !important;
  justify-content: center !important;
  padding: 8px 12px !important;
  margin-left: 0 !important;
  font-size: 0.75rem !important;
  border-radius: 10px !important;
}


/* ══════════ MAIN ══════════ */
.main {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

/* ── Topbar ── */


.topbar-left {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}


.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.bc-sep {
  color: var(--text-muted);
  opacity: 0.5;
}

#breadcrumbPage {
  color: var(--text-primary);
  font-weight: 600;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.bot-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.bot-toggle-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
}

.topbar-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}


/* ── Toggle Switch ── */
.toggle-switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.toggle-switch input {
  display: none;
}

.toggle-track {
  width: 36px;
  height: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.toggle-track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #94a3b8;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Prilagođeno rastezanje za manju dimenziju */
.toggle-switch:active .toggle-track::after {
  width: 17px;
}

.toggle-switch input:checked + .toggle-track {
  background: rgba(0, 255, 136, 0.08);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: inset 0 2px 4px rgba(0, 255, 136, 0.05);
}

.toggle-switch input:checked + .toggle-track::after {
  left: calc(100% - 16px);
  background: #00ff88;
  box-shadow: 0 0 10px #00ff88, 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ══════════ PANELS ══════════ */
.main, .panels-wrap {
  background-color: var(--bg-base) !important;
}

.panels-wrap {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 2.5rem 1.5rem;
  background-color: var(--bg-base);
  scroll-behavior: smooth;
  min-height: 0;
}

.panel {
  display: none;
  background-color: transparent;
}

.panel.active {
  display: block;
  animation: panel-fade-in 0.22s var(--ease-smooth) forwards;
}

@keyframes panel-fade-in {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Topbar Interactive Elements */
.topbar-btn:hover {
  border-color: rgba(139, 92, 246, 0.35) !important;
  color: #FFFFFF !important;
  background: rgba(139, 92, 246, 0.12) !important;
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}

.panel-title {
  font-size: 1.625rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.panel-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.panel-actions {
  display: flex;
  gap: 0.625rem;
  flex-shrink: 0;
}

/* ── Dashboard Specific Button Overrides ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  outline: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-primary {
  background-color: var(--color-green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(109, 40, 217, 0.35);
  background: var(--app-gradient);
  border: none;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.5), 0 8px 32px rgba(139, 92, 246, 0.3);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-normal);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--border-accent);
  background: var(--app-primary-dim);
}

.btn-text {
  background: none;
  border: none;
  color: var(--app-primary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0;
}

.btn-text:hover {
  color: #C4B5FD;
}

.btn-danger {
  background: rgba(239, 68, 68, 0.12) !important;
  color: #F87171 !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.15) !important;
}

.btn-danger:hover:not(:disabled) {
  background: rgba(239, 68, 68, 0.22) !important;
  border-color: rgba(239, 68, 68, 0.5) !important;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.3) !important;
  transform: translateY(-1px) !important;
}

.btn-sm,
.btn.btn-sm {
  padding: 0.375rem 0.875rem !important;
  font-size: 0.8125rem !important;
  height: 34px !important;
  min-height: 34px !important;
  line-height: 1.3 !important;
  border-radius: var(--radius-full) !important;
}

/* ── Stats Grid ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}

.stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.375rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
  transition: var(--transition-base);
}

.stat-card:hover {
  border-color: var(--border-normal);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.stat-purple {
  background: var(--app-primary-dim);
}

.stat-green {
  background: var(--kick-green-dim);
}

.stat-blue {
  background: rgba(99, 102, 241, 0.1);
}

.stat-pink {
  background: rgba(244, 114, 182, 0.1);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* ── Overview Grid ── */


.ov-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.125rem;
}

.ov-card-head h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ── Mini List ── */
.mini-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mini-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.625rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.mini-item:hover {
  background: var(--app-primary-dim);
}


/* ── Module Status Badges ── */
.module-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition-fast);
  user-select: none;
}

.module-status-badge.active {
  background: rgba(83, 252, 24, 0.08);
  border: 1px solid rgba(83, 252, 24, 0.22);
  color: var(--kick-green);
  box-shadow: 0 2px 8px rgba(83, 252, 24, 0.05);
}

.module-status-badge.active:hover {
  background: rgba(83, 252, 24, 0.14);
  border-color: rgba(83, 252, 24, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(83, 252, 24, 0.12);
}

.module-status-badge.inactive {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #F87171;
}

.module-status-badge.inactive:hover {
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(239, 68, 68, 0.35);
  transform: translateY(-1px);
}


.mini-username {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.mini-empty {
  text-align: center;
  padding: 1.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ── Tables ── */
.table-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
}

.search-wrap {
  position: relative;
  flex: 1;
  max-width: 320px;
}

.search-icon {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 0.625rem 0.75rem 0.625rem 2.375rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition-fast);
}

.search-input:focus {
  border-color: var(--border-accent);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.08);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.table-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.table-wrap {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  overflow-x: auto;
  margin-bottom: 2rem;
  max-width: 100%;
}


.data-table thead tr {
  border-bottom: 1px solid var(--border-subtle);
}

.data-table th {
  padding: 0.75rem 1.125rem;
  text-align: left;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.data-table td {
  padding: 0.75rem 1.125rem;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
  color: var(--text-secondary);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover td {
  background: rgba(139, 92, 246, 0.04);
}

.table-empty {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  font-style: italic;
}

.td-cmd {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--kick-green);
  background: var(--kick-green-dim);
  border: 1px solid rgba(83, 252, 24, 0.12);
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(83, 252, 24, 0.03);
  transition: all var(--transition-fast);
}

.td-cmd:hover {
  background: rgba(83, 252, 24, 0.16);
  border-color: rgba(83, 252, 24, 0.3);
  transform: translateY(-1px);
}

.td-response {
  display: block;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.5;
}

.td-num {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: var(--text-primary);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.2rem 0.625rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.actions-cell {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.action-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all var(--transition-fast);
}

.action-btn:hover {
  background: var(--app-primary-dim);
  border-color: var(--app-primary);
  color: var(--text-primary);
  transform: scale(1.05);
}

.action-btn.danger:hover {
  border-color: rgba(239, 68, 68, 0.35);
  color: #FCA5A5;
  background: rgba(239, 68, 68, 0.08);
}

/* ── Leaderboard Podium ── */


.podium-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.podium-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  border: 3px solid transparent;
}

.user-cell__avatar {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.mini-avatar-wrap {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  min-height: 26px !important;
  max-width: 26px !important;
  max-height: 26px !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-sizing: border-box !important;
  clip-path: circle(50% at 50% 50%) !important;
}

.mini-avatar-wrap.fallback {
  background: linear-gradient(135deg, #8B5CF6, #6D28D9) !important;
}

.mini-avatar-wrap img, .mini-avatar-img {
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  flex-shrink: 0 !important;
}

.podium-1 .podium-avatar {
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  border-color: #FBBF24;
  width: 64px;
  height: 64px;
}

.podium-2 .podium-avatar {
  background: linear-gradient(135deg, #94A3B8, #64748B);
  border-color: #94A3B8;
  color: #fff;
}

.podium-3 .podium-avatar {
  background: linear-gradient(135deg, #92400E, #78350F);
  border-color: #92400E;
  color: #FDE68A;
}

.podium-name {
  font-size: 0.8125rem;
  font-weight: 700;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.podium-points {
  font-size: 1rem;
  font-weight: 900;
  font-family: 'JetBrains Mono', monospace;
}

.podium-1 .podium-points {
  font-size: 1.25rem;
  color: #FBBF24;
}

.podium-2 .podium-points {
  color: #94A3B8;
}

.podium-3 .podium-points {
  color: #92400E;
}

.podium-base {
  padding: 0.375rem 1rem;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  text-align: center;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.podium-1 .podium-base {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(245, 158, 11, 0.1));
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: #FBBF24;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: none;
}

.podium-2 .podium-base {
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #94A3B8;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: none;
}

.podium-3 .podium-base {
  background: rgba(146, 64, 14, 0.15);
  border: 1px solid rgba(146, 64, 14, 0.25);
  color: #92400E;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: none;
}

/* ── Config ── */
.config-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.config-section {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.625rem;
}

.config-section-title {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.375rem;
}

.config-fields {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.config-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.config-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.config-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.form-input {
  padding: 0.75rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--border-accent);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.06);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 72px;
  line-height: 1.6;
  font-size: 0.875rem;
}

.select-input {
  padding: 0.5rem 0.875rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-normal);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.select-input:hover {
  border-color: var(--border-accent);
}

.select-input-sm {
  padding: 0.25rem 0.625rem;
  font-size: 0.8rem;
}

.select-input option,
select option {
  background-color: var(--bg-elevated);
  color: var(--text-primary);
  padding: 6px 12px;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.toggle-item:last-child {
  border-bottom: none;
}

.toggle-name {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.toggle-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.toggle-row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

/* ── Builtin Commands ── */


.builtin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.875rem;
}


.builtin-cmd {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--kick-green);
  flex-shrink: 0;
  width: auto;
}

.builtin-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Info Banner ── */
.info-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid var(--border-normal);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.info-banner svg {
  flex-shrink: 0;
  color: var(--app-primary);
  margin-top: 2px;
}

/* ── Command Input ── */
.cmd-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.cmd-prefix-badge {
  position: absolute;
  left: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--kick-green);
  pointer-events: none;
}

.cmd-input-wrap .form-input {
  padding-left: 2rem;
}

.char-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 0.25rem;
}


/* ── Modals ── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#confirmModal {
  z-index: 1100;
}

#upgradeModal {
  z-index: 1200;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.modal-box {
  background: rgba(22, 22, 33, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: scale(0.96) translateY(12px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.modal-backdrop.open .modal-box {
  transform: scale(1) translateY(0);
}


.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem 0.75rem 1.75rem;
}

.modal-head h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}


.modal-body {
  padding: 0.75rem 1.75rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.modal-foot {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1rem 1.75rem 1.75rem 1.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
}

.form-alert {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  line-height: 1.5;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #FCA5A5;
}

/* ── Toast Notifications (KickALL Toast System) ── */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(18, 18, 26, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0 solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  max-width: calc(100vw - 32px);
  width: max-content;
  white-space: nowrap;
  pointer-events: all;
  position: relative;
  
  /* Initial hidden collapsed state */
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  max-height: 0;
  padding: 0 18px;
  margin: 0;
  overflow: hidden;
  
  /* Smooth exit transitions */
  transition: 
    opacity 0.2s ease-in, 
    transform 0.2s ease-in, 
    max-height 0.25s ease, 
    padding 0.25s ease, 
    margin 0.25s ease,
    border-width 0.25s ease;
}

/* Podrška za JS 'show' klasu i tvoju 'toast-show' klasu */
.toast.show,
.toast.toast-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  max-height: 160px;
  padding: 10px 18px;
  margin: 4px 0;
  border-width: 1px;
  
  /* Physics spring entry transitions */
  transition: 
    opacity 0.35s ease-out, 
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), 
    max-height 0.3s ease-out, 
    padding 0.3s ease-out, 
    margin 0.3s ease-out,
    border-width 0.3s ease-out;
}

/* Unutrašnji raspored elemenata iz JavaScripta */
.toast-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

/* Tipovi notifikacija za obe varijante klasa */
.toast.success, .toast-success {
  border-color: rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.08);
  color: #10B981;
}

.toast.error, .toast-error {
  border-color: rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.08);
  color: #EF4444;
}

.toast.warning, .toast-warning {
  border-color: rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.08);
  color: #F59E0B;
}

.toast.info, .toast-info {
  border-color: rgba(59, 130, 246, 0.25);
  background: rgba(59, 130, 246, 0.08);
  color: #3B82F6;
}

.toast-icon, .toast-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-message, .toast-msg {
  font-size: 0.875rem;
  color: #ffffff;
  white-space: nowrap;
  word-break: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toast-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 0.5rem;
  padding: 0;
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s;
}

.toast-close:hover {
  color: #ffffff;
}

.toast.hide {
  opacity: 0 !important;
  transform: translateY(20px) scale(0.85) !important;
  max-height: 0 !important;
  padding: 0 18px !important;
  margin: 0 !important;
  border-width: 0 !important;
  pointer-events: none !important;
}

/* Traka napretka pri dnu poruke */
.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: currentColor;
  opacity: 0.4;
  animation: toast-progress linear forwards;
}

@keyframes toast-progress {
  from { width: 100%; }
  to { width: 0%; }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }


}

@media (max-width: 768px) {
  .app {
    grid-template-columns: 0 1fr;
  }

  .sidebar {
    position: fixed;
    left: 0;
    z-index: 200;
    transform: translateX(-100%);
    transition: transform var(--transition-base);
  }

  .sidebar.mobile-open {
    transform: translateX(0);
    width: var(--sidebar-w);
  }


  .panels-wrap {
    padding: 1.25rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Command Badges & Pills ── */


.cmd-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  align-items: center;
}

.cmd-badge-list .td-cmd {
  display: inline-block;
  padding: 0.125rem 0.375rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

/* ── Fixed Table Layout & Word Wrapping to Prevent Scroll ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  table-layout: fixed;
}

.data-table th,
.data-table td {
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

/* Postavljanje prelamanja za odgovor komande */
.data-table td .td-response {
  max-width: 100%;
  display: block;
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
  color: var(--text-secondary);
}

/* Kolona sa komandama (aliasi) */
.data-table td .cmd-badge-list {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

/* Prilagođavanje širina kolona u tabeli sa komandama */
#commandsTable th:nth-child(1),
#commandsTable td:nth-child(1) {
  width: 18%; /* Komanda */
}

#commandsTable th:nth-child(2),
#commandsTable td:nth-child(2) {
  width: 34%; /* Odgovor (najšira kolona koja se prelama) */
  word-break: break-word;
}

#commandsTable th:nth-child(3),
#commandsTable td:nth-child(3) {
  width: 12%; /* Dozvola */
}

#commandsTable th:nth-child(4),
#commandsTable td:nth-child(4) {
  width: 10%; /* Cooldown */
}

#commandsTable th:nth-child(5),
#commandsTable td:nth-child(5) {
  width: 8%; /* Korišćeno */
}

#commandsTable th:nth-child(6),
#commandsTable td:nth-child(6) {
  width: 10%; /* Status */
  overflow: visible;
  text-overflow: clip;
}

#commandsTable th:nth-child(7),
#commandsTable td:nth-child(7) {
  width: 8%; /* Akcije */
  overflow: visible;
  text-overflow: clip;
}

/* Sortabilna zaglavlja u tabelama */


.sortable-th:hover .sort-icon {
  opacity: 0.9;
}

.sortable-th.active-sort .sort-icon {
  opacity: 1;
  color: var(--app-primary);
  font-weight: bold;
}

/* Settings Modal Avatar styles */
.settings-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.avatar-preview-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--app-primary);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    margin-bottom: 10px;
    background: rgba(6, 4, 10, 0.6);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.2);
    transition: all 0.2s;
}

.avatar-preview-container:hover {
    border-color: var(--kick-green);
    box-shadow: 0 0 15px rgba(83, 252, 24, 0.3);
}

.avatar-preview-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
}

.avatar-preview-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6, 4, 10, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 2;
}

.avatar-preview-container:hover .avatar-preview-overlay {
    opacity: 1;
}

.avatar-preview-overlay svg {
    color: var(--kick-green);
    filter: drop-shadow(0 0 5px var(--kick-green));
}


/* Tab selectors inside Settings Modal */
.settings-tab.active {
  background: var(--app-primary, #8B5CF6) !important;
  color: #fff !important;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.3) !important;
}

/* Channel Manager styles inside Modal */
.modal-channel-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s;
  margin-bottom: 6px;
}

.modal-channel-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(139, 92, 246, 0.15);
}

.modal-channel-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-channel-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--app-primary, #8B5CF6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.modal-channel-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.85rem;
}

.modal-ch-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 100px;
  text-transform: uppercase;
}

.modal-ch-badge.primary {
  background: rgba(83, 252, 24, 0.1);
  color: var(--kick-green);
  border: 1px solid rgba(83, 252, 24, 0.2);
}

/* ── Marriage Flow ── */
.marriage-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(139, 92, 246, 0.03);
  border: 1px solid var(--border-normal);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.flow-step {
  flex: 1;
  min-width: 200px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.flow-step:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}

.flow-step-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--app-primary-dim);
  border-radius: var(--radius-sm);
  color: var(--app-primary);
  border: 1px solid var(--border-normal);
}

.flow-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.flow-step-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.flow-step-content p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.flow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border-accent);
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .marriage-flow {
    flex-direction: column;
    align-items: stretch;
  }
  .flow-connector {
    transform: rotate(90deg);
    margin: 0.25rem 0;
  }
}

/* Standard i Firefox */
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* Chrome, Safari, Edge i Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}


/* ── Built-in Commands Category Tabs & Card Enhancements ── */
.btn-category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-category:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-category.active {
  background: var(--app-primary-dim);
  color: var(--app-primary);
  border-color: var(--app-primary-dim);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(139, 92, 246, 0.15);
}

.builtin-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  min-height: 92px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease !important;
}

.builtin-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.35) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(139, 92, 246, 0.1) !important;
}

/* ── Stat Indigo (nedostajuća klasa) ── */
.stat-indigo {
  background: rgba(99, 102, 241, 0.1);
}

/* ── Pagination Bar ── */
.pagination-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 10px;
}

.pagination-bar__left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 120px;
}

.pagination-bar__center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 220px;
}

.pagination-bar__right {
  flex: 1;
  min-width: 120px;
}

.pagination-bar__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.pagination-bar__info {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  min-width: 100px;
  text-align: center;
  white-space: nowrap;
}

.pagination-bar__btn {
  padding: 5px 12px;
  font-size: 0.8rem;
  border-radius: 8px;
}

/* ── Skeleton Loader ── */


/* ── Empty State ── */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  gap: 1rem;
  text-align: center;
}

.empty-state__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--app-primary-dim);
  border: 1px solid var(--border-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--app-primary);
  opacity: 0.7;
}

.empty-state__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: -0.02em;
}

.empty-state__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.6;
}

/* ── Alert Card (Chat Alertovi uniformni stil) ── */
.alert-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.alert-card:hover {
  border-color: var(--border-normal);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.alert-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.alert-card__title {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.alert-card__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: block;
}

.alert-card__extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}

.alert-card__extra-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Announces Interval Card ── */
.announces-interval-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition-fast);
}

.announces-interval-card:hover {
  border-color: var(--border-normal);
}

.announces-interval-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.announces-interval-card__title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}


/* ── Bot Status Row ── */
.bot-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 16px;
}

.bot-status-row__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.bot-status-row__value {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}


/* ── Responsive za pagination-bar ── */
@media (max-width: 600px) {
  .pagination-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .pagination-bar__left,
  .pagination-bar__center,
  .pagination-bar__right {
    flex: none;
    width: 100%;
    justify-content: center;
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }


}

/* ── Leaderboard Podium Enhanced ── */
.lb-podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  min-height: 180px;
}


/* ── Input Validation State ── */
.form-input.input-error {
  border-color: rgba(239, 68, 68, 0.6) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08) !important;
}

.form-input.input-success {
  border-color: rgba(83, 252, 24, 0.4) !important;
  box-shadow: 0 0 0 3px rgba(83, 252, 24, 0.06) !important;
}


.field-error-msg.visible {
  display: block;
}

/* ── Leaderboard Tabs (pill style) ── */
.lb-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 1.5rem;
  background: var(--bg-surface);
  padding: 6px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  max-width: fit-content;
}

.lb-tab-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: none;
  color: var(--text-muted);
}

.lb-tab-btn:hover {
  background: var(--app-primary-dim);
  color: var(--text-secondary);
}

.lb-tab-btn.active {
  background: var(--app-gradient);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.3), var(--shadow-purple);
}

/* ── Autosave indicator ── */
.autosave-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(83, 252, 24, 0.04);
  border: 1px solid rgba(83, 252, 24, 0.2);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  color: var(--kick-green);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ── Module status badges section ── */
.module-badges-section {
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.module-badges-label {
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 6px;
  margin-bottom: 10px;
}

.module-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}


/* ── Panel header action wrap ── */
.panel-header-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.panel-header-toggle__label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════
   REFAKTORING PATCH — Layout, Modali, Moduli, Scroll
   ═══════════════════════════════════════════════════ */

/* ── Overview Grid — jednake visine kartica ── */


.ov-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.375rem;
  display: flex;
  flex-direction: column;
}

/* Live feed unutar ov-card treba da popunjava ostatak prostora */
#botLiveFeed {
  flex: 1;
  min-height: 180px;
  max-height: 340px;
  overflow-y: auto;
}

/* ── Topbar unapred ── */
.topbar {
  height: var(--topbar-h);
  background: rgba(10, 10, 22, 0.85);
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  gap: 1rem;
  flex-shrink: 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.2);
}


.topbar-btn {
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

/* ── Module badge — loading (spinner) stanje ── */
.module-status-badge.loading {
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--app-primary);
  pointer-events: none;
  opacity: 0.75;
}

.module-status-badge.loading::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1.5px solid rgba(139, 92, 246, 0.4);
  border-top-color: var(--app-primary);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: 4px;
  flex-shrink: 0;
}

/* ── Modal — close button rotate animacija ── */
.modal-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.1) !important;
  color: #F87171 !important;
  border-color: rgba(239, 68, 68, 0.25) !important;
  transform: rotate(90deg) scale(1.1);
}

/* Modal zatvaranje animacija */
.modal-backdrop.closing .modal-box {
  transform: scale(0.95) translateY(8px);
  opacity: 0;
  transition: transform 0.2s var(--ease-smooth), opacity 0.2s ease;
}

.modal-backdrop.closing {
  opacity: 0;
  pointer-events: none !important;
  transition: opacity 0.22s ease;
}

/* Modal koji nije otvoren nikad ne blokira klikove */
.modal-backdrop:not(.open) {
  pointer-events: none !important;
}

/* ── Sortable table headers ── */
.sortable-th {
  cursor: pointer;
  user-select: none;
  transition: color 0.15s ease, background-color 0.15s ease;
  position: relative;
  white-space: nowrap;
}

.sortable-th:hover {
  color: var(--text-primary);
  background: rgba(139, 92, 246, 0.04);
}

.sortable-th .sort-icon {
  display: inline-flex;
  margin-left: 5px;
  font-size: 0.72rem;
  opacity: 0.35;
  transition: opacity 0.15s ease, transform 0.15s ease;
  flex-direction: column;
  vertical-align: middle;
  gap: 2px;
}

.sortable-th.sort-asc .sort-icon,
.sortable-th.sort-desc .sort-icon {
  opacity: 1;
  color: var(--app-primary);
}

/* ── Scrollable queue list ── */
.song-queue-scroll {
  overflow-y: auto;
  max-height: 380px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 6px;
  scrollbar-gutter: stable;
}

.song-queue-scroll::-webkit-scrollbar {
  width: 5px;
}

.song-queue-scroll::-webkit-scrollbar-thumb {
  background: rgba(29, 185, 84, 0.4);
  border-radius: 4px;
}

/* ── Scroll indicator za live feed ── */
.live-feed-scroll-hint {
  position: absolute;
  bottom: 10px;
  right: 14px;
  background: rgba(139, 92, 246, 0.85);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  z-index: 5;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition-fast);
  pointer-events: all;
  animation: slide-up 0.25s var(--ease-expo) forwards;
}

.live-feed-scroll-hint:hover {
  background: var(--app-primary);
  transform: translateY(-1px);
}

/* ── Live feed container (relative za hint button) ── */
.live-feed-wrap {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}


/* ── Economy Subpanel & Layout Enhancements ── */
.eco-subpanel {
  animation: panel-fade-in 0.22s var(--ease-smooth) forwards;
}


/* ── Module Disabled State Overrides ── */
.panel.module-disabled-panel {
  position: relative !important;
  overflow: hidden !important;
}

.panel.module-disabled-panel > *:not(.module-disabled-overlay) {
  display: none !important;
}

.module-disabled-overlay {
  width: 100%;
  min-height: calc(100vh - 140px);
  background: #0a0614;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-sizing: border-box;
}

/* ══════════════════════════════════════════════════════════
   PM-MODAL — Premium Modal Design System
   Consistent look for: Predlozi komandu, Pomoc, Docs, Referral
   ══════════════════════════════════════════════════════════ */

.pm-modal {
  background: radial-gradient(circle at top center, rgba(30, 20, 55, 0.98) 0%, rgba(10, 7, 22, 0.99) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 30px 80px rgba(0,0,0,0.85),
    0 0 50px rgba(139,92,246,0.15);
  padding: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ── PM Header ── */
.pm-modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.015);
  position: relative;
}

.pm-modal-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pm-icon-purple {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--app-primary);
}

.pm-icon-blue {
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.28);
  color: #60A5FA;
}

.pm-icon-orange {
  background: rgba(234, 88, 12, 0.12);
  border: 1px solid rgba(234, 88, 12, 0.28);
  color: #FB923C;
}

.pm-icon-gold {
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.3);
  color: #FBBF24;
}

.pm-modal-title-wrap {
  flex: 1;
  min-width: 0;
}

.pm-modal-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.2;
}

.pm-modal-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 3px 0 0 0;
  font-weight: 400;
}

.pm-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
  flex-shrink: 0;
}

.pm-modal-close:hover {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.28);
  color: #F87171;
  transform: rotate(90deg);
}

/* ── PM Body ── */
.pm-modal-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── PM Footer ── */
.pm-modal-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.12);
}

.pm-btn-cancel {
  border-color: rgba(255,255,255,0.1) !important;
  color: var(--text-muted) !important;
  font-weight: 500;
}

.pm-btn-cancel:hover {
  border-color: rgba(255,255,255,0.2) !important;
  color: #fff !important;
}

.pm-btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  padding: 9px 18px;
}

/* ── Shared helpers ── */
.pm-link {
  color: var(--app-primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.15s;
}

.pm-link:hover {
  color: #a78bfa;
}

.pm-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin: 0 0 7px 0;
  letter-spacing: 0.01em;
}

.pm-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pm-select {
  width: 100%;
}

.pm-textarea {
  width: 100%;
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
  padding: 10px 12px;
  line-height: 1.55;
}

/* Advanced Touch Device Optimizations for Kickot Dashboard */
@media (hover: none) and (pointer: coarse) {
  /* Ensure all interactive elements meet minimum touch target size */.btn,
.action-btn,
.pm-btn-cancel,
.pm-btn-submit,
.pm-modal-close,
.pm-ref-email-btn {
    min-height: 48px;
    min-width: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
  }

  /* Enhanced touch feedback */.btn,
.action-btn,
.pm-btn-cancel,
.pm-btn-submit {
    position: relative;
    overflow: hidden;
  }.btn::after,
.action-btn::after,
.pm-btn-cancel::after,
.pm-btn-submit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
  }.btn:active::after,
.action-btn:active::after,
.pm-btn-cancel:active::after,
.pm-btn-submit:active::after {
    width: 200px;
    height: 200px;
  }

  /* Remove hover effects on touch devices */
  .pm-modal-close:hover, .pm-btn-cancel:hover, .pm-btn-submit:hover {
    transform: none;
  }

  /* Add active state feedback */
  .pm-modal-close:active, .pm-btn-cancel:active, .pm-btn-submit:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
  }

  /* Input elements */
  input[type="text"], input[type="email"], input[type="password"], input[type="number"],
  textarea, select {
    min-height: 48px;
    font-size: 16px; /* Prevent iOS zoom */
    touch-action: manipulation;
  }


  /* Modal elements */
  .pm-modal-close {
    min-width: 48px;
    min-height: 48px;
  }

  /* Smooth scrolling for mobile */
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  /* Improved scrollbar for mobile */
  ::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  /* Prevent pull-to-refresh on sensitive areas */
  .sidebar, .pm-modal-body {
    overscroll-behavior: contain;
  }

  /* Referral stats grid touch optimization */
  .pm-ref-stat {
    min-height: 48px;
    padding: 16px 12px;
  }

  /* Command badges */

}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Reduce complex animations on mobile */


    /* Optimize rendering for mobile */
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }


    /* Optimize image rendering */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    /* Reduce font rendering complexity */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
}


/* Low battery optimizations */


.pm-code {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--app-primary);
}

/* ── Contact banner (Predlozi) ── */
.pm-contact-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-left: 3px solid var(--app-primary);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ── Help cards (Pomoc) ── */
.pm-help-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pm-help-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 18px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pm-help-card:hover {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 15px rgba(139, 92, 246, 0.15);
}

.pm-help-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.pm-hci-green {
  background: rgba(83, 252, 24, 0.12);
  border: 1px solid rgba(83, 252, 24, 0.3);
  color: #53fc18;
}

.pm-hci-purple {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: #c4b5fd;
}

.pm-hci-yellow {
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.3);
  color: #FBBF24;
}

.pm-hci-blue {
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60A5FA;
}

.pm-help-card-body {
  flex: 1;
  min-width: 0;
}

.pm-help-card-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.pm-help-card-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── Docs steps (Dokumentacija) ── */
.pm-docs-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pm-docs-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.045);
}

.pm-docs-step:last-child {
  border-bottom: none;
}

.pm-docs-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--app-gradient);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.3);
}

.pm-docs-step-content {
  flex: 1;
  min-width: 0;
}

.pm-docs-step-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
}

.pm-docs-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.pm-docs-list {
  margin: 8px 0 0 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pm-code-block {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-left: 3px solid var(--app-primary);
  border-radius: 8px;
  padding: 9px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  color: #c4b5fd;
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* ── Referral Header ── */
.pm-referral-header {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pm-referral-header-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(234, 179, 8, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.pm-referral-header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px 18px 24px;
  position: relative;
}

.pm-ref-pct {
  color: #53fc18;
  font-weight: 700;
}

/* ── Referral Stats Grid ── */
.pm-ref-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

@media (max-width: 520px) {
  .pm-ref-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pm-ref-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  transition: border-color 0.2s;
}

.pm-ref-stat:hover {
  border-color: rgba(139,92,246,0.2);
}

.pm-ref-stat-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.pm-ref-stat-green .pm-ref-stat-val { color: #53fc18; }
.pm-ref-stat-gold .pm-ref-stat-val   { color: #FBBF24; }
.pm-ref-stat-purple .pm-ref-stat-val { color: #a78bfa; }

.pm-ref-stat-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Referral Link Box ── */
.pm-ref-link-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 16px;
}

.pm-ref-link-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.pm-ref-code-input {
  flex: 1;
  font-weight: 700;
  color: #53fc18 !important;
  letter-spacing: 1.5px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
}

.pm-ref-copy-btn {
  white-space: nowrap;
  font-weight: 600;
  padding: 8px 14px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease !important;
}

.pm-ref-copy-btn.copied-success {
  background: rgba(16, 185, 129, 0.2) !important;
  border-color: rgba(16, 185, 129, 0.4) !important;
  color: #10B981 !important;
  box-shadow: none !important;
}

.copied-success-outline {
  background: rgba(83, 252, 24, 0.1) !important;
  border-color: rgba(83, 252, 24, 0.4) !important;
  color: #53fc18 !important;
  box-shadow: none !important;
}

.pm-ref-link-full {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: #a78bfa;
  word-break: break-all;
}

/* ── Referral Custom Box ── */
.pm-ref-custom-box {
  background: rgba(139, 92, 246, 0.045);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pm-ref-custom-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.pm-ref-custom-body {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pm-ref-email-btn {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.35) !important;
  color: #a78bfa !important;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.pm-ref-email-btn:hover {
  background: var(--app-primary) !important;
  color: #ffffff !important;
  border-color: var(--app-primary) !important;
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.4);
  transform: translateY(-1px);
}

/* ── Referral Rewards ── */
.pm-ref-rewards {
  margin-top: 4px;
}

.pm-ref-rewards-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
}

.pm-ref-rewards-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 150px;
  overflow-y: auto;
}

.pm-ref-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 18px;
  font-size: 0.83rem;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255,255,255,0.07);
}

/* ── Referral Withdraw ── */
.pm-ref-withdraw {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 16px;
  margin-top: 4px;
}

.pm-ref-withdraw-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.pm-ref-withdraw-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Utility Classes for Inline Styles ── */


/* ── Plan Badges & Upgrade Modal ── */
.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1;
  transition: all 0.2s ease;
}

.plan-badge-free {
  background: rgba(148, 163, 184, 0.12);
  color: #CBD5E1;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 0 10px rgba(148, 163, 184, 0.08);
}

.plan-badge-pro {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(99, 102, 241, 0.15));
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.45);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.3);
}

.plan-badge-elite {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.28), rgba(236, 72, 153, 0.18));
  color: #C084FC;
  border: 1px solid rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.35);
}
.plan-upgrade-btn {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #3b82f6 100%);
  background-size: 200% 200%;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 16px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  margin-left: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.plan-upgrade-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.plan-upgrade-btn:hover::before {
  left: 100%;
}

.plan-upgrade-btn:hover {
  transform: translateY(-2px) scale(1.02);
  background-position: right center;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.55), 0 0 15px rgba(99, 102, 241, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.plan-upgrade-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

.upgrade-btn-icon {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: #ffd700;
  filter: drop-shadow(0 1px 3px rgba(255, 215, 0, 0.5));
}

.plan-upgrade-btn:hover .upgrade-btn-icon {
  transform: rotate(12deg) scale(1.15);
}

.plan-limit-banner {
  background: linear-gradient(135deg, rgba(13, 9, 26, 0.85) 0%, rgba(20, 14, 38, 0.95) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 14px;
  padding: 14px 20px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.plan-limit-banner:hover {
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 12px 36px rgba(139, 92, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.upgrade-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.upgrade-plan-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
}
.upgrade-plan-card:hover {
  transform: translateY(-4px);
}
.upgrade-plan-card.popular:hover {
  box-shadow: 0 0 35px rgba(139, 92, 246, 0.4);
}
.upgrade-plan-card.elite {
  border-color: #53fc18;
  background: rgba(83, 252, 24, 0.04);
  box-shadow: 0 0 25px rgba(83, 252, 24, 0.2);
}
.upgrade-plan-card.elite:hover {
  box-shadow: 0 0 40px rgba(83, 252, 24, 0.5);
  border-color: #53fc18;
}

/* ── Locked Feature Overlays ── */
.locked-feature-container {
  position: relative !important;
  overflow: hidden;
  border-radius: 14px;
}

.locked-feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 8, 20, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 50;
  border-radius: 14px;
  border: 1px solid rgba(139, 92, 246, 0.4);
  text-align: center;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease;
  pointer-events: auto !important;
  opacity: 1 !important;
  filter: none !important;
}

.locked-feature-overlay__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.22);
  border: 1px solid rgba(139, 92, 246, 0.45);
  color: #c084fc;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.locked-feature-overlay__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff !important;
  margin: 0;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.locked-feature-overlay__desc {
  font-size: 0.86rem;
  color: #e4e4e7 !important;
  max-width: 460px;
  margin: 0;
  line-height: 1.55;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
}

/* ───────────── Page-Specific Overrides (formerly inline <style>) ───────────── */
.btn-botrix {
      border-color: rgba(83, 252, 24, 0.45) !important;
      color: #53FC18 !important;
      background: rgba(83, 252, 24, 0.07) !important;
      box-shadow: 0 0 10px rgba(83, 252, 24, 0.18) !important;
    }

    .btn-botrix:hover,
    .btn-botrix:focus {
      background: rgba(83, 252, 24, 0.18) !important;
      border-color: #53FC18 !important;
      color: #53FC18 !important;
      box-shadow: 0 0 18px rgba(83, 252, 24, 0.4) !important;
    }

    #btnExecuteBotrixImport {
      background: #53FC18 !important;
      color: #0E0E1D !important;
      border: none !important;
      box-shadow: 0 4px 16px rgba(83, 252, 24, 0.35) !important;
    }

    #btnExecuteBotrixImport:hover:not(:disabled) {
      background: #46e013 !important;
      color: #0E0E1D !important;
      box-shadow: 0 6px 22px rgba(83, 252, 24, 0.6) !important;
    }

    /* Mobile Unsupported Overlay (<=768px) */
    .mobile-unsupported-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 999999;
      background: #090514;
      background-image:
        radial-gradient(circle at 50% 20%, rgba(83, 252, 24, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.15) 0%, transparent 50%);
      padding: 24px 18px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      color: #ffffff;
      font-family: 'Inter', system-ui, sans-serif;
      overflow-y: auto;
    }

    @media (max-width: 768px) {
      .mobile-unsupported-overlay {
        display: flex !important;
      }
    }

    .mobile-unsupported-card {
      background: rgba(18, 12, 36, 0.95);
      border: 1px solid rgba(83, 252, 24, 0.3);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(83, 252, 24, 0.15);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 24px;
      padding: 32px 24px;
      max-width: 460px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
    }


    .mobile-unsupported-icon {
      width: 76px;
      height: 76px;
      border-radius: 22px;
      background: rgba(83, 252, 24, 0.08);
      border: 1px solid rgba(83, 252, 24, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #53FC18;
      margin-bottom: 22px;
      box-shadow: 0 0 30px rgba(83, 252, 24, 0.25);
    }

    .mobile-unsupported-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.45rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
      line-height: 1.25;
    }

    .mobile-unsupported-desc {
      font-size: 0.93rem;
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.55;
      margin-bottom: 24px;
    }

    .mobile-steps-container {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 100%;
      text-align: left;
    }

    .mobile-step-item {
      background: rgba(255, 255, 255, 0.035);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      padding: 14px 16px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .mobile-step-num {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: #53FC18;
      color: #0b0716;
      font-weight: 800;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .mobile-step-text {
      font-size: 0.86rem;
      color: rgba(255, 255, 255, 0.88);
      line-height: 1.45;
    }

    .mobile-step-text strong {
      color: #53FC18;
    }

    .mobile-home-btn {
      margin-top: 22px;
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 13px 20px;
      border-radius: 14px;
      background: #53FC18;
      color: #0b0716;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(83, 252, 24, 0.35);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      cursor: pointer;
    }

    .mobile-home-btn:hover,
    .mobile-home-btn:active {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(83, 252, 24, 0.55);
      color: #0b0716;
    }

/* ───────────── Extracted Inline Styles (formerly style="" attributes) ───────────── */

/* ───────────── Extracted Inline Styles from js/dashboard.js templates ───────────── */

/* ===== Merged from dashboard.html <style> block ===== */
.btn-botrix {
      border-color: rgba(83, 252, 24, 0.45) !important;
      color: #53FC18 !important;
      background: rgba(83, 252, 24, 0.07) !important;
      box-shadow: 0 0 10px rgba(83, 252, 24, 0.18) !important;
    }

    .btn-botrix:hover,
    .btn-botrix:focus {
      background: rgba(83, 252, 24, 0.18) !important;
      border-color: #53FC18 !important;
      color: #53FC18 !important;
      box-shadow: 0 0 18px rgba(83, 252, 24, 0.4) !important;
    }

    #btnExecuteBotrixImport {
      background: #53FC18 !important;
      color: #0E0E1D !important;
      border: none !important;
      box-shadow: 0 4px 16px rgba(83, 252, 24, 0.35) !important;
    }

    #btnExecuteBotrixImport:hover:not(:disabled) {
      background: #46e013 !important;
      color: #0E0E1D !important;
      box-shadow: 0 6px 22px rgba(83, 252, 24, 0.6) !important;
    }

    /* Mobile Unsupported Overlay (<=768px) */
    .mobile-unsupported-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 999999;
      background: #090514;
      background-image:
        radial-gradient(circle at 50% 20%, rgba(83, 252, 24, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.15) 0%, transparent 50%);
      padding: 24px 18px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      color: #ffffff;
      font-family: 'Inter', system-ui, sans-serif;
      overflow-y: auto;
    }

    @media (max-width: 768px) {
      .mobile-unsupported-overlay {
        display: flex !important;
      }
    }

    .mobile-unsupported-card {
      background: rgba(18, 12, 36, 0.95);
      border: 1px solid rgba(83, 252, 24, 0.3);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(83, 252, 24, 0.15);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 24px;
      padding: 32px 24px;
      max-width: 460px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
    }

    .mobile-unsupported-icon {
      width: 76px;
      height: 76px;
      border-radius: 22px;
      background: rgba(83, 252, 24, 0.08);
      border: 1px solid rgba(83, 252, 24, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #53FC18;
      margin-bottom: 22px;
      box-shadow: 0 0 30px rgba(83, 252, 24, 0.25);
    }

    .mobile-unsupported-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.45rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
      line-height: 1.25;
    }

    .mobile-unsupported-desc {
      font-size: 0.93rem;
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.55;
      margin-bottom: 24px;
    }

    .mobile-steps-container {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 100%;
      text-align: left;
    }

    .mobile-step-item {
      background: rgba(255, 255, 255, 0.035);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      padding: 14px 16px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .mobile-step-num {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: #53FC18;
      color: #0b0716;
      font-weight: 800;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .mobile-step-text {
      font-size: 0.86rem;
      color: rgba(255, 255, 255, 0.88);
      line-height: 1.45;
    }

    .mobile-step-text strong {
      color: #53FC18;
    }

    .mobile-home-btn {
      margin-top: 22px;
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 13px 20px;
      border-radius: 14px;
      background: #53FC18;
      color: #0b0716;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(83, 252, 24, 0.35);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      cursor: pointer;
    }

    .mobile-home-btn:hover,
    .mobile-home-btn:active {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(83, 252, 24, 0.55);
      color: #0b0716;
    }

/* ===== Extracted inline styles (auto-generated) ===== */
.kx-1 { height: 52px !important; width: auto !important; }
.kx-2 { background: rgba(7, 7, 13, 0.85) !important; backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important; border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important; padding: 0 24px !important; height: 60px !important; display: flex !important; align-items: center !important; justify-content: space-between !important; position: sticky !important; top: 0 !important; z-index: 100 !important; }
.kx-3 { display: flex !important; align-items: center !important; gap: 14px !important; }
.kx-4 { display: flex !important; align-items: center !important; gap: 8px !important; font-size: 0.88rem !important; font-weight: 600 !important; }
.kx-5 { color: var(--text-muted) !important; display: flex !important; align-items: center !important; gap: 6px !important; }
.kx-6 { color: var(--app-primary) !important; font-weight: bold !important; }
.kx-7 { color: #fff !important; font-weight: 700 !important; }
.kx-8 { display: flex !important; align-items: center !important; gap: 8px !important; padding: 5px 12px !important; background: rgba(255, 255, 255, 0.03) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important; border-radius: 20px !important; transition: all 0.2s ease !important; }
.kx-9 { padding-top: 2px !important; font-size: 0.78rem !important; font-weight: 700 !important; letter-spacing: 0.5px !important; text-transform: uppercase !important; color: #EF4444 !important; white-space: nowrap !important; }
.kx-10 { transform: scale(0.85) !important; transform-origin: center !important; margin: 0 !important; cursor: pointer !important; }
.kx-11 { display: flex !important; align-items: center !important; }
.kx-12 { position: relative !important; display: inline-block !important; }
.kx-13 { position: relative !important; cursor: pointer !important; display: flex !important; align-items: center !important; justify-content: center !important; width: 38px !important; height: 38px !important; background: rgba(255, 255, 255, 0.03) !important; border: 1px solid rgba(255, 255, 255, 0.08); color: var(--text-secondary); border-radius: var(--radius-md) !important; transition: all 0.2s !important; }
.kx-14 { display: none; position: absolute !important; top: -5px !important; right: -5px !important; min-width: 18px !important; height: 18px !important; padding: 0 4px !important; background: #EF4444 !important; color: #ffffff !important; font-size: 0.68rem !important; font-weight: 800 !important; border-radius: 10px !important; border: 2px solid #0D091A !important; box-shadow: 0 0 10px rgba(239, 68, 68, 0.8) !important; align-items: center !important; justify-content: center !important; line-height: 1 !important; z-index: 10 !important; }
.kx-15 { display: none; position: absolute !important; top: 50px !important; right: 0 !important; width: min(360px, calc(100vw - 24px)) !important; background: rgba(13, 9, 26, 0.95) !important; backdrop-filter: blur(16px) !important; -webkit-backdrop-filter: blur(16px) !important; border: 1px solid rgba(139, 92, 246, 0.25) !important; border-radius: var(--radius-lg) !important; box-shadow: 0 20px 50px rgba(0,0,0,0.85) !important; z-index: 1010 !important; overflow: hidden !important; font-family: inherit !important; }
.kx-16 { padding: 14px 16px !important; border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important; display: flex !important; justify-content: space-between !important; align-items: center !important; background: rgba(139, 92, 246, 0.06) !important; }
.kx-17 { margin: 0 !important; font-size: 0.92rem !important; font-weight: 700 !important; color: #fff !important; display: flex !important; align-items: center !important; gap: 10px !important; }
.kx-18 { width: 28px !important; height: 28px !important; border-radius: 8px !important; background: rgba(139, 92, 246, 0.18) !important; border: 1px solid rgba(139, 92, 246, 0.3) !important; color: var(--app-primary) !important; display: flex !important; align-items: center !important; justify-content: center !important; flex-shrink: 0 !important; }
.kx-19 { background: rgba(139, 92, 246, 0.1) !important; border: 1px solid rgba(139, 92, 246, 0.25) !important; color: #a78bfa !important; font-size: 0.72rem !important; font-weight: 700 !important; cursor: pointer !important; padding: 4px 10px !important; border-radius: 6px !important; transition: all 0.2s !important; display: inline-flex !important; align-items: center !important; gap: 4px !important; }
.kx-20 { display: flex !important; background: rgba(0,0,0,0.3) !important; border-bottom: 1px solid rgba(255,255,255,0.06) !important; padding: 5px !important; gap: 6px !important; }
.kx-21 { flex: 1 !important; background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(139, 92, 246, 0.1)) !important; border: 1px solid rgba(139, 92, 246, 0.3) !important; color: #fff !important; padding: 7px 12px !important; font-size: 0.78rem !important; font-weight: 700 !important; cursor: pointer !important; border-radius: 8px !important; transition: all 0.2s !important; box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2) !important; }
.kx-22 { flex: 1 !important; background: transparent !important; border: 1px solid transparent !important; color: var(--text-muted) !important; padding: 7px 12px !important; font-size: 0.78rem !important; font-weight: 600 !important; cursor: pointer !important; border-radius: 8px !important; transition: all 0.2s !important; }
.kx-23 { max-height: 320px !important; overflow-y: auto !important; padding: 12px !important; display: flex !important; flex-direction: column !important; gap: 10px !important; box-sizing: border-box !important; }
.kx-24 { width: 38px !important; height: 38px !important; background: rgba(255, 255, 255, 0.03) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important; color: var(--text-secondary) !important; border-radius: var(--radius-md) !important; display: flex !important; align-items: center !important; justify-content: center !important; cursor: pointer !important; transition: all 0.2s !important; }
.kx-25 { transition: transform 0.4s ease !important; }
.kx-26 { margin-bottom: 0.5rem !important; }
.kx-27 { display: flex !important; align-items: center !important; gap: 12px !important; }
.kx-28 { display: flex !important; align-items: center !important; justify-content: center !important; width: 40px !important; height: 40px !important; border-radius: var(--radius-md) !important; background: var(--app-primary-dim) !important; color: var(--app-primary) !important; }
.kx-29 { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important; gap: 1.25rem !important; margin-bottom: 1rem !important; align-items: stretch !important; }
.kx-30 { color: var(--app-primary) !important; }
.kx-31 { color: var(--kick-green) !important; }
.kx-32 { color: #3B82F6 !important; }
.kx-33 { color: #6366F1 !important; }
.kx-34 { color: #F472B6 !important; }
.kx-35 { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important; gap: 1.25rem !important; margin-bottom: 1rem !important; align-items: stretch !important; }
.kx-36 { display: flex !important; flex-direction: column !important; justify-content: space-between !important; height: 100% !important; }
.kx-37 { display: flex !important; align-items: center !important; gap: 6px !important; }
.kx-38 { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important; gap: 1.25rem !important; align-items: start !important; }
.kx-39 { display: flex !important; flex-direction: column !important; gap: 14px !important; }
.kx-40 { margin-bottom: 0 !important; }
.kx-41 { display: flex !important; align-items: center !important; gap: 8px !important; font-size: 1.05rem !important; }
.kx-42 { width:8px !important; height:8px !important; background:#EF4444 !important; box-shadow:0 0 8px #EF4444 !important; display:inline-block !important; border-radius:50% !important; }
.kx-43 { color: var(--text-muted) !important; font-weight: 700 !important; }
.kx-44 { margin-bottom: 6px !important; }
.kx-45 { display: flex !important; flex-wrap: wrap !important; gap: 6px !important; }
.kx-46 { cursor: pointer !important; }
.kx-47 { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 8px !important; border-top: 1px solid rgba(255,255,255,0.05) !important; padding-top: 14px !important; width: 100% !important; }
.kx-48 { width: 100% !important; justify-content: center !important; text-align: center !important; white-space: nowrap !important; box-sizing: border-box !important; }
.kx-49 { width: 100% !important; justify-content: center !important; text-align: center !important; white-space: nowrap !important; box-sizing: border-box !important; }
#ctrlBotToggleBtn,
#ctrlBotToggleBtn:hover,
#ctrlBotToggleBtn:focus,
#ctrlBotToggleBtn:active {
  transition: none !important;
  transform: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.kx-50 { display: flex !important; flex-direction: column !important; gap: 14px !important; min-height: 260px !important; }
.kx-51 { background:#9393B5 !important; width:8px !important; height:8px !important; border-radius:50% !important; }
.kx-52 { flex: 1 !important; display: flex !important; flex-direction: column !important; min-height: 180px !important; max-height: 240px !important; overflow: hidden !important; }
.kx-53 { flex: 1 !important; overflow-y: auto !important; padding-right: 4px !important; font-family: 'JetBrains Mono', monospace !important; font-size: 0.78rem !important; color: var(--text-secondary) !important; line-height: 1.6 !important; }
.kx-54 { padding: 2rem 1rem !important; height: 100% !important; display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; }
.kx-55 { width:40px !important; height:40px !important; margin-bottom: 8px !important; }
.kx-56 { font-style: italic !important; }
.kx-57 { display: flex !important; align-items: center !important; justify-content: space-between !important; flex-wrap: wrap !important; gap: 15px !important; margin-bottom: 1.5rem !important; }
.kx-58 { display: flex !important; align-items: center !important; justify-content: center !important; width: 38px !important; height: 38px !important; border-radius: var(--radius-md) !important; background: rgba(226, 181, 34, 0.1) !important; color: #e2b522 !important; }
.kx-59 { display: flex !important; align-items: center !important; gap: 16px !important; flex-wrap: wrap !important; }
.kx-60 { display: flex !important; align-items: center !important; gap: 8px !important; }
.kx-61 { font-weight: 600 !important; }
.kx-62 { background: rgba(13, 9, 26, 0.6) !important; border: 1px solid rgba(139, 92, 246, 0.25) !important; border-radius: 12px !important; padding: 12px 16px !important; margin-bottom: 1rem !important; display: flex !important; align-items: center !important; justify-content: space-between !important; flex-wrap: wrap !important; gap: 12px !important; }
.kx-63 { margin-bottom: 1.5rem !important; background: rgba(139, 92, 246, 0.03) !important; border: 1px solid rgba(139, 92, 246, 0.15) !important; border-left: 4px solid var(--app-primary) !important; padding: 12px 16px !important; border-radius: var(--radius-md) !important; display: flex !important; align-items: center !important; gap: 10px !important; width: 100% !important; }
.kx-64 { flex-shrink: 0 !important; }
.kx-65 { font-size: 0.85rem !important; color: var(--text-secondary) !important; line-height: 1.4 !important; }
.kx-66 { background:rgba(255,255,255,0.08) !important; padding:2px 6px !important; border-radius:4px !important; color:var(--kick-green) !important; }
.kx-67 { width:60px !important; }
.kx-68 { display: flex !important; align-items: center !important; justify-content: center !important; width: 38px !important; height: 38px !important; border-radius: var(--radius-md) !important; background: var(--app-primary-dim) !important; color: var(--app-primary) !important; }
.kx-69 { display: flex !important; align-items: center !important; gap: 10px !important; flex-wrap: wrap !important; }
.kx-70 { margin-bottom: 1rem !important; background: rgba(139, 92, 246, 0.05) !important; border: 1px solid rgba(139, 92, 246, 0.2) !important; border-left: 4px solid var(--kick-green) !important; padding: 14px 18px !important; border-radius: var(--radius-md) !important; display: flex !important; align-items: flex-start !important; gap: 12px !important; width: 100% !important; }
.kx-71 { flex-shrink: 0 !important; margin-top: 2px !important; }
.kx-72 { font-size: 0.85rem !important; color: var(--text-secondary) !important; line-height: 1.5 !important; }
.kx-73 { color: #fff !important; }
.kx-74 { margin: 6px 0 0 18px !important; padding: 0 !important; list-style-type: disc !important; color: var(--text-muted) !important; }
.kx-75 { color: var(--kick-green) !important; background: rgba(83, 252, 24, 0.1) !important; padding: 2px 6px !important; border-radius: 4px !important; }
.kx-76 { color: #EF4444 !important; background: rgba(239, 68, 68, 0.1) !important; padding: 2px 6px !important; border-radius: 4px !important; }
.kx-77 { margin-bottom: 1rem !important; }
.kx-78 { display: flex !important; gap: 8px !important; flex-wrap: wrap !important; margin-bottom: 1.25rem !important; }
.kx-79 { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important; gap: 16px !important; margin-top: 10px !important; align-items: stretch !important; }
.kx-80 { display: flex !important; align-items: center !important; justify-content: center !important; width: 38px !important; height: 38px !important; border-radius: var(--radius-md) !important; background: rgba(139, 92, 246, 0.1) !important; color: var(--app-primary) !important; }
.kx-81 { display: flex !important; align-items: center !important; gap: 12px !important; flex-wrap: wrap !important; }
.kx-82 { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important; gap: 15px !important; margin-bottom: 1rem !important; }
.kx-83 { display: flex !important; align-items: center !important; gap: 6px !important; margin-bottom: 0.5rem !important; }
.kx-84 { margin-bottom: 12px !important; display: block !important; }
.kx-85 { display: flex !important; gap: 10px !important; margin-bottom: 1rem !important; flex-wrap: wrap !important; }
.kx-86 { flex: 1 !important; min-width: 200px !important; }
.kx-87 { display: flex !important; align-items: center !important; gap: 6px !important; white-space: nowrap !important; border-radius: var(--radius-md) !important; }
.kx-88 { display: flex !important; flex-direction: column !important; gap: 0.75rem !important; }
.kx-89 { grid-column: span 2 !important; margin-top: 0.5rem !important; }
.kx-90 { grid-column: span 2 !important; }
.kx-91 { margin-bottom: 1.5rem !important; border-left: 4px solid var(--app-primary) !important; background: rgba(99, 102, 241, 0.05) !important; padding: 15px !important; border-radius: var(--radius-md) !important; }
.kx-92 { color: var(--app-primary) !important; margin-right: 10px !important; flex-shrink: 0 !important; }
.kx-93 { display: flex !important; flex-direction: column !important; gap: 4px !important; }
.kx-94 { font-weight: 700 !important; color: var(--text-primary) !important; font-size: 0.9rem !important; }
.kx-95 { font-size: 0.85rem !important; line-height: 1.4 !important; }
.kx-96 { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important; gap: 1rem !important; }
.kx-97 { display: flex !important; flex-direction: column !important; gap: 6px !important; padding: 15px !important; border-radius: var(--radius-md) !important; background: rgba(255,255,255,0.015) !important; border: 1px solid var(--border-subtle) !important; }
.kx-98 { display: flex !important; justify-content: space-between !important; align-items: center !important; }
.kx-99 { color: var(--text-primary) !important; font-size: 0.9rem !important; display: flex !important; align-items: center !important; gap: 6px !important; }
.kx-100 { font-size: 0.8rem !important; color: var(--kick-green) !important; font-family: monospace !important; }
.kx-101 { font-size: 0.8rem !important; color: var(--text-muted) !important; margin: 0 !important; line-height: 1.4 !important; }
.kx-102 { grid-column: span 2 !important; display: flex !important; flex-direction: column !important; gap: 20px !important; }
.kx-103 { display: flex !important; align-items: center !important; gap: 8px !important; margin: 0 !important; border-bottom: 1px solid var(--border-subtle) !important; padding-bottom: 10px !important; }
.kx-104 { background: rgba(139, 92, 246, 0.05) !important; border: 1px solid rgba(139, 92, 246, 0.2) !important; padding: 12px 16px !important; border-radius: var(--radius-md) !important; font-size: 0.82rem !important; color: var(--text-secondary) !important; display: flex !important; flex-wrap: wrap !important; gap: 12px !important; align-items: center !important; }
.kx-105 { font-weight: 700 !important; color: var(--app-primary) !important; display: flex !important; align-items: center !important; gap: 6px !important; }
.kx-106 { display: flex !important; align-items: center !important; gap: 4px !important; }
.kx-107 { background: rgba(255,255,255,0.06) !important; padding: 2px 6px !important; border-radius: 4px !important; color: var(--kick-green) !important; font-family: monospace !important; }
.kx-108 { color: var(--text-muted) !important; }
.kx-109 { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important; gap: 1.25rem !important; }
.kx-110 { width: 100% !important; font-size: 0.82rem !important; }
.kx-111 { width: 75px !important; padding: 4px 8px !important; font-size: 0.8rem !important; text-align: center !important; }
.kx-112 { grid-column: span 2 !important; margin-top: 1rem !important; }
.kx-113 { display: flex !important; align-items: center !important; justify-content: center !important; width: 38px !important; height: 38px !important; border-radius: var(--radius-md) !important; background: rgba(244, 114, 182, 0.1) !important; color: #F472B6 !important; }
.kx-114 { margin-bottom: 1.5rem !important; }
.kx-115 { flex: 1 !important; min-width: 220px !important; }
.kx-116 { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important; gap: 10px !important; }
.kx-117 { margin-bottom: 1rem !important; align-items: center !important; }
.kx-118 { margin-bottom: 0.25rem !important; }
.kx-119 { margin-top: 0 !important; }
.kx-120 { width:40px !important; }
.kx-121 { margin-top: 1rem !important; }
.kx-122 { margin-top: 1.5rem !important; }
.kx-123 { display: flex !important; align-items: center !important; justify-content: center !important; width: 38px !important; height: 38px !important; border-radius: var(--radius-md) !important; background: rgba(139, 92, 246, 0.1) !important; color: var(--app-primary) !important; border: 1px solid rgba(139, 92, 246, 0.25) !important; }
.kx-124 { margin-bottom: 28px !important; }
.kx-125 { margin: 0 0 14px 0 !important; font-size: 1.1rem !important; font-weight: 700 !important; color: #fff !important; display: flex !important; align-items: center !important; gap: 8px !important; }
.kx-126 { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important; gap: 14px !important; }
.kx-127 { padding: 16px !important; }
.kx-128 { font-family: var(--font-mono) !important; color: #a78bfa !important; font-weight: 700 !important; font-size: 0.92rem !important; margin-bottom: 6px !important; }
.kx-129 { font-size: 0.82rem !important; color: var(--text-muted) !important; line-height: 1.4 !important; }
.kx-130 { color:#53fc18 !important; }
.kx-131 { transition: all 0.3s ease !important; }
.kx-132 { margin-bottom: 24px !important; border-top: 1px solid var(--border-subtle) !important; padding-top: 20px !important; }
.kx-133 { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important; gap: 16px !important; }
.kx-134 { padding: 20px !important; }
.kx-135 { display: flex !important; align-items: center !important; justify-content: space-between !important; margin-bottom: 12px !important; }
.kx-136 { display: flex !important; align-items: center !important; gap: 10px !important; }
.kx-137 { width: 36px !important; height: 36px !important; border-radius: 10px !important; background: rgba(239, 68, 68, 0.15) !important; display: flex !important; align-items: center !important; justify-content: center !important; color: #ef4444 !important; }
.kx-138 { margin: 0 !important; font-size: 1.05rem !important; color: #fff !important; }
.kx-139 { font-size: 0.75rem !important; font-weight: 700 !important; color: #ef4444 !important; background: rgba(239, 68, 68, 0.15) !important; padding: 2px 8px !important; border-radius: 10px !important; }
.kx-140 { margin: 0 0 14px 0 !important; font-size: 0.83rem !important; color: var(--text-muted) !important; line-height: 1.5 !important; }
.kx-141 { background: rgba(0,0,0,0.2) !important; border: 1px solid var(--border-subtle) !important; padding: 8px 12px !important; border-radius: var(--radius-md) !important; font-family: var(--font-mono) !important; font-size: 0.78rem !important; color: #53fc18 !important; }
.kx-142 { width: 36px !important; height: 36px !important; border-radius: 10px !important; background: rgba(234, 179, 8, 0.15) !important; display: flex !important; align-items: center !important; justify-content: center !important; color: #eab308 !important; }
.kx-143 { font-size: 0.75rem !important; font-weight: 700 !important; color: #eab308 !important; background: rgba(234, 179, 8, 0.15) !important; padding: 2px 8px !important; border-radius: 10px !important; }
.kx-144 { width: 36px !important; height: 36px !important; border-radius: 10px !important; background: rgba(167, 139, 250, 0.15) !important; display: flex !important; align-items: center !important; justify-content: center !important; color: #a78bfa !important; }
.kx-145 { font-size: 0.75rem !important; font-weight: 700 !important; color: #a78bfa !important; background: rgba(167, 139, 250, 0.15) !important; padding: 2px 8px !important; border-radius: 10px !important; }
.kx-146 { width: 36px !important; height: 36px !important; border-radius: 10px !important; background: rgba(59, 130, 246, 0.15) !important; display: flex !important; align-items: center !important; justify-content: center !important; color: #3b82f6 !important; }
.kx-147 { font-size: 0.75rem !important; font-weight: 700 !important; color: #3b82f6 !important; background: rgba(59, 130, 246, 0.15) !important; padding: 2px 8px !important; border-radius: 10px !important; }
.kx-148 { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important; gap: 1.5rem !important; border-top: 1px solid var(--border-subtle) !important; padding-top: 20px !important; }
.kx-149 { padding: 24px !important; display: flex !important; flex-direction: column !important; justify-content: space-between !important; }
.kx-150 { margin: 0 0 16px 0 !important; font-size: 1.05rem !important; font-weight: 700 !important; display: flex !important; align-items: center !important; gap: 8px !important; border-bottom: 1px solid var(--border-subtle) !important; padding-bottom: 12px !important; color: var(--text-primary) !important; }
.kx-151 { margin-bottom: 12px !important; }
.kx-152 { margin-top: 20px !important; display: flex !important; align-items: center !important; }
.kx-153 { font-size: 0.85rem !important; color: #a78bfa !important; font-weight: 600 !important; text-decoration: underline !important; display: inline-flex !important; align-items: center !important; gap: 4px !important; }
.kx-154 { padding: 24px !important; }
.kx-155 { display: flex !important; flex-wrap: wrap !important; gap: 10px !important; margin-bottom: 14px !important; }
.kx-156 { flex: 1 !important; min-width: 150px !important; }
.kx-157 { width: 100px !important; }
.kx-158 { white-space: nowrap !important; }
.kx-159 { background: rgba(0,0,0,0.25) !important; border: 1px solid var(--border-subtle) !important; border-radius: var(--radius-md) !important; padding: 16px !important; min-height: 80px !important; font-size: 0.9rem !important; display: flex !important; align-items: center !important; justify-content: center !important; text-align: center !important; color: var(--text-muted) !important; }
.kx-160 { display: flex !important; align-items: center !important; justify-content: space-between !important; flex-wrap: wrap !important; gap: 15px !important; margin-bottom: 1.75rem !important; }
.kx-161 { display: flex !important; align-items: center !important; justify-content: center !important; width: 40px !important; height: 40px !important; border-radius: var(--radius-md) !important; background: rgb(255, 0, 51, 0.15) !important; color: #FF0033 !important; border: 1px solid rgb(255, 0, 51, 0.3) !important; }
.kx-162 { background: rgba(13, 9, 26, 0.6) !important; border: 1px solid rgba(139, 92, 246, 0.25) !important; border-radius: 12px !important; padding: 12px 16px !important; margin-bottom: 1.5rem !important; display: flex !important; align-items: center !important; justify-content: space-between !important; flex-wrap: wrap !important; gap: 12px !important; }
.kx-163 { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)) !important; gap: 1.75rem !important; margin-bottom: 2rem !important; }
.kx-164 { display: flex !important; flex-direction: column !important; gap: 1.75rem !important; }
.kx-165 { padding: 24px !important; display: flex !important; flex-direction: column !important; gap: 20px !important; align-items: center !important; text-align: center !important; position: relative !important; }
.kx-166 { width: 220px !important; height: 140px !important; min-width: 220px !important; min-height: 140px !important; flex-shrink: 0 !important; border-radius: 16px !important; background: #000 !important; display: flex !important; align-items: center !important; justify-content: center !important; box-shadow: 0 12px 30px rgba(0,0,0,0.5) !important; position: relative !important; overflow: hidden !important; border: 1px solid var(--border-subtle) !important; }
.kx-167 { width: 100% !important; height: 100% !important; border: none !important; border-radius: 12px !important; position: relative !important; z-index: 1 !important; display: none !important; }
.kx-168 { width: 100% !important; height: 100% !important; object-fit: cover !important; display: none !important; position: absolute !important; top: 0 !important; left: 0 !important; pointer-events: none !important; z-index: 2 !important; }
.kx-169 { width: 100% !important; height: 100% !important; display: flex; align-items: center !important; justify-content: center !important; background: linear-gradient(135deg, rgba(255,0,51,0.25), #07070d) !important; position: absolute !important; top: 0 !important; left: 0 !important; pointer-events: none !important; z-index: 2 !important; }
.kx-170 { position: absolute !important; bottom: 8px !important; right: 8px !important; background: rgba(255,0,51,0.85) !important; border-radius: 6px !important; padding: 3px 6px !important; font-size: 0.65rem !important; color: #fff !important; font-weight: 700 !important; backdrop-filter: blur(4px) !important; display: none !important; z-index: 5 !important; }
.kx-171 { margin: 0 !important; font-size: 1.1rem !important; font-weight: 700 !important; color: #fff !important; line-height: 1.3 !important; }
.kx-172 { margin: 4px 0 0 0 !important; font-size: 0.82rem !important; color: var(--text-muted) !important; }
.kx-173 { width: 100% !important; display: flex !important; flex-direction: column !important; gap: 6px !important; }
.kx-174 { width: 100% !important; height: 6px !important; background: rgba(255,255,255,0.06) !important; border-radius: 3px !important; position: relative !important; cursor: pointer !important; }
.kx-175 { width: 0% !important; height: 100% !important; background: #FF0033 !important; border-radius: 3px !important; transition: width 0.1s linear !important; }
.kx-176 { display: flex !important; justify-content: space-between !important; font-size: 0.72rem !important; color: var(--text-muted) !important; font-family: var(--font-mono) !important; }
.kx-177 { display: flex !important; align-items: center !important; gap: 16px !important; }
.kx-178 { border-radius: 50% !important; width: 40px !important; height: 40px !important; padding: 0 !important; display: flex !important; align-items: center !important; justify-content: center !important; cursor: pointer !important; }
.kx-179 { border-radius: 50% !important; width: 50px !important; height: 50px !important; padding: 0 !important; display: flex !important; align-items: center !important; justify-content: center !important; cursor: pointer !important; background: #FF0033 !important; color: #fff !important; border: none !important; box-shadow: 0 4px 15px rgba(255,0,51,0.4) !important; }
.kx-180 { display: flex !important; align-items: center !important; gap: 10px !important; width: 100% !important; max-width: 220px !important; margin-top: 5px !important; }
.kx-181 { flex-grow: 1 !important; accent-color: #FF0033 !important; height: 4px !important; cursor: pointer !important; }
.kx-182 { display: flex !important; align-items: center !important; gap: 8px !important; font-size: 1rem !important; border-bottom: 1px solid rgba(255,255,255,0.05) !important; padding-bottom: 12px !important; margin-bottom: 16px !important; }
.kx-183 { display: flex !important; gap: 8px !important; margin-bottom: 10px !important; }
.kx-184 { flex-grow: 1 !important; }
.kx-185 { padding: 10px 20px !important; white-space: nowrap !important; background: #FF0033 !important; border: none !important; }
.kx-186 { line-height: 1.4 !important; display: block !important; }
.kx-187 { background: rgba(255,0,51,0.15) !important; padding: 2px 6px !important; border-radius: 4px !important; color: #FF0033 !important; font-weight: bold !important; }
.kx-188 { padding: 24px !important; display: flex !important; flex-direction: column !important; gap: 16px !important; flex-grow: 1 !important; min-height: 280px !important; }
.kx-189 { display: flex !important; align-items: center !important; justify-content: space-between !important; font-size: 1rem !important; border-bottom: 1px solid rgba(255,255,255,0.05) !important; padding-bottom: 12px !important; margin-bottom: 0 !important; }
.kx-190 { color: #FF0033 !important; }
.kx-191 { font-size: 0.75rem !important; color: var(--text-muted) !important; }
.kx-192 { font-size: 0.75rem !important; padding: 3px 8px !important; color: #EF4444 !important; border: 1px solid rgba(239,68,68,0.25) !important; border-radius: var(--radius-sm) !important; cursor: pointer !important; }
.kx-193 { flex: 1 !important; max-height: 260px !important; overflow-y: auto !important; padding-right: 4px !important; }
.kx-194 { display: flex !important; align-items: center !important; justify-content: space-between !important; font-size: 1rem !important; border-bottom: 1px solid rgba(255,255,255,0.05) !important; padding-bottom: 12px !important; margin-bottom: 16px !important; }
.kx-195 { color: var(--text-secondary) !important; }
.kx-196 { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) !important; gap: 10px !important; }
.kx-197 { margin-top: 1.5rem !important; margin-bottom: 0 !important; }
.kx-198 { display: flex !important; align-items: center !important; justify-content: center !important; width: 40px !important; height: 40px !important; border-radius: var(--radius-md) !important; background: rgba(234, 179, 8, 0.15) !important; color: #eab308 !important; border: 1px solid rgba(234, 179, 8, 0.3) !important; flex-shrink: 0 !important; }
.kx-199 { display: flex !important; flex-direction: row !important; align-items: center !important; gap: 8px !important; border-bottom: 1px solid var(--border-subtle) !important; padding-bottom: 10px !important; margin-bottom: 1rem !important; flex-wrap: nowrap !important; overflow-x: auto !important; }
.kx-200 { display: inline-flex !important; align-items: center !important; gap: 6px !important; border: 1px solid transparent !important; white-space: nowrap !important; flex-shrink: 0 !important; transition: background-color 0.12s ease, border-color 0.12s ease, color 0.12s ease !important; transform: none !important; }
.kx-199 .kx-200.btn-primary { background: var(--app-gradient) !important; border-color: rgba(139, 92, 246, 0.4) !important; color: #fff !important; box-shadow: 0 2px 10px rgba(109, 40, 217, 0.3) !important; }
.kx-199 .kx-200.btn-outline { background: rgba(255, 255, 255, 0.04) !important; border-color: var(--border-normal) !important; color: var(--text-secondary) !important; box-shadow: none !important; }
.kx-199 .kx-200.btn-outline:hover { background: rgba(255, 255, 255, 0.08) !important; border-color: var(--border-accent) !important; color: #fff !important; }
.kx-201 { padding: 16px 18px !important; margin-bottom: 1.25rem !important; background: rgba(83, 252, 24, 0.03) !important; border: 1px solid rgba(83, 252, 24, 0.15) !important; }
.kx-202 { margin: 0 0 14px 0 !important; font-size: 1.05rem !important; font-weight: 700 !important; color: #53fc18 !important; display: flex !important; align-items: center !important; gap: 8px !important; }
.kx-203 { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important; gap: 12px !important; }
.kx-204 { background: rgba(0,0,0,0.25) !important; border: 1px solid var(--border-subtle) !important; border-radius: var(--radius-md) !important; padding: 12px 14px !important; display: flex !important; align-items: center !important; gap: 10px !important; }
.kx-205 { width: 34px !important; height: 34px !important; border-radius: 8px !important; background: rgba(83, 252, 24, 0.15) !important; color: #53fc18 !important; display: flex !important; align-items: center !important; justify-content: center !important; font-weight: 700 !important; flex-shrink: 0 !important; }
.kx-206 { font-size: 0.8rem !important; color: var(--text-muted) !important; }
.kx-207 { font-weight: 700 !important; color: #fff !important; font-size: 0.92rem !important; }
.kx-208 { width: 34px !important; height: 34px !important; border-radius: 8px !important; background: rgba(59, 130, 246, 0.15) !important; color: #3b82f6 !important; display: flex !important; align-items: center !important; justify-content: center !important; font-weight: 700 !important; flex-shrink: 0 !important; }
.kx-209 { width: 34px !important; height: 34px !important; border-radius: 8px !important; background: rgba(234, 179, 8, 0.15) !important; color: #eab308 !important; display: flex !important; align-items: center !important; justify-content: center !important; font-weight: 700 !important; flex-shrink: 0 !important; }
.kx-210 { width: 34px !important; height: 34px !important; border-radius: 8px !important; background: rgba(167, 139, 250, 0.15) !important; color: #a78bfa !important; display: flex !important; align-items: center !important; justify-content: center !important; font-weight: 700 !important; flex-shrink: 0 !important; }
.kx-211 { width: 34px !important; height: 34px !important; border-radius: 8px !important; background: rgba(239, 68, 68, 0.15) !important; color: #ef4444 !important; display: flex !important; align-items: center !important; justify-content: center !important; font-weight: 700 !important; flex-shrink: 0 !important; }
.kx-212 { width: 34px !important; height: 34px !important; border-radius: 8px !important; background: rgba(236, 72, 153, 0.15) !important; color: #ec4899 !important; display: flex !important; align-items: center !important; justify-content: center !important; font-weight: 700 !important; flex-shrink: 0 !important; }
.kx-213 { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important; gap: 1.75rem !important; align-items: stretch !important; margin-bottom: 2rem !important; }
.kx-214 { padding: 24px !important; height: 100% !important; display: flex !important; flex-direction: column !important; box-sizing: border-box !important; }
.kx-215 { display: flex !important; flex-direction: column !important; gap: 16px !important; }
.kx-216 { display: flex !important; flex-direction: row !important; align-items: center !important; justify-content: space-between !important; gap: 12px !important; }
.kx-217 { flex: 1 !important; }
.kx-218 { margin: 0 !important; }
.kx-219 { display: block !important; margin-top: 2px !important; }
.kx-220 { flex-shrink: 0 !important; margin: 0 !important; }
.kx-221 { display:none !important; }
.kx-222 { display: none !important; margin-bottom: 16px !important; }
.kx-223 { display: flex !important; justify-content: space-between !important; align-items: center !important; margin-bottom: 18px !important; flex-wrap: wrap !important; gap: 12px !important; }
.kx-224 { margin: 0 !important; font-size: 1.1rem !important; font-weight: 700 !important; display: flex !important; align-items: center !important; gap: 8px !important; }
.kx-225 { display: flex !important; align-items: center !important; gap: 8px !important; flex-wrap: wrap !important; }
.kx-226 { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important; gap: 16px !important; margin-bottom: 2.25rem !important; }
.kx-227 { margin: 28px 0 14px 0 !important; }
.kx-228 { margin: 0 0 14px 0 !important; font-size: 1.1rem !important; font-weight: 700 !important; display: flex !important; align-items: center !important; gap: 8px !important; }
.kx-229 { margin-bottom: 2.5rem !important; }
.kx-230 { text-align: right !important; }
.kx-231 { margin-bottom: 20px !important; display: flex !important; flex-direction: column !important; gap: 12px !important; align-items: flex-start !important; }
.kx-232 { width: 100% !important; max-width: 400px !important; }
.kx-233 { width: 70px !important; }
.kx-234 { display: flex !important; align-items: center !important; gap: 8px !important; font-size: 1.1rem !important; border-bottom: 1px solid rgba(255,255,255,0.05) !important; padding-bottom: 12px !important; margin-bottom: 20px !important; }
.kx-235 { font-weight: 600 !important; margin-bottom: 6px !important; }
.kx-236 { font-family: var(--font-mono) !important; font-weight: bold !important; }
.kx-237 { display: flex !important; align-items: center !important; justify-content: space-between !important; padding: 8px 12px !important; background: rgba(255,255,255,0.01) !important; border: 1px solid var(--border-subtle) !important; border-radius: var(--radius-md) !important; }
.kx-238 { display: flex !important; align-items: center !important; gap: 6px !important; font-weight: 600 !important; }
.kx-239 { color: #E2B522 !important; }
.kx-240 { color: #53FC18 !important; }
.kx-241 { color: #1DB954 !important; }
.kx-242 { color: #EAB308 !important; }
.kx-243 { color: #EF4444 !important; }
.kx-244 { padding: 24px !important; grid-column: span 2 !important; background: rgba(13, 13, 20, 0.6) !important; border: 1px solid var(--border-subtle) !important; border-radius: var(--radius-lg) !important; position: relative !important; }
.kx-245 { display: flex !important; align-items: center !important; justify-content: space-between !important; flex-wrap: wrap !important; gap: 12px !important; border-bottom: 1px solid rgba(255,255,255,0.06) !important; padding-bottom: 16px !important; margin-bottom: 20px !important; }
.kx-246 { display: flex !important; align-items: center !important; gap: 10px !important; font-size: 1.15rem !important; margin: 0 !important; border: none !important; padding: 0 !important; }
.kx-247 { width: 36px !important; height: 36px !important; border-radius: var(--radius-md) !important; background: rgba(139, 92, 246, 0.12) !important; color: var(--app-primary) !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.kx-248 { display: inline-flex !important; align-items: center !important; gap: 8px !important; flex-wrap: wrap !important; }
.kx-249 { text-decoration: line-through !important; opacity: 0.65 !important; }
.kx-250 { font-size: 0.72rem !important; font-weight: 800 !important; padding: 3px 8px !important; border-radius: 4px !important; background: rgba(245, 158, 11, 0.2) !important; color: #F59E0B !important; text-transform: uppercase !important; border: 1px solid rgba(245, 158, 11, 0.4) !important; letter-spacing: 0.5px !important; }
.kx-251 { display: inline-flex !important; align-items: center !important; gap: 8px !important; }
.kx-252 { font-size: 0.8rem !important; font-weight: 600 !important; padding: 5px 12px !important; border-radius: 20px !important; background: rgba(245, 158, 11, 0.12) !important; border: 1px solid rgba(245, 158, 11, 0.3) !important; color: #F59E0B !important; display: flex !important; align-items: center !important; gap: 6px !important; }
.kx-253 { width: 8px !important; height: 8px !important; border-radius: 50% !important; background: #F59E0B !important; }
.kx-254 { font-size: 0.86rem !important; color: var(--text-muted) !important; margin: 0 !important; line-height: 1.6 !important; }
.kx-255 { text-decoration: line-through !important; opacity: 0.6 !important; }
.kx-256 { display: block !important; margin-top: 6px !important; color: #F59E0B !important; font-weight: 600 !important; font-size: 0.84rem !important; }
.kx-257 { display: none !important; }
.kx-258 { background: rgba(255, 255, 255, 0.02) !important; border: 1px solid rgba(255, 255, 255, 0.07) !important; border-radius: var(--radius-md) !important; padding: 18px !important; display: flex !important; flex-direction: column !important; justify-content: space-between !important; gap: 14px !important; }
.kx-259 { display: flex !important; align-items: center !important; justify-content: space-between !important; margin-bottom: 10px !important; }
.kx-260 { font-size: 0.72rem !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 0.8px !important; color: var(--app-primary) !important; background: rgba(139, 92, 246, 0.12) !important; padding: 3px 8px !important; border-radius: 4px !important; }
.kx-261 { margin: 0 0 6px 0 !important; font-size: 0.95rem !important; color: #fff !important; font-weight: 600 !important; }
.kx-262 { font-size: 0.81rem !important; color: var(--text-muted) !important; margin: 0 !important; line-height: 1.5 !important; }
.kx-263 { display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 8px !important; font-size: 0.82rem !important; padding: 8px 12px !important; text-decoration: none !important; width: 100% !important; box-sizing: border-box !important; }
.kx-264 { font-size: 0.72rem !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 0.8px !important; color: #3B82F6 !important; background: rgba(59, 130, 246, 0.12) !important; padding: 3px 8px !important; border-radius: 4px !important; }
.kx-265 { font-size: 0.81rem !important; color: var(--text-muted) !important; margin: 0 0 10px 0 !important; line-height: 1.5 !important; }
.kx-266 { font-weight: 600 !important; font-size: 0.88rem !important; }
.kx-267 { display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 8px !important; font-size: 0.82rem !important; padding: 8px 12px !important; width: 100% !important; }
.kx-268 { font-size: 0.72rem !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 0.8px !important; color: var(--kick-green) !important; background: rgba(83, 252, 24, 0.12) !important; padding: 3px 8px !important; border-radius: 4px !important; }
.kx-269 { background: rgba(0,0,0,0.35) !important; border: 1px solid rgba(255,255,255,0.08) !important; border-radius: 6px !important; padding: 8px 12px !important; display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 8px !important; }
.kx-270 { font-family: var(--font-mono) !important; font-size: 0.88rem !important; font-weight: 700 !important; color: var(--kick-green) !important; }
.kx-271 { padding: 4px 8px !important; font-size: 0.75rem !important; display: inline-flex !important; align-items: center !important; gap: 4px !important; flex-shrink: 0 !important; }
.kx-272 { font-size: 0.76rem !important; color: var(--text-muted) !important; display: flex !important; align-items: center !important; gap: 6px !important; }
.kx-273 { display: flex !important; align-items: center !important; justify-content: center !important; width: 38px !important; height: 38px !important; border-radius: var(--radius-md) !important; background: rgba(239, 68, 68, 0.1) !important; color: #EF4444 !important; }
.kx-274 { display: none !important; align-items: center !important; gap: 1.25rem !important; border-color: rgba(239, 68, 68, 0.25) !important; background: rgba(239, 68, 68, 0.03) !important; padding: 24px !important; border-radius: var(--radius-lg) !important; }
.kx-275 { color: #EF4444 !important; background: rgba(239, 68, 68, 0.08) !important; padding: 12px !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; width: 48px !important; height: 48px !important; flex-shrink: 0 !important; border: 1px solid rgba(239, 68, 68, 0.15) !important; }
.kx-276 { margin: 0 0 6px 0 !important; color: #fff !important; font-weight: 700 !important; font-size: 1.05rem !important; }
.kx-277 { margin: 0 0 10px 0 !important; color: var(--text-muted) !important; font-size: 0.875rem !important; line-height: 1.5 !important; }
.kx-278 { font-weight: 600 !important; cursor: pointer !important; display: inline-flex !important; align-items: center !important; gap: 6px !important; }
.kx-279 { display: flex !important; flex-direction: column !important; gap: 1.5rem !important; grid-column: span 2 !important; }
.kx-280 { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important; gap: 1.5rem !important; align-items: stretch !important; }
.kx-281 { padding: 20px !important; display: flex !important; flex-direction: column !important; gap: 16px !important; height: 100% !important; box-sizing: border-box !important; }
.kx-282 { display: flex !important; justify-content: space-between !important; align-items: center !important; gap: 10px !important; }
.kx-283 { display: flex !important; align-items: center !important; gap: 10px !important; min-width: 0 !important; flex: 1 !important; }
.kx-284 { color: var(--kick-green) !important; background: rgba(83, 252, 24, 0.05) !important; padding: 8px !important; border-radius: 8px !important; border: 1px solid rgba(83, 252, 24, 0.15) !important; display: flex !important; align-items: center !important; justify-content: center !important; width: 36px !important; height: 36px !important; flex-shrink: 0 !important; }
.kx-285 { min-width: 0 !important; flex: 1 !important; }
.kx-286 { margin: 0 !important; font-size: 0.95rem !important; font-weight: 700 !important; color: var(--text-primary) !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; }
.kx-287 { color: var(--text-muted) !important; font-size: 0.75rem !important; display: block !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; }
.kx-288 { display: flex !important; flex-direction: column !important; gap: 12px !important; flex: 1 !important; }
.kx-289 { display: flex !important; justify-content: space-between !important; font-size: 0.8rem !important; margin-bottom: 2px !important; }
.kx-290 { color: var(--kick-green) !important; font-weight: 700 !important; }
.kx-291 { width: 100% !important; accent-color: var(--app-primary) !important; }
.kx-292 { margin-top: auto !important; padding-top: 8px !important; border-top: 1px solid var(--border-subtle) !important; }
.kx-293 { color: var(--text-muted) !important; font-size: 0.76rem !important; font-weight: 600 !important; }
.kx-294 { font-size: 0.82rem !important; padding: 6px 10px !important; }
.kx-295 { color: var(--app-primary) !important; background: rgba(99, 102, 241, 0.05) !important; padding: 8px !important; border-radius: 8px !important; border: 1px solid rgba(99, 102, 241, 0.15) !important; display: flex !important; align-items: center !important; justify-content: center !important; width: 36px !important; height: 36px !important; flex-shrink: 0 !important; }
.kx-296 { accent-color: var(--app-primary) !important; }
.kx-297 { font-size: 0.8rem !important; color: var(--text-muted) !important; cursor: pointer !important; user-select: none !important; }
.kx-298 { color: #F59E0B !important; background: rgba(245, 158, 11, 0.05) !important; padding: 8px !important; border-radius: 8px !important; border: 1px solid rgba(245, 158, 11, 0.15) !important; display: flex !important; align-items: center !important; justify-content: center !important; width: 36px !important; height: 36px !important; flex-shrink: 0 !important; }
.kx-299 { color: #EC4899 !important; background: rgba(236, 72, 153, 0.05) !important; padding: 8px !important; border-radius: 8px !important; border: 1px solid rgba(236, 72, 153, 0.15) !important; display: flex !important; align-items: center !important; justify-content: center !important; width: 36px !important; height: 36px !important; font-weight: bold !important; font-size: 13px !important; flex-shrink: 0 !important; }
.kx-300 { color: #EC4899 !important; font-weight: 700 !important; }
.kx-301 { color: #EF4444 !important; background: rgba(239, 68, 68, 0.05) !important; padding: 8px !important; border-radius: 8px !important; border: 1px solid rgba(239, 68, 68, 0.15) !important; display: flex !important; align-items: center !important; justify-content: center !important; width: 36px !important; height: 36px !important; flex-shrink: 0 !important; }
.kx-302 { resize: vertical !important; font-family: inherit !important; font-size: 0.85rem !important; height: 80px !important; }
.kx-303 { color: #3B82F6 !important; background: rgba(59, 130, 246, 0.05) !important; padding: 8px !important; border-radius: 8px !important; border: 1px solid rgba(59, 130, 246, 0.15) !important; display: flex !important; align-items: center !important; justify-content: center !important; width: 36px !important; height: 36px !important; flex-shrink: 0 !important; }
.kx-304 { color: #8B5CF6 !important; background: rgba(139, 92, 246, 0.05) !important; padding: 8px !important; border-radius: 8px !important; border: 1px solid rgba(139, 92, 246, 0.15) !important; display: flex !important; align-items: center !important; justify-content: center !important; width: 36px !important; height: 36px !important; flex-shrink: 0 !important; }
.kx-305 { color: #06B6D4 !important; background: rgba(6, 182, 212, 0.05) !important; padding: 8px !important; border-radius: 8px !important; border: 1px solid rgba(6, 182, 212, 0.15) !important; display: flex !important; align-items: center !important; justify-content: center !important; width: 36px !important; height: 36px !important; flex-shrink: 0 !important; }
.kx-306 { margin: 0 !important; font-size: 1.05rem !important; font-weight: 700 !important; display: flex !important; align-items: center !important; gap: 8px !important; border-bottom: 1px solid var(--border-subtle) !important; padding-bottom: 10px !important; color: var(--text-primary) !important; }
.kx-307 { display: flex !important; gap: 10px !important; margin-top: 12px !important; }
.kx-308 { font-size: 0.8rem !important; padding: 8px 14px !important; border-radius: 6px !important; cursor: pointer !important; display: inline-flex !important; align-items: center !important; gap: 6px !important; }
.kx-309 { margin-top: 5px !important; }
.kx-310 { display: flex !important; flex-direction: column !important; gap: 12px !important; margin-top: 8px !important; }
.kx-311 { font-size: 0.85rem !important; color: var(--text-muted) !important; cursor: not-allowed !important; user-select: none !important; }
.kx-312 { font-size: 0.85rem !important; color: var(--text-secondary) !important; cursor: pointer !important; user-select: none !important; }
.kx-313 { grid-column: span 2 !important; margin-top: 1.5rem !important; }
.kx-314 { display:flex !important; flex-direction:column !important; align-items:center !important; justify-content:center !important; min-height:85vh !important; text-align:center !important; padding:40px 20px !important; font-family:'Space Grotesk', sans-serif !important; }
.kx-315 { background:rgba(15, 11, 30, 0.7) !important; border:1px solid rgba(139, 92, 246, 0.2) !important; backdrop-filter:blur(24px) !important; -webkit-backdrop-filter:blur(24px) !important; border-radius:24px !important; padding:40px 30px !important; max-width:520px !important; width:100% !important; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.05) !important; display:flex !important; flex-direction:column !important; align-items:center !important; gap:20px !important; }
.kx-316 { background:rgba(139, 92, 246, 0.05) !important; border:1px solid rgba(139, 92, 246, 0.15) !important; width:80px !important; height:80px !important; border-radius:50% !important; display:flex !important; align-items:center !important; justify-content:center !important; box-shadow:0 0 25px rgba(139, 92, 246, 0.15) !important; }
.kx-317 { filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.55)) !important; }
.kx-318 { display:flex !important; flex-direction:column !important; gap:8px !important; }
.kx-319 { font-size:1.6rem !important; font-weight:700 !important; color:#fff !important; margin:0 !important; letter-spacing:-0.5px !important; }
.kx-320 { color:var(--text-muted) !important; font-size:0.9rem !important; line-height:1.5 !important; margin:0 !important; max-width:440px !important; }
.kx-321 { display:flex !important; flex-direction:column !important; gap:16px !important; width:100% !important; margin-top:8px !important; text-align:left !important; }
.kx-322 { background:rgba(83, 252, 24, 0.02) !important; border:1px solid rgba(83, 252, 24, 0.12) !important; border-radius:16px !important; padding:20px !important; display:flex !important; flex-direction:column !important; gap:12px !important; }
.kx-323 { display:flex !important; align-items:center !important; gap:12px !important; }
.kx-324 { background:rgba(83, 252, 24, 0.08) !important; width:36px !important; height:36px !important; border-radius:10px !important; display:flex !important; align-items:center !important; justify-content:center !important; border:1px solid rgba(83, 252, 24, 0.2) !important; }
.kx-325 { margin:0 !important; font-size:1rem !important; font-weight:700 !important; color:#fff !important; }
.kx-326 { font-size:0.7rem !important; color:#53fc18 !important; font-weight:600 !important; text-transform:uppercase !important; letter-spacing:0.5px !important; }
.kx-327 { color:var(--text-muted) !important; font-size:0.85rem !important; line-height:1.4 !important; margin:0 !important; }
.kx-328 { width:100% !important; margin-top:4px !important; background:linear-gradient(135deg, #53fc18, #3fba0e) !important; color:#000 !important; font-family:'Space Grotesk', sans-serif !important; font-weight:700 !important; font-size:0.9rem !important; text-transform:uppercase !important; letter-spacing:0.5px !important; border:none !important; padding:12px !important; border-radius:12px !important; cursor:pointer !important; display:flex !important; align-items:center !important; justify-content:center !important; gap:8px !important; box-shadow:0 4px 15px rgba(83, 252, 24, 0.2) !important; transition:transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease !important; }
.kx-329 { flex-shrink:0 !important; }
.kx-330 { background:rgba(139, 92, 246, 0.02) !important; border:1px solid rgba(139, 92, 246, 0.12) !important; border-radius:16px !important; padding:20px !important; display:flex !important; flex-direction:column !important; gap:12px !important; }
.kx-331 { background:rgba(139, 92, 246, 0.08) !important; width:36px !important; height:36px !important; border-radius:10px !important; display:flex !important; align-items:center !important; justify-content:center !important; border:1px solid rgba(139, 92, 246, 0.2) !important; }
.kx-332 { font-size:0.7rem !important; color:#a78bfa !important; font-weight:600 !important; text-transform:uppercase !important; letter-spacing:0.5px !important; }
.kx-333 { max-width: 500px !important; width: 90% !important; padding: 0 !important; }
.kx-334 { padding: 20px 24px !important; border-bottom: 1px solid var(--border-subtle) !important; }
.kx-335 { display: flex !important; align-items: center !important; gap: 10px !important; margin: 0 !important; }
.kx-336 { display: flex !important; align-items: center !important; justify-content: center !important; width: 34px !important; height: 34px !important; border-radius: var(--radius-sm) !important; background: rgba(139, 92, 246, 0.15) !important; color: var(--app-primary) !important; }
.kx-337 { display: flex !important; flex-direction: column !important; gap: 16px !important; padding: 24px !important; max-height: calc(85vh - 120px) !important; overflow-y: auto !important; }
.kx-338 { display: flex !important; flex-direction: column !important; gap: 6px !important; }
.kx-339 { font-size: 0.85rem !important; margin: 0 !important; }
.kx-340 { display: flex !important; align-items: center !important; width: 100% !important; }
.kx-341 { width: 100% !important; }
.kx-342 { display: flex !important; flex-direction: column !important; gap: 6px !important; margin-top: 10px !important; }
.kx-343 { width: 100% !important; resize: vertical !important; margin-top: 4px !important; }
.kx-344 { text-align: right !important; font-size: 0.75rem !important; color: var(--text-muted) !important; }
.kx-345 { font-size: 0.85rem !important; }
.kx-346 { position: relative !important; display: flex !important; align-items: center !important; margin-top: 6px !important; }
.kx-347 { padding-right: 48px !important; width: 100% !important; }
.kx-348 { position: absolute !important; right: 12px !important; font-size: 0.75rem !important; color: var(--text-muted) !important; font-weight: bold !important; pointer-events: none !important; }
.kx-349 { margin-top: 6px !important; width: 100% !important; height: 42px !important; background: rgba(0,0,0,0.3) !important; border: 1px solid var(--border-subtle) !important; color: var(--text-primary) !important; border-radius: 8px !important; padding: 0 12px !important; }
.kx-350 { margin-top: 10px !important; display: flex !important; align-items: center !important; justify-content: space-between !important; }
.kx-351 { background: rgba(0, 0, 0, 0.4) !important; border: 1px solid var(--border-subtle) !important; border-radius: var(--radius-md) !important; padding: 14px 16px !important; margin-top: 6px !important; display: flex !important; flex-direction: column !important; gap: 10px !important; }
.kx-352 { font-size: 0.72rem !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 0.8px !important; color: var(--text-muted) !important; display: flex !important; align-items: center !important; justify-content: space-between !important; }
.kx-353 { font-size: 0.7rem !important; color: var(--app-primary) !important; font-weight: 600 !important; display: flex !important; align-items: center !important; gap: 4px !important; }
.kx-354 { display: flex !important; flex-direction: column !important; gap: 8px !important; font-size: 0.84rem !important; line-height: 1.4 !important; }
.kx-355 { display: flex !important; gap: 6px !important; align-items: flex-start !important; }
.kx-356 { color: #60A5FA !important; font-weight: 600 !important; flex-shrink: 0 !important; }
.kx-357 { color: var(--text-primary) !important; font-family: var(--font-mono) !important; font-size: 0.82rem !important; word-break: break-word !important; }
.kx-358 { display: flex !important; gap: 6px !important; align-items: flex-start !important; background: rgba(139, 92, 246, 0.08) !important; border-left: 3px solid var(--app-primary) !important; padding: 6px 10px !important; border-radius: 4px !important; transition: opacity 0.2s ease !important; }
.kx-359 { color: var(--app-primary) !important; font-weight: 700 !important; flex-shrink: 0 !important; }
.kx-360 { color: #E2E8F0 !important; word-break: break-word !important; }
.kx-361 { display:none !important; margin: 0 !important; }
.kx-362 { padding: 20px 24px !important; border-top: 1px solid var(--border-subtle) !important; display: flex !important; justify-content: flex-end !important; gap: 10px !important; margin-top: 0 !important; }
.kx-363 { padding: 10px 24px !important; }
.kx-364 { max-width: 650px !important; width: 92% !important; padding: 0 !important; }
.kx-365 { padding: 20px 24px !important; border-bottom: 1px solid var(--border-subtle) !important; display: flex !important; align-items: center !important; justify-content: space-between !important; }
.kx-366 { display: flex !important; align-items: center !important; justify-content: center !important; width: 36px !important; height: 36px !important; border-radius: 8px !important; background: rgba(83, 252, 24, 0.12) !important; color: #53FC18 !important; }
.kx-367 { font-weight: 700 !important; color: #fff !important; }
.kx-368 { font-size: 0.78rem !important; color: var(--text-muted) !important; font-weight: 400 !important; }
.kx-369 { padding: 20px 24px !important; display: flex !important; flex-direction: column !important; gap: 16px !important; max-height: calc(85vh - 130px) !important; overflow-y: auto !important; }
.kx-370 { display: flex !important; gap: 6px !important; background: rgba(0, 0, 0, 0.3) !important; padding: 4px !important; border-radius: 10px !important; border: 1px solid var(--border-subtle) !important; flex-wrap: wrap !important; }
.kx-371 { flex: 1 !important; border: none !important; font-size: 0.78rem !important; font-weight: 600 !important; background: var(--app-primary) !important; color: #fff !important; }
.kx-372 { flex: 1 !important; border: none !important; font-size: 0.78rem !important; font-weight: 600 !important; background: transparent !important; color: var(--text-muted) !important; }
.kx-373 { background: rgba(139, 92, 246, 0.08) !important; border: 1px solid rgba(139, 92, 246, 0.25) !important; border-radius: 10px !important; padding: 12px 14px !important; font-size: 0.82rem !important; line-height: 1.5 !important; color: var(--text-main) !important; }
.kx-374 { font-weight: 700 !important; color: #53FC18 !important; margin-bottom: 4px !important; display: flex !important; align-items: center !important; gap: 6px !important; }
.kx-375 { display: flex !important; align-items: center !important; justify-content: space-between !important; margin-bottom: 6px !important; }
.kx-376 { font-size: 0.78rem !important; color: #53FC18 !important; cursor: pointer !important; text-decoration: underline !important; font-weight: 600 !important; }
.kx-377 { width: 100% !important; font-family: var(--font-mono) !important; font-size: 0.82rem !important; resize: vertical !important; }
.kx-378 { display: none !important; background: rgba(0, 0, 0, 0.4) !important; border: 1px solid rgba(83, 252, 24, 0.3) !important; border-radius: 10px !important; padding: 12px 14px !important; font-size: 0.82rem !important; }
.kx-379 { display: flex !important; align-items: center !important; justify-content: space-between !important; margin-bottom: 8px !important; }
.kx-380 { font-weight: 700 !important; color: #53FC18 !important; }
.kx-381 { max-height: 140px !important; overflow-y: auto !important; display: flex !important; flex-direction: column !important; gap: 6px !important; padding-right: 4px !important; }
.kx-382 { padding: 16px 24px !important; border-top: 1px solid var(--border-subtle) !important; display: flex !important; justify-content: space-between !important; align-items: center !important; }
.kx-383 { font-size: 0.78rem !important; color: var(--text-muted) !important; }
.kx-384 { display: flex !important; gap: 10px !important; }
.kx-385 { background: #53FC18 !important; color: #0E0E1D !important; font-weight: 700 !important; padding: 10px 22px !important; }
.kx-386 { max-width: 460px !important; }
.kx-387 { display: flex !important; align-items: center !important; justify-content: space-between !important; }
.kx-388 { padding: 5px 8px !important; border-color: rgba(255,255,255,0.12) !important; color: var(--text-muted) !important; }
.kx-389 { margin-bottom: 14px !important; }
.kx-390 { margin-bottom: 8px !important; }
.kx-391 { max-width: 500px !important; }
.kx-392 { max-width: 680px !important; }
.kx-393 { max-height: 440px !important; overflow-y: auto !important; }
.kx-394 { margin-top: 8px !important; }
.kx-395 { display: flex !important; align-items: center !important; gap: 8px !important; margin: 0 !important; }
.kx-396 { max-width: 400px !important; }
.kx-397 { background: rgba(239, 68, 68, 0.12) !important; color: #EF4444 !important; border: 1px solid rgba(239, 68, 68, 0.25) !important; }
.kx-398 { color: #F87171 !important; margin: 0 !important; }
.kx-399 { padding: 16px 20px !important; }
.kx-400 { color: var(--text-secondary) !important; font-size: 0.88rem !important; line-height: 1.5 !important; background: rgba(255, 255, 255, 0.025) !important; border: 1px solid rgba(255, 255, 255, 0.05) !important; border-radius: var(--radius-md) !important; padding: 12px 14px !important; }
.kx-401 { padding: 8px 16px !important; font-size: 0.84rem !important; font-weight: 600 !important; background: #EF4444 !important; border: none !important; color: #fff !important; border-radius: var(--radius-md) !important; box-shadow: 0 0 14px rgba(239, 68, 68, 0.35) !important; transition: all 0.2s !important; white-space: nowrap !important; flex-shrink: 0 !important; display: inline-flex !important; align-items: center !important; gap: 6px !important; }
.kx-402 { max-width: 480px !important; }
.kx-403 { color: #8B5CF6 !important; }
.kx-404 { padding-bottom: 12px !important; }
.kx-405 { display: flex !important; background: rgba(0, 0, 0, 0.35) !important; border: 1px solid rgba(255, 255, 255, 0.06) !important; border-radius: var(--radius-md) !important; padding: 4px !important; gap: 4px !important; }
.kx-406 { flex: 1 !important; background: none !important; border: none !important; color: var(--text-muted) !important; padding: 8px !important; font-weight: 600 !important; font-size: 0.85rem !important; cursor: pointer !important; border-radius: 8px !important; transition: all 0.2s !important; }
.kx-407 { display: block; margin-top: 6px !important; }
.kx-408 { margin-bottom: 16px !important; display: flex !important; flex-direction: column !important; align-items: center !important; gap: 8px !important; }
.kx-409 { display: inline-flex !important; align-items: center !important; gap: 5px !important; font-size: 0.73rem !important; font-weight: 600 !important; padding: 4px 10px !important; border-radius: 20px !important; background: rgba(83, 252, 24, 0.08) !important; border: 1px solid rgba(83, 252, 24, 0.3) !important; color: #53FC18 !important; cursor: pointer !important; transition: all 0.2s !important; }
.kx-410 { background: rgba(83, 252, 24, 0.05) !important; border: 1px solid rgba(83, 252, 24, 0.2) !important; border-radius: var(--radius-md) !important; padding: 10px 14px !important; margin-bottom: 16px !important; display: flex !important; align-items: center !important; justify-content: space-between !important; }
.kx-411 { width: 8px !important; height: 8px !important; border-radius: 50% !important; background: #53fc18 !important; box-shadow: 0 0 8px #53fc18 !important; }
.kx-412 { font-size: 0.82rem !important; font-weight: 600 !important; color: #fff !important; }
.kx-413 { font-size: 0.72rem !important; color: #53fc18 !important; font-weight: 700 !important; text-transform: uppercase !important; }
.kx-414 { display: none; margin-top: 6px !important; }
.kx-415 { margin-bottom: 16px !important; }
.kx-416 { font-size: 0.8rem !important; color: var(--text-muted) !important; line-height: 1.4 !important; margin-bottom: 10px !important; }
.kx-417 { gap: 10px !important; width: 100% !important; display: flex !important; justify-content: center !important; align-items: center !important; }
.kx-418 { color: #f87171 !important; font-size: 0.8rem !important; margin-top: 6px !important; display: none !important; }
.kx-419 { max-height: 220px !important; overflow-y: auto !important; }
.kx-420 { display: flex !important; flex-direction: column !important; gap: 8px !important; }
.kx-421 { display: flex !important; gap: 8px !important; }
.kx-422 { white-space: nowrap !important; padding: 0 16px !important; }
.kx-423 { margin-top: 6px !important; display: block !important; }
.kx-424 { max-height: 200px !important; overflow-y: auto !important; }
.kx-425 { display: none !important; text-align: center !important; padding: 24px 10px !important; color: var(--text-muted) !important; }
.kx-426 { margin-bottom: 8px !important; opacity: 0.5 !important; }
.kx-427 { font-size: 0.85rem !important; line-height: 1.4 !important; margin: 0 !important; }
.kx-428 { display: none; margin-top: 10px !important; }
.kx-429 { background: rgba(255, 255, 255, 0.03) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important; border-radius: var(--radius-md) !important; padding: 16px !important; margin-bottom: 16px !important; }
.kx-430 { display: flex !important; align-items: center !important; justify-content: space-between !important; margin-bottom: 12px !important; padding-bottom: 12px !important; border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important; }
.kx-431 { font-size: 0.85rem !important; color: var(--text-muted) !important; }
.kx-432 { font-size: 0.85rem !important; font-weight: 700 !important; color: #fff !important; }
.kx-433 { font-size: 0.85rem !important; font-weight: 600 !important; color: #53FC18 !important; }
.kx-434 { display: flex !important; align-items: center !important; justify-content: space-between !important; margin-bottom: 4px !important; }
.kx-435 { font-size: 0.85rem !important; font-weight: 600 !important; color: #fff !important; }
.kx-436 { display: flex !important; flex-direction: column !important; gap: 10px !important; }
.kx-437 { display: inline-flex !important; justify-content: center !important; align-items: center !important; gap: 8px !important; text-decoration: none !important; font-weight: 600 !important; padding: 10px !important; font-size: 0.85rem !important; }
.kx-438 { width: 100% !important; justify-content: center !important; font-size: 0.85rem !important; }
.kx-439 { max-width: 520px !important; width: 92% !important; padding: 0 !important; }
.kx-440 { display: flex !important; align-items: center !important; justify-content: center !important; width: 30px !important; height: 30px !important; border-radius: var(--radius-sm) !important; background: rgba(59, 130, 246, 0.1) !important; color: #3B82F6 !important; }
.kx-441 { padding: 24px !important; display: flex !important; flex-direction: column !important; gap: 14px !important; }
.kx-442 { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
.kx-443 { margin-top: 4px !important; display: block !important; }
.kx-444 { display: flex !important; flex-direction: row !important; align-items: center !important; justify-content: space-between !important; gap: 12px !important; margin-top: 6px !important; }
.kx-445 { padding: 16px 24px !important; border-top: 1px solid var(--border-subtle) !important; display: flex !important; justify-content: flex-end !important; gap: 10px !important; }
.kx-446 { max-width: 660px !important; }
.kx-447 { max-height: 65vh !important; overflow-y: auto !important; }
.kx-448 { max-width: 520px !important; width: 90% !important; padding: 0 !important; border: 1px solid rgba(139, 92, 246, 0.25) !important; background: #0D0D14 !important; box-shadow: 0 20px 40px rgba(0,0,0,0.8) !important; }
.kx-449 { padding: 20px 24px !important; border-bottom: 1px solid rgba(255,255,255,0.07) !important; display: flex !important; justify-content: space-between !important; align-items: center !important; background: rgba(139, 92, 246, 0.05) !important; }
.kx-450 { display: flex !important; align-items: center !important; gap: 10px !important; margin: 0 !important; font-size: 1.1rem !important; color: #fff !important; }
.kx-451 { background: none !important; border: none !important; color: var(--text-muted) !important; cursor: pointer !important; padding: 4px !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.kx-452 { padding: 24px !important; display: flex !important; flex-direction: column !important; gap: 16px !important; }
.kx-453 { background: rgba(245, 158, 11, 0.08) !important; border: 1px solid rgba(245, 158, 11, 0.25) !important; border-left: 4px solid #F59E0B !important; padding: 14px !important; border-radius: var(--radius-md) !important; font-size: 0.86rem !important; color: #FBBF24 !important; line-height: 1.5 !important; }
.kx-454 { font-weight: 700 !important; margin-bottom: 6px !important; display: flex !important; align-items: center !important; gap: 6px !important; }
.kx-455 { color: #53FC18 !important; font-weight: bold !important; }
.kx-456 { font-size: 0.85rem !important; color: var(--text-muted) !important; margin: 0 !important; line-height: 1.6 !important; }
.kx-457 { display: flex !important; gap: 12px !important; justify-content: flex-end !important; margin-top: 8px !important; }
.kx-458 { font-weight: 600 !important; display: inline-flex !important; align-items: center !important; gap: 8px !important; }
.kx-459 { max-width: 480px !important; width: 90% !important; padding: 0 !important; }
.kx-460 { padding: 20px 24px !important; border-bottom: 1px solid var(--border-subtle) !important; display: flex !important; justify-content: space-between !important; align-items: center !important; }
.kx-461 { margin-bottom: 16px !important; background: rgba(83, 252, 24, 0.08) !important; border: 1px solid rgba(83, 252, 24, 0.2) !important; padding: 12px !important; border-radius: var(--radius-md) !important; font-size: 0.85rem !important; color: #53fc18 !important; }
.kx-462 { margin-bottom: 20px !important; }
.kx-463 { display: flex !important; gap: 10px !important; justify-content: flex-end !important; }
.kx-464 { max-width: 1400px !important; width: 96% !important; padding: 32px !important; background: #0D0D14 !important; border: 1px solid rgba(139, 92, 246, 0.3) !important; border-radius: 20px !important; max-height: 90vh !important; overflow-y: auto !important; }
.kx-465 { display: flex !important; justify-content: space-between !important; align-items: flex-start !important; margin-bottom: 24px !important; }
.kx-466 { font-size: 1.8rem !important; margin: 0 !important; color: #fff !important; display: flex !important; align-items: center !important; gap: 10px !important; }
.kx-467 { font-size: 0.95rem !important; color: var(--text-muted) !important; margin: 8px 0 0 0 !important; }
.kx-468 { background: none !important; border: none !important; color: var(--text-muted) !important; cursor: pointer !important; padding: 6px !important; }
.kx-469 { display: flex !important; justify-content: center !important; margin-bottom: 32px !important; }
.kx-470 { background: rgba(255,255,255,0.05) !important; border: 1px solid rgba(255,255,255,0.1) !important; border-radius: 30px !important; padding: 4px !important; display: flex !important; gap: 4px !important; }
.kx-471 { border: none !important; padding: 10px 24px !important; border-radius: 26px !important; font-size: 0.9rem !important; font-weight: 600 !important; cursor: pointer !important; transition: all 0.25s ease !important; }
.kx-472 { border: none !important; padding: 10px 24px !important; border-radius: 26px !important; font-size: 0.9rem !important; font-weight: 600 !important; cursor: pointer !important; transition: all 0.25s ease !important; position: relative !important; }
.kx-473 { background: #FBBF24 !important; color: #0E0E1D !important; font-size: 0.65rem !important; padding: 2px 8px !important; border-radius: 10px !important; font-weight: 700 !important; margin-left: 6px !important; }
.kx-474 { grid-template-columns: repeat(3, 1fr) !important; gap: 20px !important; }
.kx-475 { background: rgba(255,255,255,0.03) !important; border: 1px solid rgba(255,255,255,0.08) !important; border-radius: 16px !important; padding: 24px !important; display: flex !important; flex-direction: column !important; }
.kx-476 { font-size: 0.75rem !important; text-transform: uppercase !important; font-weight: 700 !important; color: #a1a1aa !important; margin-bottom: 8px !important; }
.kx-477 { font-size: 1.5rem !important; font-weight: 800 !important; color: #fff !important; margin-bottom: 4px !important; }
.kx-478 { font-size: 2rem !important; font-weight: 800 !important; color: #fff !important; margin: 12px 0 !important; }
.kx-479 { font-size:0.85rem !important; font-weight:400 !important; color:var(--text-muted) !important; }
.kx-480 { display: flex !important; align-items: center !important; gap: 8px !important; margin-bottom: 8px !important; font-size: 0.9rem !important; color: #e4e4e7 !important; }
.kx-481 { width: 100% !important; margin-top: auto !important; opacity: 0.6 !important; cursor: default !important; }
.kx-482 { background: rgba(139, 92, 246, 0.08) !important; border: 2px solid rgba(139, 92, 246, 0.3) !important; border-radius: 16px !important; padding: 24px !important; display: flex !important; flex-direction: column !important; position: relative !important; }
.kx-483 { position: absolute !important; top: -12px !important; left: 50% !important; transform: translateX(-50%) !important; background: linear-gradient(135deg, #8B5CF6, #A78BFA) !important; color: white !important; padding: 6px 16px !important; border-radius: 20px !important; font-size: 0.75rem !important; font-weight: 700 !important; text-transform: uppercase !important; box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4) !important; }
.kx-484 { font-size: 2rem !important; font-weight: 800 !important; color: #53FC18 !important; margin: 12px 0 !important; }
.kx-485 { width: 100% !important; margin-top: auto !important; text-align: center !important; text-decoration: none !important; padding: 12px !important; font-weight: 600 !important; }
.kx-486 { background: rgba(83, 252, 24, 0.08) !important; border: 2px solid rgba(83, 252, 24, 0.3) !important; border-radius: 16px !important; padding: 24px !important; display: flex !important; flex-direction: column !important; }
.kx-487 { font-size: 0.75rem !important; text-transform: uppercase !important; font-weight: 700 !important; color: #53FC18 !important; margin-bottom: 8px !important; }
.kx-488 { width: 100% !important; margin-top: auto !important; background: var(--app-primary) !important; color: #ffffff !important; text-align: center !important; text-decoration: none !important; font-weight: 700 !important; padding: 12px !important; box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4) !important; }
.kx-489 { grid-template-columns: repeat(3, 1fr) !important; gap: 20px !important; }
.kx-490 { font-size: 0.85rem !important; color: #53FC18 !important; margin-bottom: 8px !important; font-weight: 600 !important; }
.kx-491 { font-size: 0.8rem !important; color: var(--text-muted) !important; text-decoration: line-through !important; margin-bottom: 16px !important; }
.kx-492 { margin-top: 24px !important; text-align: center !important; }
.kx-493 { display: inline-flex !important; align-items: center !important; gap: 8px !important; color: #c084fc !important; text-decoration: none !important; font-size: 0.9rem !important; font-weight: 600 !important; padding: 12px 24px !important; border: 1px solid rgba(139, 92, 246, 0.3) !important; border-radius: 30px !important; transition: all 0.2s !important; }
.kx-494 { max-width: 480px !important; width: 92% !important; padding: 0 !important; }
.kx-495 { font-size: 0.88rem !important; color: var(--text-muted) !important; margin: 0 !important; line-height: 1.5 !important; }
.kx-496 { font-weight: 700 !important; }
.kx-497 { width: 100% !important; text-transform: uppercase !important; font-weight: 700 !important; letter-spacing: 0.5px !important; }

/* ── Plan Limit Banner Visibility Rule & Bot Status Helpers ── */
.plan-limit-banner[style*="display: none"],
.plan-limit-banner.hidden,
.plan-limit-banner:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

.bot-toggle-label.bot-on {
  color: var(--kick-green, #53FC18) !important;
}

.bot-toggle-label.bot-off {
  color: var(--text-muted) !important;
}

.status-dot.status-on {
  background: var(--kick-green, #53FC18) !important;
  box-shadow: 0 0 8px var(--kick-green, #53FC18) !important;
}

.status-dot.status-off {
  background: #EF4444 !important;
  box-shadow: 0 0 8px #EF4444 !important;
}