/* ============================================
   WAVE LIGHT - Client Area Styles
   ============================================ */

/* AUTH SECTION */
.auth-section { min-height: 60vh; }
.auth-container { max-width: 480px; margin: 0 auto; }

.auth-tabs {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: var(--space-1);
}

.auth-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-gray-400);
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}
.auth-tab svg { width: 18px; height: 18px; }
.auth-tab:hover { color: var(--color-white); }
.auth-tab.active { background: var(--color-primary-700); color: var(--color-accent-primary); }

.auth-panel { display: none; animation: fadeIn 0.3s ease; }
.auth-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.auth-header { text-align: center; margin-bottom: var(--space-8); }
.auth-header h2 { font-size: var(--text-2xl); margin-bottom: var(--space-2); }
.auth-header p { color: var(--color-gray-400); }

.auth-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
}
.auth-form .form-group { margin-bottom: var(--space-5); }
.auth-form label { display: block; font-size: var(--text-sm); font-weight: 500; color: var(--color-gray-300); margin-bottom: var(--space-2); }

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"] {
    width: 100%;
    padding: var(--space-4);
    font-size: var(--text-base);
    color: var(--color-white);
    background: var(--color-primary-800);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}
.auth-form input:focus { outline: none; border-color: var(--color-accent-primary); box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.1); }

.input-icon { position: relative; }
.input-icon svg { position: absolute; left: var(--space-4); top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--color-gray-500); pointer-events: none; }
.input-icon input { padding-left: calc(var(--space-4) + 28px); }

.toggle-password { position: absolute; right: var(--space-4); top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--color-gray-500); cursor: pointer; padding: 0; }
.toggle-password svg { position: static; transform: none; width: 20px; height: 20px; }
.toggle-password:hover { color: var(--color-accent-primary); }

.form-options { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-6); flex-wrap: wrap; gap: var(--space-3); }
.checkbox-label { display: flex; align-items: center; gap: var(--space-2); cursor: pointer; font-size: var(--text-sm); color: var(--color-gray-400); }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--color-accent-primary); cursor: pointer; }
.forgot-password { font-size: var(--text-sm); color: var(--color-accent-primary); transition: opacity var(--transition-fast); }
.forgot-password:hover { opacity: 0.8; }

.btn-full { width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.password-strength { margin-top: var(--space-2); display: flex; align-items: center; gap: var(--space-3); }
.strength-bar { flex: 1; height: 4px; background: var(--color-primary-700); border-radius: var(--radius-full); overflow: hidden; position: relative; }
.strength-bar::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: var(--strength, 0%); background: var(--strength-color, var(--color-gray-500)); transition: all var(--transition-base); }
.strength-text { font-size: var(--text-xs); color: var(--color-gray-500); }

/* DASHBOARD */
.dashboard-section { padding-top: var(--space-8); }
.dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-10); flex-wrap: wrap; gap: var(--space-4); }
.welcome-text h2 { font-size: var(--text-3xl); margin-bottom: var(--space-1); }
.welcome-text p { color: var(--color-gray-400); }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); margin-bottom: var(--space-10); }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .stats-grid { grid-template-columns: 1fr; } }

.stat-card { display: flex; align-items: center; gap: var(--space-4); padding: var(--space-6); background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: var(--radius-xl); transition: all var(--transition-base); }
.stat-card:hover { border-color: rgba(100, 255, 218, 0.2); transform: translateY(-2px); }

.stat-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-lg); flex-shrink: 0; }
.stat-icon svg { width: 24px; height: 24px; }
.stat-icon.projects { background: rgba(100, 255, 218, 0.1); color: var(--color-accent-primary); }
.stat-icon.messages { background: rgba(56, 189, 248, 0.1); color: var(--color-accent-secondary); }
.stat-icon.quotes { background: rgba(167, 139, 250, 0.1); color: var(--color-accent-tertiary); }
.stat-icon.invoices { background: rgba(245, 158, 11, 0.1); color: var(--color-warning); }

.stat-content { display: flex; flex-direction: column; }
.stat-number { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--color-white); line-height: 1; }
.stat-label { font-size: var(--text-sm); color: var(--color-gray-400); margin-top: var(--space-1); }

/* Dashboard Tabs */
.dashboard-tabs {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.dash-tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-gray-400);
    background: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}
.dash-tab svg { width: 18px; height: 18px; }
.dash-tab:hover { color: var(--color-white); background: rgba(255, 255, 255, 0.03); }
.dash-tab.active { color: var(--color-accent-primary); background: rgba(100, 255, 218, 0.1); }

/* =============================================
   NOTIFICATION BADGE on Messaggi tab
   ============================================= */
.msg-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    border-radius: 9px;
    margin-left: 6px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
    animation: badge-pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}
@keyframes badge-pop {
    0% { transform: scale(0); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Dashboard Panels */
.dash-panel { display: none; animation: fadeIn 0.3s ease; }
.dash-panel.active { display: block; }
.panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-6); }
.panel-header h3 { font-size: var(--text-xl); }
.btn-sm { padding: var(--space-2) var(--space-4); font-size: var(--text-sm); }
.btn-sm svg { margin-right: var(--space-1); }

/* Empty State */
.empty-state { text-align: center; padding: var(--space-16) var(--space-8); background: rgba(255, 255, 255, 0.02); border: 1px dashed rgba(255, 255, 255, 0.1); border-radius: var(--radius-xl); }
.empty-state svg { width: 64px; height: 64px; color: var(--color-gray-600); margin: 0 auto var(--space-4); }
.empty-state p { color: var(--color-gray-400); margin-bottom: var(--space-6); }

/* =============================================
   CHAT LAYOUT — WhatsApp-Inspired
   ============================================= */
.client-chat-layout {
    display: flex;
    flex-direction: column;
    background: #0b141a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    height: 520px;
    max-height: calc(100vh - 320px);
    min-height: 380px;
    overflow: hidden;
}

/* Chat Header */
.client-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #1f2c34;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}
.chat-header-info { display: flex; align-items: center; gap: 10px; }
.chat-header-avatar {
    width: 36px;
    height: 36px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-primary-900);
    flex-shrink: 0;
}
.chat-header-details { display: flex; flex-direction: column; }
.chat-header-name { font-weight: 600; font-size: 0.9rem; color: #e9edef; line-height: 1.3; }
.chat-header-status { font-size: 0.72rem; color: #8696a0; }

/* Chat Thread (message area) */
.client-chat-thread {
    flex: 1;
    padding: 10px 14px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: #0b141a;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(100, 255, 218, 0.012) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(56, 189, 248, 0.012) 0%, transparent 50%);
    scroll-behavior: smooth;
}
.client-chat-thread::-webkit-scrollbar { width: 5px; }
.client-chat-thread::-webkit-scrollbar-track { background: transparent; }
.client-chat-thread::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.12); border-radius: 4px; }
.client-chat-thread::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.2); }

.client-chat-thread .empty-state {
    margin: auto;
    border: none;
    background: none;
    padding: var(--space-8);
}
.client-chat-thread .empty-state svg { width: 48px; height: 48px; color: rgba(255,255,255,0.15); }
.client-chat-thread .empty-state p { font-size: 0.85rem; color: rgba(255,255,255,0.35); }

/* Chat Bubbles */
.chat-bubble {
    max-width: 65%;
    padding: 6px 8px 3px;
    border-radius: 8px;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1;
    clear: both;
}
.chat-bubble + .chat-bubble { margin-top: 2px; }
/* More space when direction changes */
.chat-bubble.sent + .chat-bubble.received,
.chat-bubble.received + .chat-bubble.sent { margin-top: 10px; }
/* More space after a date separator */
.chat-date-separator + .chat-bubble { margin-top: 0; }

.chat-bubble.received {
    background: #1f2c34;
    margin-right: auto;
    border-top-left-radius: 2px;
}
.chat-bubble.sent {
    background: #005c4b;
    margin-left: auto;
    border-top-right-radius: 2px;
}

.chat-bubble-subject {
    font-size: 0.65rem;
    font-weight: 600;
    color: #00a884;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.chat-bubble p {
    margin: 0;
    font-size: 0.835rem;
    line-height: 1.35;
    color: #e9edef;
    display: inline;
    white-space: pre-wrap;
}
.chat-bubble-time {
    display: inline-block;
    font-size: 0.63rem;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    float: right;
    margin-left: 10px;
    margin-top: 4px;
    position: relative;
    top: 2px;
}
.chat-bubble.sent .chat-bubble-time { color: rgba(255, 255, 255, 0.55); }

/* Date Separator */
.chat-date-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 6px;
}
.chat-date-separator span {
    font-size: 0.7rem;
    color: #8696a0;
    background: #1f2c34;
    padding: 4px 12px;
    border-radius: 6px;
    white-space: nowrap;
}

/* Chat Compose */
.client-chat-compose {
    padding: 8px 10px;
    background: #1f2c34;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    flex-shrink: 0;
}
.chat-compose-form {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}
.chat-compose-form textarea {
    flex: 1;
    padding: 8px 14px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #e9edef;
    background: #2a3942;
    border: none;
    border-radius: 20px;
    resize: none;
    min-height: 38px;
    max-height: 100px;
    line-height: 1.4;
    transition: box-shadow 0.2s;
    outline: none;
}
.chat-compose-form textarea::placeholder { color: #8696a0; }
.chat-compose-form textarea:focus {
    box-shadow: 0 0 0 1px rgba(100, 255, 218, 0.2);
}
.chat-send-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    flex-shrink: 0;
    background: #00a884;
    border: none;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    box-shadow: none;
}
.chat-send-btn:hover {
    background: #06cf9c;
    transform: scale(1.05);
}
.chat-send-btn:active { transform: scale(0.95); }
.chat-send-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.chat-send-btn svg { margin: 0; width: 18px; height: 18px; color: #fff; }

/* =============================================
   RESPONSIVE — Chat
   ============================================= */
@media (max-width: 768px) {
    .client-chat-layout {
        height: calc(100vh - 280px);
        min-height: 340px;
        border-radius: 12px;
    }
    .client-chat-header { padding: 8px 12px; }
    .chat-header-avatar { width: 32px; height: 32px; font-size: 0.8rem; }
    .chat-header-name { font-size: 0.85rem; }
    .client-chat-thread { padding: 8px 10px; gap: 1px; }
    .chat-bubble { max-width: 82%; padding: 5px 8px 2px; }
    .chat-bubble p { font-size: 0.82rem; }
    .client-chat-compose { padding: 6px 8px; }
    .chat-compose-form textarea { min-height: 36px; padding: 7px 12px; font-size: 0.82rem; }
    .chat-send-btn { width: 36px; height: 36px; min-width: 36px; }
    .chat-send-btn svg { width: 16px; height: 16px; }
}

@media (max-width: 480px) {
    .client-chat-layout {
        height: calc(100vh - 260px);
        min-height: 300px;
        border-radius: 10px;
    }
    .chat-bubble { max-width: 88%; }
}

/* Projects List */
.project-item { display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); padding: var(--space-5); background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: var(--radius-lg); margin-bottom: var(--space-3); transition: all var(--transition-base); }
.project-item:hover { border-color: rgba(100, 255, 218, 0.15); }
.project-info h4 { font-size: var(--text-base); color: var(--color-white); margin-bottom: var(--space-1); }
.project-type { font-size: var(--text-xs); color: var(--color-gray-500); text-transform: uppercase; letter-spacing: 0.05em; }
.project-status { display: flex; align-items: center; gap: var(--space-3); }
.status-badge { font-size: var(--text-xs); padding: var(--space-1) var(--space-3); border-radius: var(--radius-full); background: rgba(255, 255, 255, 0.1); color: var(--color-gray-300); }
.status-badge.planning { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.status-badge.design { background: rgba(168, 85, 247, 0.2); color: #c084fc; }
.status-badge.development { background: rgba(234, 179, 8, 0.2); color: #facc15; }
.status-badge.review { background: rgba(249, 115, 22, 0.2); color: #fb923c; }
.status-badge.completed { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.progress-bar { width: 80px; height: 6px; background: rgba(255, 255, 255, 0.1); border-radius: var(--radius-full); overflow: hidden; }
.progress-fill { height: 100%; background: var(--gradient-accent); border-radius: var(--radius-full); transition: width 0.3s ease; }
.progress-text { font-size: var(--text-xs); color: var(--color-gray-500); min-width: 35px; text-align: right; }

/* Form Actions */
.form-actions { display: flex; justify-content: flex-end; gap: var(--space-3); margin-top: var(--space-4); }

/* Documents */
.documents-tabs { display: flex; gap: var(--space-2); margin-bottom: var(--space-6); flex-wrap: wrap; }
.doc-tab { padding: var(--space-2) var(--space-4); font-size: var(--text-sm); color: var(--color-gray-400); background: none; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-md); cursor: pointer; transition: all var(--transition-base); }
.doc-tab:hover { border-color: rgba(255, 255, 255, 0.2); color: var(--color-white); }
.doc-tab.active { background: var(--color-accent-primary); border-color: var(--color-accent-primary); color: var(--color-primary-900); }

/* Document Cards */
.doc-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--color-primary-800);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    transition: all 0.15s;
}
.doc-card:hover { border-color: rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.04); }
.doc-card-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.doc-card-icon svg { width: 20px; height: 20px; }
.doc-card-icon.quotes { background: rgba(99, 102, 241, 0.15); color: #818cf8; }
.doc-card-icon.invoices { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.doc-card-icon.files { background: rgba(14, 165, 233, 0.15); color: #38bdf8; }
.doc-card-info { flex: 1; min-width: 0; }
.doc-card-info strong { display: block; font-size: 0.9rem; color: var(--color-white); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.doc-meta { display: block; font-size: 0.75rem; color: var(--color-gray-400); }
.doc-status {
    padding: 4px 10px; border-radius: 12px; font-size: 0.7rem; font-weight: 600;
    white-space: nowrap; flex-shrink: 0; text-transform: capitalize;
}
.doc-status.draft { background: rgba(148, 163, 184, 0.15); color: #94a3b8; }
.doc-status.sent, .doc-status.pending { background: rgba(14, 165, 233, 0.15); color: #38bdf8; }
.doc-status.viewed { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.doc-status.accepted, .doc-status.paid { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.doc-status.rejected, .doc-status.overdue, .doc-status.cancelled { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.doc-status.expired { background: rgba(148, 163, 184, 0.15); color: #94a3b8; }
.doc-status.partial { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }

/* Profile Form */
.profile-form { max-width: 600px; }
.profile-form .form-group { margin-bottom: var(--space-5); }
.profile-form input { width: 100%; padding: var(--space-4); font-size: var(--text-base); color: var(--color-white); background: var(--color-primary-800); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-md); }
.profile-form input:focus { outline: none; border-color: var(--color-accent-primary); }
.profile-form input:disabled { opacity: 0.5; cursor: not-allowed; }
.profile-form small { display: block; font-size: var(--text-xs); color: var(--color-gray-500); margin-top: var(--space-1); }
.form-divider { border: none; border-top: 1px solid rgba(255, 255, 255, 0.05); margin: var(--space-8) 0; }
.profile-form h4 { font-size: var(--text-lg); margin-bottom: var(--space-5); }

/* Error Messages */
.auth-form .error-message, .profile-form .error-message { display: none; font-size: var(--text-xs); color: var(--color-error); margin-top: var(--space-1); }
.auth-form .form-group.error .error-message, .profile-form .form-group.error .error-message { display: block; }
.auth-form .form-group.error input, .profile-form .form-group.error input { border-color: var(--color-error); }

/* Form Messages */
.form-message { display: none; padding: var(--space-4); border-radius: var(--radius-md); margin-top: var(--space-4); font-size: var(--text-sm); }
.form-message.success { display: block; background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3); color: var(--color-success); }
.form-message.error { display: block; background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); color: var(--color-error); }

/* Loading */
.btn.loading { pointer-events: none; opacity: 0.7; }
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid transparent; border-top-color: currentColor; border-radius: 50%; animation: spin 0.8s linear infinite; margin-right: var(--space-2); }
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================
   RESPONSIVE — Dashboard general
   ============================================= */
@media (max-width: 768px) {
    .dashboard-section { padding-top: var(--space-6); }
    .dashboard-header { flex-direction: column; gap: var(--space-4); align-items: flex-start; }
    .welcome-text h2 { font-size: var(--text-2xl); }
    .dashboard-actions { width: 100%; display: flex; }
    .dashboard-actions .btn { flex: 1; justify-content: center; font-size: var(--text-sm); padding: var(--space-3) var(--space-4); }
    .dashboard-tabs { gap: var(--space-1); }
    .dash-tab { padding: var(--space-2) var(--space-3); font-size: 0.8rem; gap: 6px; }
    .dash-tab svg { width: 16px; height: 16px; }
    .project-item { flex-direction: column; align-items: flex-start; }
    .project-status { width: 100%; }
}

@media (max-width: 480px) {
    .stats-grid { gap: var(--space-3); }
    .stat-card { padding: var(--space-4); gap: var(--space-3); }
    .stat-icon { width: 44px; height: 44px; }
    .stat-icon svg { width: 20px; height: 20px; }
    .stat-number { font-size: var(--text-xl); }
    .stat-label { font-size: 0.75rem; }
}

/* PRIVACY NOTICE BOX */
.privacy-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.15rem;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    background: rgba(99, 179, 237, 0.06);
    border: 1px solid rgba(99, 179, 237, 0.15);
    border-radius: var(--radius-md, 10px);
    border-left: 3px solid rgba(99, 179, 237, 0.5);
}
.privacy-notice svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(99, 179, 237, 0.7);
}
.privacy-notice p {
    font-size: 0.8rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}
.privacy-notice a {
    color: rgba(99, 179, 237, 0.85);
    text-decoration: underline;
    text-decoration-color: rgba(99, 179, 237, 0.3);
    text-underline-offset: 2px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.privacy-notice a:hover {
    color: rgba(99, 179, 237, 1);
    text-decoration-color: rgba(99, 179, 237, 0.7);
}
