/* Vektor Info - Interface Theme */

:root {
    --bg-primary: #091217;
    --bg-secondary: #0f1b22;
    --bg-tertiary: #16262f;
    --bg-card: rgba(14, 23, 29, 0.82);
    --bg-glass: rgba(255, 255, 255, 0.03);
    
    --text-primary: #ffffff;
    --text-secondary: #9db1bc;
    --text-muted: #6f8791;
    
    --accent: #41d3a2;
    --accent-secondary: #f0b35a;
    --accent-gradient: linear-gradient(135deg, #41d3a2 0%, #f0b35a 100%);
    
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    --border: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(65, 211, 162, 0.26);
    
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(65, 211, 162, 0.16);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    background-image:
        radial-gradient(circle at top right, rgba(65, 211, 162, 0.12), transparent 28%),
        radial-gradient(circle at bottom left, rgba(240, 179, 90, 0.1), transparent 24%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(65, 211, 162, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(65, 211, 162, 0.035) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(9, 18, 23, 0.86);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

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

.logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.nav {
    display: flex;
    gap: 8px;
}

.user-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.user-badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.8rem;
}

#user-phone {
    color: var(--text-primary);
    font-weight: 600;
}

#user-role {
    color: var(--accent);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    background: transparent;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-glass);
    border-color: var(--border);
}

.nav-link.active {
    color: var(--accent);
    background: rgba(65, 211, 162, 0.1);
    border-color: rgba(65, 211, 162, 0.24);
}

.main {
    padding: 40px 0 80px;
    min-height: calc(100vh - 180px);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

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

.hero-section {
    text-align: center;
    margin-bottom: 32px;
    padding: 12px 0 8px;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 760px;
    margin: 0 auto;
}

.auth-gate {
    max-width: 860px;
    margin: 0 auto 32px;
}

.auth-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
}

.auth-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.auth-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.auth-actions .btn-secondary,
.auth-actions .btn-primary {
    width: auto;
}

.auth-hint,
.auth-status,
.auth-bot-link-wrap {
    color: var(--text-secondary);
}

.auth-status {
    min-height: 24px;
}

.auth-bot-link {
    color: var(--accent);
    text-decoration: none;
}

.search-container {
    max-width: 800px;
    margin: 0 auto 40px;
}

.search-wrapper {
    display: flex;
    gap: 12px;
    padding: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.search-wrapper:focus-within {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.search-input-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 20px;
    color: var(--text-muted);
    pointer-events: none;
}

.search-input-container input {
    width: 100%;
    padding: 16px 20px 16px 56px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    color: var(--text-primary);
    outline: none;
}

.search-input-container input::placeholder {
    color: var(--text-muted);
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius-lg);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    min-width: 160px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(65, 211, 162, 0.26);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.examples-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.examples-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.examples-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.example-btn {
    padding: 8px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.example-btn:hover {
    background: rgba(65, 211, 162, 0.1);
    border-color: rgba(65, 211, 162, 0.28);
    color: var(--accent);
}

.progress-card,
.history-card,
.status-card {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
}

.progress-header,
.results-title,
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-bar {
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
    margin: 14px 0 8px;
}

.progress-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-percent,
.progress-message {
    display: block;
    color: var(--text-secondary);
}

.results-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
}

.results-actions,
.telegram-auth-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-action,
.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-action:hover,
.btn-secondary:hover {
    background: rgba(65, 211, 162, 0.1);
    border-color: rgba(65, 211, 162, 0.28);
    color: var(--accent);
}

.result-tabs {
    display: flex;
    gap: 4px;
    padding: 16px 32px;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.1);
}

.result-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.result-tab.active {
    color: var(--accent);
    background: rgba(65, 211, 162, 0.1);
}

.result-content {
    display: none;
    padding: 32px;
}

.result-content.active {
    display: block;
}

.result-report-shell {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 32px 32px;
}

.result-report-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 12px;
    border: 1px solid rgba(65, 211, 162, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(65, 211, 162, 0.08);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.result-dossier,
.analysis-dossier {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.result-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.9fr);
    gap: 20px;
    padding: 24px;
    border: 1px solid rgba(65, 211, 162, 0.16);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(65, 211, 162, 0.08), rgba(15, 27, 34, 0.72));
}

.overview-label,
.dossier-kicker {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-secondary);
    margin-bottom: 10px;
}

.overview-copy h3,
.dossier-heading h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.result-overview .overview-copy {
    grid-column: 1 / -1;
}

.overview-copy p,
.analysis-copy p {
    color: var(--text-secondary);
}

.analysis-copy {
    color: var(--text-secondary);
    line-height: 1.7;
    white-space: pre-wrap;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.overview-stat,
.dossier-block,
.analysis-block,
.history-item,
.telegram-auth-card {
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.status-hint {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.4;
}

.overview-stat span,
.detail-label,
.contact-kind,
.timeline-index,
.profile-platform {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.overview-stat strong,
.detail-value,
.contact-value,
.timeline-body,
.profile-handle {
    display: block;
    margin-top: 8px;
    color: var(--text-primary);
    word-break: break-word;
}

.result-dossier-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.dossier-block-wide,
.analysis-block-summary {
    grid-column: 1 / -1;
}

.dossier-heading {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.dossier-heading.warning h3,
.insight-item-warning {
    color: var(--warning);
}

.detail-list,
.contact-list,
.timeline-list,
.profile-list,
.insight-list,
.history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row,
.contact-row,
.timeline-item,
.insight-item {
    display: grid;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-row,
.contact-row {
    grid-template-columns: minmax(120px, 160px) minmax(0, 1fr);
    align-items: start;
}

.detail-row:last-child,
.contact-row:last-child,
.timeline-item:last-child,
.insight-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-row:first-child,
.contact-row:first-child,
.timeline-item:first-child,
.insight-item:first-child {
    padding-top: 0;
}

.timeline-item {
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: start;
}

.profile-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.profile-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(65, 211, 162, 0.14);
    border-radius: var(--radius-md);
    background: rgba(65, 211, 162, 0.05);
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.profile-link:hover {
    border-color: rgba(65, 211, 162, 0.28);
    transform: translateY(-1px);
}

.analysis-copy {
    padding: 4px 0 0;
}

.result-dossier--narrative {
    gap: 18px;
}

.overview-copy-agent {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.overview-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.overview-meta-item,
.agent-response-footer {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    font-size: 0.82rem;
}

.analysis-block-agent {
    padding: 22px;
}

.analysis-copy-agent {
    padding-top: 0;
}

.agent-response-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.agent-paragraph {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.85;
    white-space: pre-wrap;
}

.agent-paragraph-lead {
    color: var(--text-primary);
    font-size: 1.12rem;
}

.agent-response-footer {
    margin-top: 18px;
}

.insight-item {
    color: var(--text-secondary);
}

.result-empty {
    padding: 18px;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
}

.history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.status-item-clickable {
    cursor: pointer;
    transition: var(--transition);
}

.status-item-clickable:hover,
.status-item-clickable:focus-visible {
    border-color: rgba(65, 211, 162, 0.28);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
    outline: none;
}

.status-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.status-icon.telegram { background: rgba(0, 136, 204, 0.12); color: #40a9d8; }
.status-icon.llm { background: rgba(240, 179, 90, 0.12); color: var(--accent-secondary); }
.status-icon.bot { background: rgba(65, 211, 162, 0.1); color: var(--accent); }

.status-value.status-ok { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.status-value.status-error { background: rgba(239, 68, 68, 0.1); color: var(--error); }
.status-value.status-unknown { background: rgba(96, 96, 112, 0.1); color: var(--text-muted); }

.status-value {
    padding: 6px 10px;
    border-radius: var(--radius-sm);
}

.telegram-auth-card {
    margin-bottom: 24px;
}

.telegram-auth-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 18px 0;
}

.telegram-auth-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.telegram-auth-field label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.telegram-auth-field input {
    width: 100%;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    outline: none;
}

.telegram-auth-field input[readonly] {
    color: var(--text-muted);
}

.admin-grid .auth-span-2 {
    grid-column: span 2;
}

.admin-session-summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-secondary);
}

.admin-status-row {
    word-break: break-word;
}

.settings-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.settings-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(6px);
}

.settings-dialog {
    position: relative;
    width: min(720px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 28px;
    background: #121b21;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.settings-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.settings-subtitle {
    color: var(--text-secondary);
    margin-top: 6px;
}

.settings-close {
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.settings-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.settings-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.settings-field-full {
    grid-column: 1 / -1;
}

.settings-field label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.settings-field input,
.settings-field select,
.settings-field textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    outline: none;
}

.settings-field textarea {
    resize: vertical;
    min-height: 220px;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.55;
}

.settings-status {
    grid-column: 1 / -1;
    min-height: 24px;
    color: var(--text-secondary);
}

.settings-status.is-error {
    color: var(--error);
}

.settings-status.is-success {
    color: var(--accent);
}

.settings-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

body.modal-open {
    overflow: hidden;
}

.full-report {
    padding: 24px;
    background: rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    max-height: none;
    overflow: visible;
}

.error-card {
    max-width: 500px;
    margin: 60px auto;
    text-align: center;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-lg);
}

.footer {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    font-weight: 600;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .user-badge {
        margin-left: 0;
        width: 100%;
        justify-content: space-between;
    }

    .hero-title {
        font-size: 2rem;
    }

    .auth-grid,
    .telegram-auth-grid,
    .status-grid,
    .result-overview,
    .result-dossier-grid,
    .overview-stats,
    .profile-list {
        grid-template-columns: 1fr;
    }

    .detail-row,
    .contact-row,
    .timeline-item {
        grid-template-columns: 1fr;
    }

    .auth-actions,
    .telegram-auth-actions,
    .search-wrapper,
    .results-header,
    .settings-actions,
    .footer .container {
        flex-direction: column;
    }

    .auth-actions .btn-secondary,
    .auth-actions .btn-primary,
    .telegram-auth-actions .btn-secondary,
    .telegram-auth-actions .btn-primary,
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .result-content {
        padding: 20px;
    }

    .result-report-shell {
        padding: 20px;
    }

    .result-tabs {
        overflow-x: auto;
        padding: 12px;
    }
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

::selection {
    background: rgba(0, 212, 255, 0.3);
    color: white;
}
