:root {
    --bg-main: #0a0a0c;
    --bg-card: rgba(20, 20, 25, 0.7);
    --bg-input: rgba(30, 30, 40, 0.6);
    --accent: #a29bfe;
    --accent-start: #a29bfe;
    --accent-end: #8c7ae6;
    --color-success: #00b894;
    --color-danger: #d63031;
    --color-warning: #fdcb6e;
    --color-primary: #0984e3;
    --color-info: #00cec9;
    --text-primary: #f1f2f6;
    --text-secondary: #a4b0be;
    --text-muted: #747d8c;
    --border-light: rgba(108, 92, 231, 0.15);
    --border-focus: rgba(108, 92, 231, 0.5);
    --glass-bg: rgba(15, 15, 20, 0.75);
    --glass-blur: blur(20px);
}

html {
    font-size: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    display: none;
}

body::after {
    display: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--bg-input); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-start); }

.app-container { display: flex; flex-direction: column; min-height: 100vh; }

/* Top Navigation */
.top-navbar {
    width: 100%;
    background: var(--glass-bg);
    border-bottom: 1px solid var(--border-light);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem; height: 75px; position: sticky; top: 0; z-index: 1000;
}

.logo { display: flex; align-items: center; }
.logo h2 { 
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.nav-links-container { flex: 1; display: flex; justify-content: center; }
.nav-links { display: flex; gap: 1.8rem; align-items: center; }

.nav-item { 
    color: var(--text-secondary); 
    text-decoration: none; 
    font-weight: 500; 
    font-size: 1.15rem;
    padding: 0.25rem 0;
    position: relative;
    transition: color 0.2s ease;
}
.nav-item:hover, .nav-item.active { 
    color: var(--text-primary); 
}
.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    border-radius: 2px;
}

.nav-user { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.user-avatar { 
    width: 32px; height: 32px; border-radius: 50%; 
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end)); 
    display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: white;
}

/* Layout Grid */
.layout-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr 260px;
    gap: 2rem;
    padding: 2.5rem 2rem;
    flex: 1;
    max-width: 98%;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 1200px) {
    .layout-wrapper { grid-template-columns: 1fr; }
    .side-panel { display: none !important; }
}

/* Side Panels & Widgets */
.side-panel { display: flex; flex-direction: column; gap: 1.5rem; }
.widget { 
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(108, 92, 231, 0.2);
}
.widget h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 1.25rem; color: var(--text-primary); }
.status-item { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; color: var(--text-secondary); font-size: 0.9rem; border-bottom: 1px solid var(--border-light); }
.status-item:last-child { border-bottom: none; padding-bottom: 0; }
.text-success { color: var(--color-success); }
.text-warning { color: var(--color-warning); }
.font-bold { font-weight: 700; }

.log-item { margin-bottom: 0.8rem; padding-left: 12px; border-left: 3px solid var(--border-light); transition: border-color 0.2s; }
.log-item:hover { border-left-color: var(--accent-start); }
.log-time { font-size: 0.75rem; color: var(--text-muted); }
.log-text { font-size: 0.85rem; color: var(--text-primary); line-height: 1.4; }

/* Main Content */
.content { display: flex; flex-direction: column; gap: 1.5rem; min-width: 0; }
header { margin-bottom: 1rem; animation: fadeIn 0.5s ease-out; }
.breadcrumbs { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.5rem; }
#breadcrumb-current { color: var(--accent-end); font-weight: 500; }
header h1 { font-size: 2.2rem; font-weight: 700; line-height: 1.2; }

/* Glassmorphism / Cards */
.glass { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 12px; }

/* Inputs */
.input-glass { 
    background-color: var(--bg-input); 
    border: 1px solid var(--border-light); 
    color: var(--text-primary); 
    padding: 0.75rem 1rem; 
    border-radius: 8px; 
    font-family: inherit; 
    font-size: 0.95rem; 
    transition: all 0.2s ease; 
    width: 100%;
    outline: none;
}
.input-glass:focus { 
    border-color: var(--accent-start);
    box-shadow: 0 0 0 3px var(--border-focus);
    background-color: rgba(108, 92, 231, 0.03);
}

select.input-glass option {
    background-color: var(--bg-input);
    color: var(--text-primary);
    padding: 12px;
    font-size: 0.95rem;
}
select.input-glass option:checked {
    background-color: var(--accent);
    color: #fff;
}
.input-sm { padding: 0.5rem 0.8rem; font-size: 0.85rem; }

/* Buttons matching maxplace.shop */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}
.btn-sm { padding: 0.4rem 0.8rem; font-size: 0.82rem; border-radius: 6px; }
.btn-lg { padding: 0.8rem 1.6rem; font-size: 1.05rem; border-radius: 10px; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: white;
    border: 1px solid rgba(255,255,255,0.15);
}
.btn-primary.glow-effect:hover, .btn-primary:hover {
    filter: brightness(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
    border-color: rgba(255,255,255,0.3);
}

.btn-secondary {
    background: var(--bg-input);
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.08);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--text-secondary);
}

/* Custom Round Checkboxes */
input[type="checkbox"]:not(.switch input) {
    appearance: none;
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    background-color: var(--bg-input);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    vertical-align: middle;
}
input[type="checkbox"]:not(.switch input):checked {
    background-color: var(--accent);
    border-color: var(--accent);
}
input[type="checkbox"]:not(.switch input):checked::after {
    content: '✓';
    font-weight: bold;
    color: white;
    font-size: 14px;
}

.proxy-address-col {
    font-family: monospace;
    font-size: 0.8rem;
    background: rgba(255,255,255,0.03);
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
    max-width: 450px;
    word-break: break-all;
}

.w-100 { width: 100%; }
.mb-2 { margin-bottom: 0.75rem; }

/* Table Components */
.table-container { 
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    display: flex; flex-direction: column; width: 100%; 
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.table-container:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.table-top-actions { display: flex; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border-light); flex-wrap: wrap; gap: 1rem; border-radius: 12px 12px 0 0; }
.left-actions, .right-actions { display: flex; gap: 0.8rem; align-items: center; }
.table-wrapper { width: 100%; overflow-x: auto; padding-bottom: 1rem; }
.data-table { width: 100%; border-collapse: collapse; text-align: left; }
.data-table th { 
    background: var(--bg-card);
    padding: 1.25rem 1.5rem; 
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.data-table td { 
    padding: 1.25rem 1.5rem; 
    font-size: 0.98rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
    white-space: nowrap;
}
.data-table th:nth-child(6),
.data-table td:nth-child(6) {
    padding-left: 3rem;
}
.data-table td a {
    color: var(--color-info);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}
.data-table td a:hover {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(9, 132, 227, 0.5);
}
.data-table tbody tr { transition: background 0.2s; }
.data-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.data-table tr:last-child td { border-bottom: none; }

.acc-avatar { width: 28px; height: 28px; background: linear-gradient(135deg, var(--accent-start), var(--accent-end)); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: bold; margin-right: 10px; vertical-align: middle; }
.table-footer { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; border-top: 1px solid var(--border-light); }
.table-pagination { display: flex; align-items: center; gap: 1rem; color: var(--text-secondary); font-size: 0.85rem; }

/* Forms */
.form-container { padding: 2.5rem; max-width: 600px; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: var(--text-secondary); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
.toggle-group { display: flex; justify-content: space-between; align-items: center; }
.switch { position: relative; display: inline-block; width: 44px; 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: var(--bg-input); transition: .4s; border: 1px solid var(--border-light); }
.slider:before { position: absolute; content: ""; height: 16px; width: 16px; left: 4px; bottom: 3px; background-color: var(--text-secondary); transition: .4s; }
input:checked + .slider { background-color: var(--accent-start); border-color: var(--accent-start); }
input:checked + .slider:before { transform: translateX(20px); background-color: white; }
.slider.round { border-radius: 24px; }
.slider.round:before { border-radius: 50%; }

/* Footer */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
    padding: 4.5rem 2rem;
    margin-top: auto;
}
.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.footer-links { display: flex; gap: 1.5rem; align-items: center; }
.footer-links a { color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-primary); }

.fade-in { animation: fadeIn 0.5s ease-out forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

#toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--bg-card); border: 1px solid var(--border-light); color: white; padding: 1rem 1.5rem; border-radius: 8px; box-shadow: 0 10px 25px rgba(0,0,0,0.5); animation: slideIn 0.3s ease, fadeOut 0.3s ease 3s forwards; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; visibility: hidden; } }

/* Modals */
.modal-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    animation: slideInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slideInUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Large modal */
.modal-lg {
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
}

/* Modal header with close button */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 22px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s;
}
.modal-close:hover { color: var(--text-primary); }

/* SSH config section */
.ssh-config-section {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    margin: 16px 0;
}
.ssh-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--bg-input);
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}
.ssh-toggle:hover { background: rgba(255,255,255,0.06); }
.ssh-toggle-icon {
    transition: transform 0.3s;
    font-size: 10px;
    color: var(--text-secondary);
}
.ssh-toggle-icon.open { transform: rotate(90deg); }

#ssh-config-body {
    padding: 0 16px 16px 16px;
}
.ssh-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 8px;
    padding: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Status badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    gap: 7px;
    padding: 6px 0;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
}
.status-badge.active { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.status-badge.pending { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.status-badge.deploying { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.status-badge.error { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.status-badge.unknown { background: rgba(156, 163, 175, 0.15); color: #9ca3af; }
.status-badge::before { content: '\25cf'; }

/* Action Dropdown Menu */
.action-dropdown {
    position: relative;
    display: inline-block;
}

.action-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px 8px;
    font-size: 16px;
    border-radius: 4px;
    transition: 0.2s;
}

.action-btn:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.1);
}

.action-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 5px;
    background: #1a1a1a;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
}

.action-dropdown.active .action-menu {
    display: block;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    border-radius: 6px;
    margin-bottom: 2px;
}

.action-item:hover {
    background: rgba(255,255,255,0.08);
}

.action-item i {
    color: var(--text-secondary);
    width: 16px;
    text-align: center;
}

.action-item.danger-text {
    color: var(--color-danger);
}
.action-item.danger-text i {
    color: var(--color-danger);
}
.action-menu-header {
    padding: 4px 16px 8px;
    font-size: 11px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 4px;
}

/* Dashboard Styles */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
}

.stat-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    opacity: 0.8;
}

.stat-info h3 {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-info p {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Stats Progress Bars (Juicy Design) */
.stats-card-container {
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.stat-header h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    text-shadow: none;
    margin: 0;
    font-weight: 700;
}

.stat-header span {
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.stat-row {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}

.stat-label {
    width: 100px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-bar-container {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    height: 36px;
    display: flex;
    align-items: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.stat-bar-fill {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 8px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-value {
    position: relative;
    z-index: 1;
    margin-left: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.fill-blue {
    background: linear-gradient(90deg, rgba(9, 132, 227, 0.4), rgba(9, 132, 227, 0.8));
    border-right: 2px solid #0984e3;
}

.fill-cyan {
    background: linear-gradient(90deg, rgba(0, 206, 201, 0.4), rgba(0, 206, 201, 0.8));
    border-right: 2px solid #00cec9;
}

.fill-purple {
    background: linear-gradient(90deg, rgba(108, 92, 231, 0.4), rgba(108, 92, 231, 0.8));
    border-right: 2px solid #a29bfe;
}

.fill-green {
    background: linear-gradient(90deg, rgba(0, 184, 148, 0.4), rgba(0, 184, 148, 0.8));
    border-right: 2px solid #00b894;
}

.fill-red {
    background: linear-gradient(90deg, rgba(255, 118, 117, 0.4), rgba(255, 118, 117, 0.8));
    border-right: 2px solid #ff7675;
}

.stat-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.stat-conversion {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: none;
}
.settings-header { display:flex; justify-content:space-between; align-items:center; margin-bottom: 2rem; }
.settings-header h2 { margin:0; font-size: 1.5rem; }
.settings-header p { color: var(--text-secondary); margin: 5px 0 0; font-size: 0.9rem; }
.settings-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border-light); border-radius: 12px; padding: 0 1.5rem; }
.settings-row { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.settings-row:last-child { border-bottom: none; }
.settings-row-text h4 { margin: 0; color: var(--text-primary); font-size: 0.95rem; font-weight: 600; }
.settings-row-text p { margin: 4px 0 0; font-size: 0.8rem; color: var(--text-secondary); }
.settings-row-control { width: 300px; display: flex; justify-content: flex-end; align-items: center; }
.settings-row-control .input-glass, .settings-row-control select { margin: 0; width: 100%; }
body.compact-mode td, body.compact-mode th { padding: 8px 12px !important; }
body.theme-Light { --bg-main: #f4f6f8; --bg-card: rgba(255, 255, 255, 1); --bg-input: rgba(240, 242, 245, 1); --text-primary: #1a1a1a; --text-secondary: #555; --glass-bg: rgba(255, 255, 255, 0.9); --border-light: rgba(0,0,0,0.1); }
body.theme-Light::before, body.theme-Light::after { background: radial-gradient(circle, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0) 70%); }
body.theme-Dark { --bg-main: #0d0f12; --bg-card: rgba(20, 20, 25, 0.8); --bg-input: rgba(30, 30, 40, 0.8); --text-primary: #f1f2f6; --text-secondary: #a4b0be; --glass-bg: rgba(15, 15, 20, 0.85); --border-light: rgba(255, 255, 255, 0.1); }
body.theme-Dark::before, body.theme-Dark::after { background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0) 70%); }
body.theme-Claude { --bg-main: #0b0c10; --bg-card: rgba(30, 27, 46, 0.7); --bg-input: rgba(40, 35, 60, 0.6); --text-primary: #f1f2f6; --text-secondary: #a4b0be; --glass-bg: rgba(20, 15, 30, 0.75); --border-light: rgba(108, 92, 231, 0.15); }
body.color-Purple { --accent: #8B5CF6; --accent-hover: #7C3AED; }
body.color-Orange { --accent: #F97316; --accent-hover: #EA580C; }
\n.btn-soft-purple { background: rgba(162, 155, 254, 0.15) !important; color: #a29bfe !important; border: 1px solid rgba(162, 155, 254, 0.3) !important; transition: all 0.2s ease; }\n.btn-soft-purple:hover { background: rgba(162, 155, 254, 0.25) !important; box-shadow: 0 0 10px rgba(162, 155, 254, 0.2); }\n