/* ==========================================================================
   RIFT VERIFICATION DASHBOARD - HIGH PERFORMANCE OBSIDIAN & GOLD STYLESHEET
   Accent Color: #fada6a (Optimized for 0-Lag 144Hz Smooth Rendering)
   ========================================================================== */

:root {
    --bg-main: #07070a;
    --bg-surface: #0e0e14;
    --bg-card: #101017;
    --bg-card-hover: #161622;
    --bg-input: #0b0b10;
    --bg-dropdown: #12121a;
    
    --gold-primary: #fada6a;
    --gold-hover: #ffe58f;
    --gold-dark: #c6a337;
    --gold-glow: rgba(250, 218, 106, 0.35);
    --gold-subtle: rgba(250, 218, 106, 0.08);
    --gold-border: rgba(250, 218, 106, 0.2);
    --gold-border-bright: rgba(250, 218, 106, 0.6);

    --text-main: #f5f5f7;
    --text-muted: #8e8e9b;
    --text-gold: #fada6a;
    --text-dim: #5c5c68;

    --danger: #ff4757;
    --danger-glow: rgba(255, 71, 87, 0.35);
    --success: #2ed573;
    --success-glow: rgba(46, 213, 115, 0.35);
    
    --font-heading: 'Syne', 'Outfit', sans-serif;
    --font-body: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --transition-fast: 0.15s ease;
    --transition-smooth: 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.5;
}

/* Background canvas and grid */
#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(250, 218, 106, 0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(250, 218, 106, 0.025) 1px, transparent 1px);
}

.app-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   NAVBAR & HEADER
   ========================================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #0e0e15;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 32px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: #15151e;
    border: 1px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px var(--gold-glow);
    transition: var(--transition-smooth);
}

.brand-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--gold-primary);
}

.brand-logo:hover .brand-icon {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--gold-glow);
}

.brand-text h1 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(120deg, #ffffff 40%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

/* User Profile Badge & Dropdown */
.profile-wrapper {
    position: relative;
}

.profile-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 8px;
    background: #13131c;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}

.profile-pill:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 14px var(--gold-glow);
    background: #181824;
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--gold-primary);
    object-fit: cover;
}

.profile-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.profile-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.2;
}

.profile-status {
    font-size: 0.7rem;
    color: var(--gold-primary);
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 220px;
    background: var(--bg-dropdown);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.85);
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 100;
}

.profile-dropdown.show {
    display: flex;
}

.dropdown-header {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.dropdown-header span {
    display: block;
    color: var(--text-main);
    font-weight: 600;
    font-family: var(--font-mono);
    margin-top: 2px;
    font-size: 0.8rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--text-main);
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: var(--transition-fast);
}

.dropdown-item svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.dropdown-item:hover {
    background: rgba(250, 218, 106, 0.1);
    color: var(--gold-primary);
}

.dropdown-item.danger:hover {
    background: rgba(255, 71, 87, 0.15);
    color: var(--danger);
}

/* ==========================================================================
   BUTTONS & CONTROLS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    outline: none;
    text-decoration: none;
    position: relative;
}

.btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, #fada6a, #e5bf45);
    color: #08080a;
    box-shadow: 0 4px 16px var(--gold-glow);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(250, 218, 106, 0.5);
    background: linear-gradient(135deg, #ffe58f, #fada6a);
}

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

.btn-secondary {
    background: #14141d;
    color: var(--text-main);
    border: 1px solid var(--gold-border);
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    background: #1a1a26;
    color: var(--gold-primary);
    box-shadow: 0 0 14px rgba(250, 218, 106, 0.2);
    transform: translateY(-2px);
}

.btn-danger {
    background: rgba(255, 71, 87, 0.15);
    color: #ff6b81;
    border: 1px solid rgba(255, 71, 87, 0.4);
}

.btn-danger:hover {
    background: var(--danger);
    color: #fff;
    box-shadow: 0 0 18px var(--danger-glow);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 7px 12px;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   HERO / HEADER SECTION
   ========================================================================== */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #ffffff 40%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 600px;
}

/* Stats / Info Badges */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition-fast);
}

.stat-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 16px var(--gold-subtle);
    transform: translateY(-2px);
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(250, 218, 106, 0.1);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.stat-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.stat-value.gold {
    color: var(--gold-primary);
    text-shadow: 0 0 10px var(--gold-glow);
}

/* ==========================================================================
   TOOLBAR & SEARCH
   ========================================================================== */
.toolbar-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 260px;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: var(--text-muted);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    background: var(--bg-input);
    border: 1px solid rgba(250, 218, 106, 0.15);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

.search-input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 14px var(--gold-glow);
}

.action-buttons-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ==========================================================================
   ACCOUNTS GRID & CARDS
   ========================================================================== */
.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.account-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.account-card:hover {
    border-color: var(--gold-border-bright);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.7), 0 0 18px rgba(250, 218, 106, 0.12);
}

/* Top-Right Card Checkbox for Bulk Reset */
.card-checkbox {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
    accent-color: var(--gold-primary);
    cursor: pointer;
    z-index: 10;
}

.card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: 28px; /* space for top-right checkbox */
}

.card-avatar-wrapper {
    position: relative;
}

.card-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    border: 2px solid var(--gold-primary);
    background: #15151c;
    object-fit: cover;
    box-shadow: 0 0 12px var(--gold-glow);
}

.card-header-info {
    flex: 1;
    overflow: hidden;
}

.card-username {
    font-size: 1.15rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: rgba(46, 213, 115, 0.15);
    border: 1px solid rgba(46, 213, 115, 0.4);
    border-radius: var(--radius-full);
    color: #2ed573;
    font-size: 0.7rem;
    font-weight: 600;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: #0b0b10;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.detail-label {
    color: var(--text-muted);
}

.detail-val {
    color: var(--text-main);
    font-weight: 600;
    font-family: var(--font-mono);
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-val.gold {
    color: var(--gold-primary);
}

.copy-mini-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 2px;
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.copy-mini-btn:hover {
    color: var(--gold-primary);
}

.copy-mini-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.card-actions .btn {
    flex: 1;
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    padding: 60px 20px;
    background: var(--bg-card);
    border: 1px dashed var(--gold-border);
    border-radius: var(--radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.empty-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(250, 218, 106, 0.1);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    box-shadow: 0 0 20px var(--gold-subtle);
}

.empty-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.empty-state h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.empty-state p {
    color: var(--text-muted);
    max-width: 400px;
    font-size: 0.9rem;
}

/* ==========================================================================
   MODALS (POPUPS)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 8, 0.88);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: #0f0f16;
    border: 1px solid var(--gold-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95), 0 0 30px var(--gold-glow);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    padding: 28px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.2s ease;
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--gold-primary);
    background: rgba(250, 218, 106, 0.1);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.modal-header {
    margin-bottom: 20px;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(250, 218, 106, 0.1);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-full);
    color: var(--gold-primary);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-main);
}

.modal-header p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Copy Link Field */
.copy-field-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.copy-field-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.copy-field-box {
    display: flex;
    align-items: center;
    background: #09090d;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.copy-field-box:focus-within {
    border-color: var(--gold-primary);
    box-shadow: 0 0 14px var(--gold-glow);
}

.copy-field-input {
    flex: 1;
    padding: 12px 14px;
    background: transparent;
    border: none;
    color: var(--gold-primary);
    font-family: var(--font-mono);
    font-size: 0.88rem;
    outline: none;
    font-weight: 600;
}

.copy-field-btn {
    padding: 12px 16px;
    background: linear-gradient(135deg, #fada6a, #e5bf45);
    color: #08080a;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.copy-field-btn:hover {
    background: #ffe58f;
}

.copy-field-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* 10s Auto-Poll Radar */
.poll-indicator-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(250, 218, 106, 0.06);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
}

.radar-circle {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-spinner {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(250, 218, 106, 0.2);
    border-top-color: var(--gold-primary);
    animation: spin 1.2s linear infinite;
}

.radar-core {
    width: 10px;
    height: 10px;
    background: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-primary);
}

.poll-text h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
}

.poll-text p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.poll-countdown {
    color: var(--gold-primary);
    font-weight: 700;
    font-family: var(--font-mono);
}

/* Form Groups */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-input {
    padding: 12px 14px;
    background: var(--bg-input);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 14px var(--gold-glow);
}

/* Bulk List Selection */
.bulk-list-container {
    max-height: 220px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 4px;
}

.bulk-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #111118;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
}

.bulk-item:hover {
    border-color: var(--gold-border);
    background: #181822;
}

.bulk-item input[type="checkbox"] {
    accent-color: var(--gold-primary);
    width: 18px;
    height: 18px;
}

.bulk-item-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gold-primary);
}

.bulk-item-name {
    font-size: 0.88rem;
    font-weight: 600;
}

.bulk-item-id {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */
#toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: #101018;
    border: 1px solid var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 16px var(--gold-glow);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    color: var(--text-main);
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    max-width: 360px;
}

.toast.success {
    border-color: var(--success);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 16px var(--success-glow);
}

.toast.error {
    border-color: var(--danger);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 16px var(--danger-glow);
}

.toast-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    color: var(--success);
}

.toast.error .toast-icon {
    color: var(--danger);
}

.toast.info .toast-icon {
    color: var(--gold-primary);
}

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

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #08080a;
}

::-webkit-scrollbar-thumb {
    background: #1f1f2a;
    border-radius: 4px;
    border: 1px solid rgba(250, 218, 106, 0.1);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

@media (max-width: 768px) {
    .app-container {
        padding: 16px 12px 60px;
    }
    .navbar {
        padding: 12px 16px;
    }
    .hero-section {
        flex-direction: column;
        align-items: flex-start;
    }
    .toolbar-section {
        flex-direction: column;
        align-items: stretch;
    }
    .action-buttons-group {
        justify-content: stretch;
    }
    .action-buttons-group .btn {
        flex: 1;
    }
    .accounts-grid {
        grid-template-columns: 1fr;
    }
}
