:root {
    --color-bg: #020617;
    --color-surface: #0b1329;
    --color-surface-card: rgba(15, 23, 42, 0.45);
    --color-border: rgba(255, 255, 255, 0.07);
    --color-border-glow: rgba(168, 85, 247, 0.15);
    --color-text: #f8fafc;
    --color-text-dim: #94a3b8;
    --color-primary: #a855f7;
    --color-primary-glow: rgba(168, 85, 247, 0.35);
    --color-secondary: #00f2ff;
    --color-secondary-glow: rgba(0, 242, 255, 0.25);
    --color-success: #10b981;
    --color-success-glow: rgba(16, 185, 129, 0.2);
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    
    --sidebar-width: 290px;
    --sidebar-collapsed-width: 80px;
    --glass-blur: blur(20px);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Lexend', var(--font-sans);
    --font-mono: 'Fira Code', monospace;
}

body.light-mode {
    --color-bg: #f1f5f9;
    --color-surface: #ffffff;
    --color-surface-card: rgba(255, 255, 255, 0.8);
    --color-border: rgba(15, 23, 42, 0.08);
    --color-border-glow: rgba(168, 85, 247, 0.08);
    --color-text: #0f172a;
    --color-text-dim: #64748b;
    --color-primary: #8b5cf6;
    --color-primary-glow: rgba(139, 92, 246, 0.15);
    --color-secondary: #0ea5e9;
    --color-secondary-glow: rgba(14, 165, 233, 0.15);
    --color-success: #16a34a;
    --color-success-glow: rgba(22, 163, 74, 0.1);
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    min-height: 100vh;
    overflow: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

#canvas-ambient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.65;
}

.app-container {
    display: flex;
    height: 100vh;
    width: 100vw;
    position: relative;
}

/* --- SIDEBAR STYLE --- */
.sidebar {
    width: var(--sidebar-width);
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 19, 41, 0.65) 0%, rgba(2, 6, 23, 0.85) 100%);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.2rem;
    position: relative;
    z-index: 100;
    transition: var(--transition);
    flex-shrink: 0;
}

.sidebar.collapsed {
    width: var(--sidebar-collapsed-width);
    padding: 1.5rem 0.8rem;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
    overflow: hidden;
}

.sidebar.collapsed .sidebar-header {
    justify-content: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
    transition: var(--transition);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    filter: drop-shadow(0 0 8px var(--color-primary-glow));
    animation: rotateLogo 8s linear infinite;
}

@keyframes rotateLogo {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ffffff 0%, #a855f7 50%, #00f2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.sidebar.collapsed .logo-text {
    display: none;
}

.collapse-btn {
    background: transparent;
    border: none;
    color: var(--color-text-dim);
    cursor: pointer;
    border-radius: 6px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.collapse-btn:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.05);
}

.sidebar.collapsed .collapse-btn {
    display: none;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.nav-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 1.2rem 0 0.4rem 0.6rem;
    transition: var(--transition);
}

.sidebar.collapsed .nav-label {
    opacity: 0;
    height: 0;
    margin: 0;
    overflow: hidden;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--color-text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
}

.nav-item i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.nav-item:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.03);
}

.nav-item.active {
    color: #ffffff;
    background: linear-gradient(90deg, var(--color-primary-glow) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-color: rgba(168, 85, 247, 0.25);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.08);
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 3px;
    background: var(--color-primary);
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 10px var(--color-primary);
}

.sidebar.collapsed .nav-item {
    justify-content: center;
    padding: 10px 0;
}

.nav-item-text {
    white-space: nowrap;
    transition: var(--transition);
}

.sidebar.collapsed .nav-item-text {
    display: none;
}

.nav-badge {
    margin-left: auto;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 20px;
    background: rgba(0, 242, 255, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(0, 242, 255, 0.2);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.sidebar.collapsed .nav-badge {
    display: none;
}

/* Sidebar Footer */
.sidebar-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.sidebar-footer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--color-text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-footer-item:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.03);
}

.sidebar.collapsed .sidebar-footer-item {
    justify-content: center;
    padding: 10px 0;
}

.sidebar.collapsed .sidebar-footer-item span {
    display: none;
}

.system-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--color-success);
    padding: 6px 12px;
    background: var(--color-success-glow);
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.15);
    white-space: nowrap;
    margin-top: 0.5rem;
    justify-content: center;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-success);
    box-shadow: 0 0 8px var(--color-success);
    animation: pulseStatus 1.5s infinite;
}

@keyframes pulseStatus {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
}

.sidebar.collapsed .system-status-indicator {
    padding: 6px 0;
    border: none;
    background: transparent;
}

.sidebar.collapsed .system-status-indicator span {
    display: none;
}

/* --- MAIN WORKSPACE --- */
.main-workspace {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.top-bar {
    height: 65px;
    border-bottom: 1px solid var(--color-border);
    background: rgba(2, 6, 23, 0.4);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 50;
    transition: var(--transition);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    background: transparent;
    border: none;
    color: var(--color-text-dim);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 6px;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.05);
}

.page-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hud-pill {
    background: var(--color-surface-card);
    border: 1px solid var(--color-border);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--color-text-dim);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hud-pill strong {
    color: var(--color-secondary);
}

/* --- VIEW MANAGER --- */
.view-container {
    flex: 1;
    position: relative;
    width: 100%;
    height: calc(100% - 65px);
}

.view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.view.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 20;
}

/* --- HOME VIEW (WELCOME DASHBOARD) --- */
.home-view {
    padding: 2rem;
    overflow-y: auto;
    height: 100%;
}

.home-view::-webkit-scrollbar {
    width: 6px;
}
.home-view::-webkit-scrollbar-track {
    background: transparent;
}
.home-view::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.hero-banner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .hero-banner {
        grid-template-columns: 1fr;
    }
}

.welcome-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(0, 242, 255, 0.05) 100%);
    border: 1px solid var(--color-border);
    border-color: var(--color-border-glow);
    border-radius: 18px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.welcome-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.welcome-card h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #ffffff 0%, #e2e8f0 40%, var(--color-primary) 70%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
}

.welcome-card p {
    color: var(--color-text-dim);
    font-size: 1rem;
    max-width: 550px;
    line-height: 1.5;
    z-index: 1;
}

.telemetry-card {
    background: var(--color-surface-card);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.telemetry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 10px;
}

.telemetry-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-dim);
}

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

.telemetry-label {
    color: var(--color-text-dim);
}

.telemetry-value {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--color-text);
}

.telemetry-value.active {
    color: var(--color-secondary);
}

.grid-products-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.grid-products-title::after {
    content: '';
    height: 1px;
    flex: 1;
    background: var(--color-border);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-card {
    background: var(--color-surface-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.08);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1;
}

.product-icon-container {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: var(--transition);
}

.product-card:hover .product-icon-container {
    background: var(--color-primary-glow);
    border-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.product-title-wrap {
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
}

.product-desc {
    font-size: 0.82rem;
    color: var(--color-text-dim);
    line-height: 1.4;
    min-height: 50px;
    z-index: 1;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    z-index: 1;
}

.product-actions {
    display: flex;
    gap: 8px;
}

.btn-sm {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.btn-sm:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-sm.btn-primary-action {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.btn-sm.btn-primary-action:hover {
    background: #9333ea;
    box-shadow: 0 0 10px var(--color-primary-glow);
}

.home-logs-section {
    background: rgba(5, 10, 20, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.5rem;
    font-family: var(--font-mono);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.logs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.logs-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-dim);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logs-terminal {
    max-height: 180px;
    overflow-y: auto;
    font-size: 0.8rem;
    color: #a7f3d0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.logs-terminal::-webkit-scrollbar {
    width: 4px;
}
.logs-terminal::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.log-entry {
    line-height: 1.5;
}

.log-entry span {
    color: var(--color-text-dim);
}

/* --- IFRAME VIEW (PRODUCT DISPLAY) --- */
.iframe-view {
    width: 100%;
    height: 100%;
    position: relative;
    background: var(--color-bg);
}

.product-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    display: block;
}

.iframe-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 30;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.iframe-loading.active {
    opacity: 1;
    pointer-events: auto;
}

.spinner {
    width: 45px;
    height: 45px;
    border: 3px solid rgba(168, 85, 247, 0.15);
    border-top: 3px solid var(--color-primary);
    border-right: 3px solid var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-text-dim);
    text-transform: uppercase;
}

/* --- SETTINGS DRAWER --- */
.settings-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

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

.settings-drawer {
    position: absolute;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100%;
    background: linear-gradient(135deg, var(--color-surface) 0%, #030816 100%);
    border-left: 1px solid var(--color-border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
}

.settings-overlay.active .settings-drawer {
    right: 0;
}

@media (max-width: 480px) {
    .settings-drawer {
        width: 100%;
        right: -100%;
    }
}

.settings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 15px;
}

.settings-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
}

.close-settings-btn {
    background: transparent;
    border: none;
    color: var(--color-text-dim);
    cursor: pointer;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-settings-btn:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.05);
}

.settings-body {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-right: 5px;
}

.settings-body::-webkit-scrollbar {
    width: 4px;
}
.settings-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.settings-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.settings-section-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    letter-spacing: 1px;
}

.settings-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.settings-option-label-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.settings-option-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.settings-option-desc {
    font-size: 0.78rem;
    color: var(--color-text-dim);
}

/* Theme toggle switch */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 34px;
    border: 1px solid var(--color-border);
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: var(--color-text);
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--color-primary);
}

input:checked + .slider:before {
    transform: translateX(22px);
    background-color: #ffffff;
}

/* Settings Input Fields */
.setting-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.setting-input-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-text-dim);
}

.setting-input-wrapper {
    display: flex;
    gap: 8px;
}

.setting-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--color-text);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    transition: var(--transition);
}

.setting-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.15);
}

.settings-footer {
    border-top: 1px solid var(--color-border);
    padding-top: 15px;
    display: flex;
    gap: 10px;
}

.btn-block {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.btn-block-secondary {
    background: transparent;
    color: var(--color-text-dim);
}

.btn-block-secondary:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.05);
}

.btn-block-primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.btn-block-primary:hover {
    background: #9333ea;
    box-shadow: 0 0 10px var(--color-primary-glow);
}
