@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    color-scheme: dark;
    --bg-1: #0b1220;
    --bg-2: #0f172a;
    --bg-3: #020617;
    --accent: #22d3ee;
    --accent-2: #a3e635;
}

body {
    font-family: "Space Grotesk", sans-serif;
    background:
        radial-gradient(1200px 800px at 10% 10%, rgba(34, 211, 238, 0.15), transparent 60%),
        radial-gradient(900px 700px at 90% 10%, rgba(163, 230, 53, 0.12), transparent 60%),
        linear-gradient(160deg, var(--bg-1), var(--bg-2) 50%, var(--bg-3));
    color: #e2e8f0;
    overflow-x: hidden;
}

body.mobile-nav-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.glass {
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.5);
    backdrop-filter: blur(18px);
}

.glow {
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.3), 0 10px 30px rgba(14, 165, 233, 0.25);
}

.input {
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.input::placeholder {
    color: rgba(148, 163, 184, 0.7);
}

.sidebar {
    background: rgba(2, 6, 23, 0.7);
    border-right: 1px solid rgba(148, 163, 184, 0.2);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-link {
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    color: rgba(226, 232, 240, 0.8);
    transition: all 0.2s ease;
}

.sidebar-link:hover {
    background: rgba(34, 211, 238, 0.12);
    color: #e2e8f0;
}

.sidebar-link.active {
    background: rgba(34, 211, 238, 0.2);
    color: #e2e8f0;
    border: 1px solid rgba(34, 211, 238, 0.35);
}

.layout-main {
    padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
}

.mobile-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 12px 12px 0;
    backdrop-filter: blur(16px);
}

.mobile-topbar-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 68px;
    padding: 10px 12px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 22px;
    background: rgba(2, 6, 23, 0.78);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.32);
}

.mobile-nav-open-btn,
.mobile-nav-close-btn,
.mobile-topbar-link,
.mobile-nav-action,
.mobile-quicknav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mobile-nav-open-btn,
.mobile-nav-close-btn,
.mobile-topbar-link {
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.72);
    color: #e2e8f0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-topbar-link.is-active,
.mobile-nav-action.is-active,
.mobile-quicknav-link.is-active {
    border-color: rgba(34, 211, 238, 0.42);
    background: rgba(34, 211, 238, 0.16);
    color: #cffafe;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(2, 6, 23, 0.62);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mobile-nav-overlay.is-open {
    opacity: 1;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    width: min(88vw, 360px);
    height: 100dvh;
    background: rgba(2, 6, 23, 0.96);
    border-right: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.45);
    transform: translateX(-105%);
    transition: transform 0.22s ease;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}

.mobile-nav-drawer.is-open {
    transform: translateX(0);
}

.mobile-nav-action {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.72);
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
}

.mobile-nav-action-primary {
    border-color: rgba(34, 211, 238, 0.4);
    background: rgba(34, 211, 238, 0.16);
    color: #cffafe;
}

.mobile-quicknav {
    position: sticky;
    bottom: 0;
    z-index: 35;
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0));
}

.mobile-quicknav-inner {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    background: rgba(2, 6, 23, 0.86);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.32);
    backdrop-filter: blur(18px);
}

.mobile-quicknav-link {
    min-width: 0;
    min-height: 52px;
    padding: 8px 6px;
    border: 1px solid transparent;
    background: rgba(15, 23, 42, 0.62);
    color: rgba(226, 232, 240, 0.86);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.mobile-quicknav-label {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-nav-open-btn:hover,
.mobile-nav-close-btn:hover,
.mobile-topbar-link:hover,
.mobile-nav-action:hover,
.mobile-quicknav-link:hover {
    transform: translateY(-1px);
}

@media (min-width: 1024px) {
    .layout-main {
        padding-bottom: 2rem;
    }
}

@media (max-width: 1023px) {
    .glass {
        border-radius: 20px;
    }

    .layout-main .overflow-x-auto {
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 767px) {
    .mobile-topbar {
        padding: 10px 10px 0;
    }

    .mobile-topbar-inner {
        min-height: 64px;
        padding: 8px 10px;
        border-radius: 20px;
    }

    .mobile-nav-open-btn,
    .mobile-nav-close-btn,
    .mobile-topbar-link {
        min-height: 42px;
        padding: 0 12px;
        font-size: 11px;
    }

    .mobile-quicknav {
        padding: 10px 10px calc(10px + env(safe-area-inset-bottom, 0px));
    }

    .mobile-quicknav-inner {
        gap: 6px;
        padding: 8px;
        border-radius: 22px;
    }

    .mobile-quicknav-link {
        min-height: 48px;
        font-size: 10px;
    }

}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    text-align: left;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.8);
    padding: 12px 16px;
}

.table th[data-sort] {
    cursor: pointer;
}

.table th[data-sort]:hover {
    color: rgba(226, 232, 240, 0.9);
}

.table td {
    padding: 14px 16px;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    color: rgba(226, 232, 240, 0.9);
}

.table tr:hover td {
    background: rgba(34, 211, 238, 0.08);
}

@media (max-width: 767px) {
    .table {
        min-width: 640px;
    }

    .table th,
    .table td {
        padding: 12px;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    background: rgba(148, 163, 184, 0.2);
    color: rgba(226, 232, 240, 0.9);
}

.badge.active {
    background: rgba(163, 230, 53, 0.2);
    color: #d9f99d;
}

.badge.passive {
    background: rgba(244, 63, 94, 0.2);
    color: #fecdd3;
}

.badge.paid {
    background: rgba(34, 197, 94, 0.18);
    color: #bbf7d0;
}

.badge.pending {
    background: rgba(251, 146, 60, 0.2);
    color: #fed7aa;
}

.badge.overdue {
    background: rgba(248, 113, 113, 0.2);
    color: #fecaca;
}

.card-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.note-grid,
.method-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
}

@media (max-width: 1200px) {
    .note-grid,
    .method-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .note-grid,
    .method-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .note-grid,
    .method-grid {
        grid-template-columns: 1fr;
    }
}

.card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    padding: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.45);
}

.note-card,
.method-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.drag-placeholder {
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
}

.draggable-card {
    cursor: grab;
}

.draggable-card:active {
    cursor: grabbing;
}

.draggable-card.dragging {
    display: none;
}

.draggable-card.drag-over {
    outline: 2px dashed rgba(34, 211, 238, 0.5);
    outline-offset: 6px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary {
    background: rgba(34, 211, 238, 0.9);
    color: #0f172a;
}

.btn-primary:hover {
    background: rgba(34, 211, 238, 1);
}

.btn-ghost {
    background: rgba(148, 163, 184, 0.15);
    color: rgba(226, 232, 240, 0.9);
}

.btn-ghost:hover {
    background: rgba(148, 163, 184, 0.25);
}

.voca-shell {
    background: rgba(2, 6, 23, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 22px;
    overflow: hidden;
}

.voca-left {
    width: 260px;
    background: rgba(2, 6, 23, 0.85);
    border-right: 1px solid rgba(148, 163, 184, 0.15);
}

.voca-main {
    background: rgba(15, 23, 42, 0.75);
}

.voca-section-title {
    color: rgba(148, 163, 184, 0.8);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.channel-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    color: rgba(226, 232, 240, 0.75);
    transition: all 0.2s ease;
}

.channel-link:hover {
    background: rgba(34, 211, 238, 0.12);
    color: #e2e8f0;
}

.channel-link.active {
    background: rgba(34, 211, 238, 0.2);
    color: #e2e8f0;
    border: 1px solid rgba(34, 211, 238, 0.35);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    display: inline-block;
}

.status-online {
    background: #4ade80;
}

.status-offline {
    background: #64748b;
}

.message-bubble {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 16px;
    padding: 12px 14px;
}

.message-bubble.mine {
    background: rgba(34, 211, 238, 0.16);
    border-color: rgba(34, 211, 238, 0.35);
}

.message-meta {
    color: rgba(148, 163, 184, 0.9);
    font-size: 12px;
}

.composer {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    padding: 12px;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(148, 163, 184, 0.15);
    color: rgba(226, 232, 240, 0.9);
    transition: all 0.2s ease;
}

.icon-btn:hover {
    background: rgba(148, 163, 184, 0.3);
}

.call-panel {
    background: rgba(2, 6, 23, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 18px;
    padding: 16px;
}

.video-box {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(148, 163, 184, 0.8);
}

.voice-member {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.6);
}

.file-icon {
    height: 48px;
    width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #f8fafc;
}

.file-icon.pdf {
    background: rgba(244, 63, 94, 0.2);
    color: #fecdd3;
}

.file-icon.folder {
    background: rgba(250, 204, 21, 0.18);
    color: #fef08a;
}

.file-icon.default {
    background: rgba(148, 163, 184, 0.2);
    color: #e2e8f0;
}

.folder-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(250, 204, 21, 0.18);
    color: #fef08a;
    font-size: 11px;
    font-weight: 600;
}

.tool-card {
    cursor: pointer;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.55);
}

.tool-card:hover {
    border-color: rgba(34, 211, 238, 0.4);
}

.toolbox-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.toolbox-card > :last-child {
    margin-top: auto;
    padding-top: 20px;
}

.tool-search-wrap {
    position: relative;
}

.tool-stat-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.tool-stat {
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.55);
    border-radius: 16px;
    padding: 14px;
}

.tool-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(148, 163, 184, 0.82);
}

.tool-stat-value {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #f8fafc;
    word-break: break-word;
}

.tool-stat-meta {
    margin-top: 6px;
    font-size: 12px;
    color: rgba(148, 163, 184, 0.82);
}

.tool-panel-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(148, 163, 184, 0.88);
}

.tool-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tool-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.24);
    color: #cffafe;
    font-size: 13px;
}

.tool-output-empty {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px dashed rgba(148, 163, 184, 0.22);
    border-radius: 18px;
    color: rgba(148, 163, 184, 0.84);
    background: rgba(2, 6, 23, 0.45);
    padding: 20px;
}

.search-input {
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 14px;
    padding: 12px 16px;
    color: #e2e8f0;
}

.output-panel {
    background: rgba(2, 6, 23, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    padding: 16px;
}

.tool-highlight-result {
    border: 1px solid rgba(34, 211, 238, 0.16);
    border-radius: 16px;
    padding: 18px;
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 34%),
        rgba(15, 23, 42, 0.76);
}

.tool-highlight-result-compact {
    padding: 16px;
}

.tool-highlight-label {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.88);
}

.tool-highlight-value {
    margin-top: 10px;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 700;
    color: #f8fafc;
    word-break: break-word;
}

.tool-highlight-result-compact .tool-highlight-value {
    font-size: 22px;
}

.tool-highlight-description {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(148, 163, 184, 0.86);
}

.tool-highlight-result + .tool-stat-grid {
    margin-top: 16px;
}

.tool-highlight-result + .output-panel {
    margin-top: 16px;
}

.tool-copy-button {
    min-width: 104px;
}

.tool-copy-button.is-copied {
    background: rgba(16, 185, 129, 0.18);
    color: #d1fae5;
}

.voca-server-rail {
    background:
        radial-gradient(circle at top, rgba(34, 211, 238, 0.12), transparent 36%),
        rgba(2, 6, 23, 0.92);
    border-right: 1px solid rgba(148, 163, 184, 0.12);
}

.voca-server-btn {
    width: 54px;
    height: 54px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: #f8fafc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.voca-server-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(34, 211, 238, 0.35);
    background: rgba(8, 47, 73, 0.72);
}

.voca-server-btn.active {
    background: linear-gradient(160deg, rgba(34, 211, 238, 0.28), rgba(6, 182, 212, 0.18));
    border-color: rgba(34, 211, 238, 0.45);
    box-shadow: 0 12px 28px rgba(8, 47, 73, 0.35);
}

.voca-mobile-drawer {
    isolation: isolate;
}

.voca-chat-scroll {
    scroll-behavior: smooth;
}

.voca-chat-scroll::-webkit-scrollbar,
.voca-left::-webkit-scrollbar {
    width: 10px;
}

.voca-chat-scroll::-webkit-scrollbar-track,
.voca-left::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.35);
    border-radius: 999px;
}

.voca-chat-scroll::-webkit-scrollbar-thumb,
.voca-left::-webkit-scrollbar-thumb {
    background: rgba(71, 85, 105, 0.85);
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.voca-chat-scroll::-webkit-scrollbar-thumb:hover,
.voca-left::-webkit-scrollbar-thumb:hover {
    background: rgba(34, 211, 238, 0.85);
    background-clip: padding-box;
}

.voca-message-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.voca-message-row.is-mine .message-bubble {
    margin-left: auto;
}

.voca-empty-state,
.voca-loading-state {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: rgba(148, 163, 184, 0.92);
}

.voca-composer-input {
    min-height: 28px;
    max-height: 180px;
    line-height: 1.6;
}

.voca-attachment-chip {
    min-width: 0;
    max-width: 280px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.18);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.voca-attachment-chip:hover {
    border-color: rgba(34, 211, 238, 0.38);
    transform: translateY(-1px);
}

.voca-attachment-preview {
    width: 220px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.18);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.voca-attachment-preview:hover {
    border-color: rgba(34, 211, 238, 0.38);
    transform: translateY(-1px);
}

.voca-attachment-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    background: rgba(2, 6, 23, 0.8);
}

.voca-attachment-meta {
    padding: 10px 12px 12px;
    min-width: 0;
}

.voca-file-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.18);
    font-size: 12px;
    color: rgba(226, 232, 240, 0.94);
}

.voca-control-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.voca-control-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: rgba(226, 232, 240, 0.94);
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.voca-control-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: rgba(34, 211, 238, 0.38);
}

.voca-control-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.voca-control-btn.is-active {
    background: rgba(34, 211, 238, 0.18);
    border-color: rgba(34, 211, 238, 0.4);
    color: #cffafe;
}

.voca-control-btn-danger {
    background: rgba(127, 29, 29, 0.5);
    border-color: rgba(248, 113, 113, 0.28);
    color: #fecaca;
}

.voca-video-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.voca-video-tile {
    overflow: hidden;
    border-radius: 20px;
}

.voca-video-surface {
    aspect-ratio: 16 / 10;
    background:
        radial-gradient(circle at top, rgba(34, 211, 238, 0.14), transparent 42%),
        rgba(15, 23, 42, 0.92);
    overflow: hidden;
}

.voca-video-meta {
    padding: 12px 14px 14px;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(2, 6, 23, 0.5);
}

.voca-video-placeholder,
.voca-video-fallback {
    min-height: 220px;
    border-radius: 18px;
    border: 1px dashed rgba(148, 163, 184, 0.22);
    background:
        linear-gradient(160deg, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.84)),
        rgba(15, 23, 42, 0.8);
    color: rgba(148, 163, 184, 0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

@media (max-width: 1024px) {
    .voca-shell {
        min-height: 82vh;
    }
}

.clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp-6 {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
