/* AuraOps AI - Glassmorphic Black & White Design System */
:root {
    --bg-dark: #000000;
    --card-bg: rgba(18, 18, 18, 0.85);
    --card-border: rgba(255, 255, 255, 0.1);
    --card-hover-border: rgba(255, 255, 255, 0.25);
    
    --text-main: #f8fafc;
    --text-muted: #a1a1aa;
    --text-dim: #71717a;

    --accent-cyan: #38bdf8;
    --accent-indigo: #818cf8;
    --accent-violet: #c084fc;
    --accent-emerald: #34d399;
    --accent-rose: #fb7185;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

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

/* BACKGROUND ORBS */
.app-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #000000;
    z-index: -2;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.08;
    pointer-events: none;
    z-index: -1;
}

.orb-1 {
    width: 500px; height: 500px;
    background: #ffffff;
    top: -150px; left: -100px;
}

.orb-2 {
    width: 600px; height: 600px;
    background: #ffffff;
    bottom: -200px; right: -150px;
}

/* APP CONTAINER */
.app-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px;
}

/* HEADER */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 24px;
}

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

.logo-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(129, 140, 248, 0.2);
}

.brand-text h1 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-xprize {
    font-size: 11px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-indigo));
    color: #000;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: 13px;
    color: var(--text-muted);
}

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

/* STATUS PILL */
.status-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-cyan);
}

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

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5, #0284c7);
    color: #fff;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-emerald {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
}
.btn-emerald:hover {
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-lg { padding: 14px 24px; font-size: 15px; }
.btn-block { width: 100%; }

/* TABS NAV */
.nav-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 8px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
    color: var(--accent-cyan);
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

/* TAB PANELS */
.tab-panel {
    display: none;
}
.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.section-header p {
    font-size: 13px;
    color: var(--text-muted);
}

/* GRID LAYOUTS */
.grid {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
}

/* CARDS & GLASSMORPHISM */
.card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.2s ease;
}

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

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

.card-header h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
}

/* AGENT CARDS */
.agent-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.agent-avatar {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.avatar-ceo { background: rgba(192, 132, 252, 0.15); border: 1px solid rgba(192, 132, 252, 0.3); }
.avatar-cmo { background: rgba(56, 189, 248, 0.15); border: 1px solid rgba(56, 189, 248, 0.3); }
.avatar-support { background: rgba(129, 140, 248, 0.15); border: 1px solid rgba(129, 140, 248, 0.3); }
.avatar-finance { background: rgba(52, 211, 153, 0.15); border: 1px solid rgba(52, 211, 153, 0.3); }

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

.agent-role {
    font-weight: 700;
    font-size: 15px;
}

.agent-model {
    font-size: 11px;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
}

.agent-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    flex-grow: 1;
}

/* LOGS FEED */
.live-tag {
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--accent-emerald);
    display: flex;
    align-items: center;
    gap: 6px;
}

.logs-container {
    max-height: 380px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 6px;
}

.log-item {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.log-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.log-agent {
    font-weight: 700;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: var(--font-mono);
}

.badge-ceo { background: rgba(192, 132, 252, 0.2); color: #d8b4fe; }
.badge-cmo { background: rgba(56, 189, 248, 0.2); color: #7dd3fc; }
.badge-support { background: rgba(129, 140, 248, 0.2); color: #a5b4fc; }
.badge-finance { background: rgba(52, 211, 153, 0.2); color: #6ee7b7; }

.log-time {
    font-size: 11px;
    color: var(--text-dim);
    font-family: var(--font-mono);
}

.log-thought {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
}

.log-output {
    font-size: 13px;
    color: var(--text-main);
}

/* CHAT CARD */
.chat-card {
    display: flex;
    flex-direction: column;
    height: 480px;
}

.chat-agent-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar-support-sm { font-size: 24px; }

.online-indicator {
    display: block;
    font-size: 11px;
    color: var(--accent-emerald);
}

.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 12px;
}

.chat-msg {
    max-width: 85%;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
}

.msg-agent {
    background: rgba(129, 140, 248, 0.12);
    border: 1px solid rgba(129, 140, 248, 0.2);
    align-self: flex-start;
}

.msg-user {
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.3);
    align-self: flex-end;
}

.chat-input-row {
    display: flex;
    gap: 10px;
}

.chat-input-row input {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 13px;
}

.chat-input-row input:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

/* FORM ELEMENTS */
.purchase-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 14px;
}

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

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input, .form-group select {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--text-main);
    font-size: 13px;
}

/* STAT CARDS */
.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
}

.stat-sub {
    font-size: 11px;
    color: var(--text-dim);
}

.text-emerald { color: var(--accent-emerald); }
.text-rose { color: var(--accent-rose); }
.text-cyan { color: var(--accent-cyan); }
.text-indigo { color: var(--accent-indigo); }

/* EXPENSE BREAKDOWN */
.expense-pills {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.exp-pill {
    flex: 1;
    padding: 14px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.exp-pill span { font-size: 11px; color: var(--text-muted); }
.exp-pill strong { font-size: 16px; font-family: var(--font-heading); }

/* TABLES */
.table-wrapper {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    text-align: left;
}

.data-table th {
    padding: 12px;
    border-bottom: 1px solid var(--card-border);
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* ZIP BANNER */
.zip-banner-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(2, 132, 199, 0.2));
    border: 1px solid rgba(56, 189, 248, 0.3);
    margin-bottom: 24px;
}

.zip-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.zip-banner-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 6px;
}

.zip-banner-content p {
    font-size: 13px;
    color: var(--text-muted);
}

/* DOC PREVIEWS */
.doc-preview {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 16px;
    max-height: 380px;
    overflow-y: auto;
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.6;
    color: #cbd5e1;
    white-space: pre-wrap;
}

/* GOOGLE AUTH & USER BADGE */
.gsi-material-button {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    appearance: none;
    background-color: #131314;
    background-image: none;
    border: 1px solid #8e918f;
    border-radius: 20px;
    box-sizing: border-box;
    color: #e3e3e3;
    cursor: pointer;
    font-family: 'Roboto', arial, sans-serif;
    font-size: 13px;
    height: 38px;
    letter-spacing: 0.25px;
    outline: none;
    overflow: hidden;
    padding: 0 12px;
    position: relative;
    text-align: center;
    transition: background-color .218s, border-color .218s, box-shadow .218s;
    vertical-align: middle;
    white-space: nowrap;
    width: auto;
    max-width: 400px;
    min-width: min-content;
}

.gsi-material-button .gsi-material-button-icon {
    height: 20px;
    margin-margin-right: 12px;
    min-width: 20px;
    width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100%;
    justify-content: space-between;
    position: relative;
    width: 100%;
    gap: 8px;
}

.gsi-material-button .gsi-material-button-contents {
    flex-grow: 1;
    font-family: 'Roboto', arial, sans-serif;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
}

.gsi-material-button:hover {
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
    background-color: #202124;
}

.user-profile-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    padding: 4px 12px 4px 6px;
    border-radius: 30px;
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

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

.user-name {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.user-email {
    font-size: 10px;
    color: var(--text-muted);
}

/* EMAIL INBOX ITEMS */
.email-item {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.email-item:hover {
    border-color: var(--accent-cyan);
    background: rgba(56, 189, 248, 0.05);
}

.email-item.selected {
    border-color: var(--accent-indigo);
    background: rgba(129, 140, 248, 0.1);
}

/* MODAL OVERLAY */
.modal-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-card {
    background: #121a2c;
    border: 1px solid var(--accent-indigo);
    border-radius: 16px;
    max-width: 540px;
    width: 100%;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: modalIn 0.25s ease-out;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* CURRENCY SELECTOR */
.currency-selector-container {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    padding: 6px 12px;
    border-radius: 20px;
    margin-right: 8px;
}

.currency-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-cyan);
}

.currency-select {
    background: transparent;
    color: var(--text-main);
    border: none;
    outline: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.currency-select option {
    background: var(--bg-dark);
    color: var(--text-main);
}

/* THEME VARIATIONS */
[data-theme="light"] {
    --bg-dark: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.96);
    --card-border: rgba(0, 0, 0, 0.1);
    --card-hover-border: rgba(0, 0, 0, 0.25);
    
    --text-main: #09090b;
    --text-muted: #3f3f46;
    --text-dim: #71717a;

    --accent-cyan: #0284c7;
    --accent-indigo: #4f46e5;
    --accent-violet: #9333ea;
    --accent-emerald: #059669;
    --accent-rose: #e11d48;
}

[data-theme="light"] .app-bg {
    background: #ffffff !important;
}

[data-theme="light"] .glow-orb {
    opacity: 0.03;
}

[data-theme="light"] input, 
[data-theme="light"] select, 
[data-theme="light"] textarea {
    background: rgba(241, 245, 249, 0.8) !important;
    color: var(--text-main) !important;
    border-color: rgba(148, 163, 184, 0.4) !important;
}

[data-theme="cyberpunk"] {
    --bg-dark: #0a0017;
    --card-bg: rgba(25, 10, 48, 0.78);
    --card-border: rgba(236, 72, 153, 0.3);
    --card-hover-border: rgba(34, 211, 238, 0.7);
    
    --text-main: #f4f4f5;
    --text-muted: #e9d5ff;
    --text-dim: #c084fc;

    --accent-cyan: #22d3ee;
    --accent-indigo: #ec4899;
    --accent-violet: #f43f5e;
    --accent-emerald: #10b981;
    --accent-rose: #fb7185;
}

[data-theme="emerald"] {
    --bg-dark: #021a12;
    --card-bg: rgba(6, 44, 32, 0.78);
    --card-border: rgba(52, 211, 153, 0.3);
    --card-hover-border: rgba(16, 185, 129, 0.6);
    
    --text-main: #f0fdf4;
    --text-muted: #a7f3d0;
    --text-dim: #6ee7b7;

    --accent-cyan: #2dd4bf;
    --accent-indigo: #10b981;
    --accent-violet: #34d399;
    --accent-emerald: #059669;
    --accent-rose: #f43f5e;
}

[data-theme="sunset"] {
    --bg-dark: #180c06;
    --card-bg: rgba(45, 20, 10, 0.78);
    --card-border: rgba(251, 146, 60, 0.3);
    --card-hover-border: rgba(245, 158, 11, 0.6);
    
    --text-main: #fff7ed;
    --text-muted: #fed7aa;
    --text-dim: #fdba74;

    --accent-cyan: #fbbf24;
    --accent-indigo: #f97316;
    --accent-violet: #ea580c;
    --accent-emerald: #10b981;
    --accent-rose: #ef4444;
}

/* PUBLIC PROFILE VIEW CARD */
.public-profile-card {
    background: linear-gradient(135deg, rgba(18, 26, 44, 0.85), rgba(30, 41, 59, 0.7));
    border: 1px solid rgba(56, 189, 248, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.public-profile-view {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    padding-top: 8px;
}

.pub-item {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 12px 14px;
}

.pub-item.full-width {
    grid-column: 1 / -1;
}

.pub-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-cyan);
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pub-val {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-main);
    white-space: pre-line;
}

.pub-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}

.pub-list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    border-left: 3px solid var(--accent-indigo);
}

/* FLOATING HELP BUTTON & CARDS */
.floating-help-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9900;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-indigo));
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(56, 189, 248, 0.35);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.floating-help-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.5);
}

.help-card {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 14px;
    transition: all 0.2s ease;
}

.help-card:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 0, 0, 0.35);
}

.help-card-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 6px;
}

.help-card-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* PHONE KEYPAD & STK PUSH MODAL STYLES */
.stk-key-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-main);
    border-radius: 12px;
    padding: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.stk-key-btn:hover {
    background: rgba(56, 189, 248, 0.2);
    border-color: var(--accent-cyan);
    transform: scale(1.05);
}

.stk-key-btn:active {
    transform: scale(0.95);
    background: rgba(56, 189, 248, 0.4);
}

.pkg-chip-btn {
    transition: all 0.2s ease;
}

.pkg-chip-btn.active-pkg {
    background: var(--accent-cyan);
    color: #000000;
    border-color: var(--accent-cyan);
    font-weight: 800;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* MODULE CUSTOMIZER & TOGGLE SWITCH STYLES */
.switch-toggle input:checked + .toggle-slider {
    background-color: var(--accent-emerald) !important;
}

.switch-toggle input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.preset-module-btn {
    transition: all 0.2s ease;
    cursor: pointer;
}

.preset-module-btn:hover {
    border-color: var(--accent-cyan) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.15);
}

.preset-module-btn.active-preset {
    background: rgba(56, 189, 248, 0.15) !important;
    border-color: var(--accent-cyan) !important;
}

.module-toggle-card {
    transition: all 0.2s ease;
}

.module-toggle-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}


