/* ===================================================================
   Synthonia AI — iOS Native Theme
   Clean Apple SF / Inter typography, #f2f2f7 grouped background,
   pure white cards, circular gauges, segmented controls, 7-day bar charts
   =================================================================== */

/* ── COLOR TOKENS & SYSTEM VARIABLES (APPLE PALETTE) ── */
:root {
    --bg-system: #f2f2f7;
    --bg-card: #ffffff;
    --bg-card-secondary: #f8f8fa;
    --bg-segmented: #e3e3e8;
    --bg-segmented-active: #ffffff;

    --border: #e5e5ea;
    --border-light: #f2f2f7;
    --border-subtle: rgba(0, 0, 0, 0.05);

    --text-primary: #000000;
    --text-secondary: #6c6c70;
    --text-tertiary: #8e8e93;
    --text-quaternary: #aeaeb2;

    /* Semantic Status Colors */
    --green: #34c759;
    --green-light: #e8f9ed;
    --green-lime: #a4cd39;
    --yellow: #ffcc00;
    --yellow-light: #fffbeb;
    --orange: #ff9500;
    --orange-light: #fff5e6;
    --red: #ff3b30;
    --red-light: #ffebe9;

    --blue: #007aff;
    --blue-light: #e5f1ff;
    --indigo: #5856d6;
    --cyan: #32ade6;
    --teal: #30b0c7;
    --purple: #af52de;

    --radius-xl: 22px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --radius-pill: 9999px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 2px 10px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.02);

    --tr: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', sans-serif;
    background: #e3dcf8 url('../assets/bg.jpg') no-repeat right top fixed;
    background-size: cover;
    color: var(--text-primary);
    min-height: 100vh;
    padding-bottom: 96px; /* Space for bottom tab bar */
    overflow-x: hidden;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Subtle gradient overlay for balanced contrast and readability */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(235, 230, 252, 0.4) 0%, rgba(242, 238, 255, 0.2) 100%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 12px 16px;
    position: relative;
    z-index: 1;
}

.screen {
    display: none;
    animation: fadeIn 0.25s ease-out;
}
.screen.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── TOP NAVIGATION BAR (iOS HEADER) ── */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0 12px;
}

.top-left-action {
    display: flex;
    align-items: center;
}

.top-title-wrap {
    margin-top: 4px;
    margin-bottom: 12px;
}

.top-large-title {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: var(--text-primary);
    line-height: 1.1;
}

.top-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.ios-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: var(--tr);
}
.ios-icon-btn:hover, .ios-icon-btn:active {
    background: rgba(0, 122, 255, 0.08);
}

/* ── iOS SEGMENTED CONTROL ── */
.segmented-control-wrap {
    margin-bottom: 16px;
}

.segmented-control {
    display: flex;
    background: var(--bg-segmented);
    padding: 3px;
    border-radius: 9px;
    position: relative;
}

.segment-btn {
    flex: 1;
    text-align: center;
    padding: 7px 0;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-secondary);
    border: none;
    background: transparent;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.segment-btn.active {
    background: var(--bg-segmented-active);
    color: var(--text-primary);
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* ── WHITE CARD COMPONENT (GLASSMORPHISM) ── */
.card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    margin-bottom: 14px;
    box-shadow: 0 8px 24px rgba(78, 56, 140, 0.08), 0 1px 3px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.85);
    position: relative;
}

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

.card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.card-help-btn {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

/* ── RECOVERY HERO CARD ── */
.recovery-hero-card {
    text-align: center;
    padding: 20px 20px 24px;
}

.recovery-status-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
}

.recovery-status-title .card-help-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Recovery Top Horizontal Status Line */
.recovery-color-bar {
    width: 140px;
    height: 6px;
    border-radius: var(--radius-pill);
    background: var(--green-lime);
    margin: 0 auto 16px;
    transition: background 0.3s ease;
}

.recovery-big-score {
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 4px;
    color: var(--green-lime);
}

.recovery-update-time {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
    margin-bottom: 14px;
}

.recovery-coaching-text {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
    padding: 0 4px;
}

/* Biometrics Pills Grid (HRV & Resting HR) */
.bio-metrics-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.bio-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card-secondary);
    border-radius: var(--radius-md);
    padding: 10px 12px;
    text-align: left;
}

.bio-icon {
    font-size: 20px;
}

.bio-val-main {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
}

.bio-sub-label {
    font-size: 11.5px;
    color: var(--text-tertiary);
    font-weight: 500;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.bio-delta-down {
    color: var(--red);
    font-weight: 600;
}
.bio-delta-up {
    color: var(--green);
    font-weight: 600;
}

/* ── 7-DAY VERTICAL BAR CHART COMPONENT ── */
.daily-chart-card {
    padding: 18px 20px;
}

.daily-chart-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 18px;
}

.daily-bars-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 150px;
    padding: 0 6px 6px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.daily-bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    height: 100%;
    justify-content: flex-end;
    gap: 6px;
}

.daily-bar-val {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
}

.daily-bar-track {
    width: 28px;
    height: 100px;
    display: flex;
    align-items: flex-end;
    border-radius: 6px;
}

.daily-bar-fill {
    width: 100%;
    border-radius: 6px;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 8px;
}

.daily-bar-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.2px;
    margin-top: 2px;
}

.daily-chart-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 12.5px;
    color: var(--text-secondary);
    font-weight: 600;
}
.daily-chart-footer strong {
    color: var(--text-primary);
    margin-left: 4px;
}

/* ── EXERTION CIRCULAR GAUGE CARD ── */
.exertion-hero-card {
    text-align: center;
    padding: 24px 20px;
}

.circular-gauge-wrap {
    position: relative;
    width: 170px;
    height: 170px;
    margin: 8px auto 16px;
}

.circular-gauge-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.gauge-bg-circle {
    fill: none;
    stroke: #e5e5ea;
    stroke-width: 14;
}

.gauge-target-arc {
    fill: none;
    stroke: rgba(52, 199, 89, 0.25);
    stroke-width: 18;
    stroke-linecap: round;
}

.gauge-progress-circle {
    fill: none;
    stroke: var(--orange);
    stroke-width: 14;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.4s ease;
}

.gauge-center-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gauge-center-sub {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.gauge-center-val {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    color: var(--text-primary);
}

.target-zone-legend {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.target-zone-square {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: var(--green);
}

/* ── TRENDS TAB STYLES ── */
.trends-top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.ios-switch-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ios-switch-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.ios-toggle {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 28px;
}
.ios-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.ios-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #e5e5ea;
    transition: .3s;
    border-radius: 28px;
}
.ios-toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: .3s;
    border-radius: 50%;
}
.ios-toggle input:checked + .ios-toggle-slider {
    background-color: var(--blue);
}
.ios-toggle input:checked + .ios-toggle-slider:before {
    transform: translateX(18px);
}

.trend-status-banner {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.trend-status-tag {
    font-size: 14px;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 2px;
}
.trend-status-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Trend Key Values Summary */
.trend-metrics-summary {
    display: flex;
    gap: 28px;
    margin-bottom: 14px;
}
.trend-metric-item .trend-metric-title {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
}
.trend-metric-item .trend-metric-num {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
}

/* Variable Chips for Trends */
.var-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.var-chip {
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    background: var(--bg-system);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--tr);
}
.var-chip.active {
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.chart-box {
    position: relative;
    height: 280px;
    width: 100%;
}

/* ── AI NEUROPHYSIOLOGICAL BLOCKS ── */
.ai-block {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    margin-bottom: 12px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
}
.ai-block.b1 { border-left: 4px solid var(--indigo); }
.ai-block.b2 { border-left: 4px solid var(--cyan); }
.ai-block.b3 { border-left: 4px solid var(--green); }

.ai-block-title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ai-block-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ── QUICK ACTION PILL BUTTONS ── */
.pill-btn-group {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.btn-pill-action {
    flex: 1;
    padding: 12px 16px;
    border-radius: var(--radius-pill);
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: var(--tr);
}
.btn-pill-action.blue {
    background: var(--blue);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 122, 255, 0.28);
}
.btn-pill-action.blue:hover {
    background: #0066d6;
}
.btn-pill-action.secondary {
    background: var(--bg-system);
    color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn-pill-action.secondary:hover {
    background: #e5e5ea;
}

/* ── iOS TRANSLUCENT BOTTOM TAB BAR ── */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 0.5px solid rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1000;
    padding: 0 8px 14px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--text-tertiary);
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--tr);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    flex: 1;
}

.nav-item .nav-icon {
    font-size: 22px;
    line-height: 1;
}

.nav-item.active {
    color: var(--blue);
}
.nav-item.active .nav-icon {
    transform: scale(1.08);
}

/* ── iOS MODALS (BOTTOM SHEET STYLE) ── */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: flex-end;
    justify-content: center;
}
.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 24px 24px 0 0;
    padding: 24px 20px 36px;
    max-width: 500px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
}
@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.modal-handle {
    width: 36px;
    height: 5px;
    background: #d1d1d6;
    border-radius: var(--radius-pill);
    margin: -8px auto 16px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.modal-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}
.modal-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: var(--bg-system);
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
}
.modal-close:hover {
    background: #e5e5ea;
    color: var(--text-primary);
}

/* Form inputs (iOS Cupertino Style) */
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}
.form-control {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-system);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 15px;
    transition: var(--tr);
}
.form-control:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.15);
}

/* Sliders */
.slider-group {
    background: rgba(242, 242, 247, 0.9);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.slider-header label {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-primary);
}
.slider-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.slider-val {
    font-size: 15px;
    font-weight: 800;
    color: var(--blue);
    background: rgba(0, 122, 255, 0.1);
    padding: 2px 8px;
    border-radius: 6px;
}
.btn-scale-info {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    background: #ffffff;
    border: 1px solid rgba(0, 122, 255, 0.3);
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--tr);
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.btn-scale-info:hover {
    background: var(--blue-light);
    border-color: var(--blue);
}

.slider-desc-hint {
    font-size: 12px;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.8);
    border-left: 3px solid var(--blue);
    padding: 6px 10px;
    border-radius: 4px;
    margin-top: 8px;
    line-height: 1.4;
    transition: all 0.2s ease;
}
.slider-desc-hint strong {
    color: var(--blue);
}

input[type="range"] {
    width: 100%;
    accent-color: var(--blue);
    cursor: pointer;
}
.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-tertiary);
    font-weight: 600;
    margin-top: 4px;
}

/* ── SCALE LEGEND MODAL STYLES ── */
.scale-legend-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 4px;
}
.scale-legend-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: var(--bg-system);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--tr);
    border: 1px solid transparent;
}
.scale-legend-row:hover {
    background: #e8f1ff;
    border-color: var(--blue);
}
.scale-legend-row.selected {
    background: var(--blue-light);
    border-color: var(--blue);
}
.scale-num-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue);
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.scale-desc-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
    line-height: 1.35;
}
.scale-selected-check {
    font-size: 11.5px;
    font-weight: 800;
    color: var(--blue);
    flex-shrink: 0;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}
.modal-actions .btn {
    flex: 1;
    padding: 14px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-size: 15px;
    transition: var(--tr);
}
.modal-actions .btn-primary {
    background: var(--blue);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 122, 255, 0.3);
}
.modal-actions .btn-primary:hover {
    background: #0066d6;
}
.modal-actions .btn-secondary {
    background: var(--bg-system);
    color: var(--text-secondary);
}
.modal-actions .btn-secondary:hover {
    background: #e5e5ea;
}

/* ── AUTH SCREEN (iOS CLEAN CARD WITH MANDALA BACKGROUND) ── */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #e3dcf8 url('../assets/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}
.auth-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 224, 250, 0.45) 0%, rgba(240, 235, 255, 0.25) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.auth-card {
    max-width: 400px;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    box-shadow: 0 20px 50px rgba(78, 56, 140, 0.16), 0 2px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #d1d1d6;
    border-radius: 3px;
}
