@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* Color Palette - Google Drive Dark Theme styled */
    --bg-main: #0d0f17;
    --bg-surface: #141824;
    --bg-sidebar: #0d0f17;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(255, 255, 255, 0.16);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Brand color - royal blue from the logo */
    --primary: #0052cc;
    --primary-light: #00a3ff;
    --primary-glow: rgba(0, 82, 204, 0.2);
    --primary-gradient: linear-gradient(135deg, #0052cc 0%, #00a3ff 100%);
    
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Grid Layout Shell */
.app-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

@media (max-width: 900px) {
    .app-container {
        grid-template-columns: 1fr;
    }
    .sidebar {
        display: none !important; /* Hide sidebar on mobile */
    }
}

/* SIDEBAR LAYOUT */
.sidebar {
    background-color: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 12px;
    margin-bottom: 12px;
    text-decoration: none;
}

.brand-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.brand-logo-fallback {
    height: 38px;
    width: 38px;
    border-radius: 10px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: white;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* NEW BUTTON & DROPDOWN */
.new-btn-wrapper {
    position: relative;
    padding: 0 8px;
    margin-bottom: 8px;
}

.btn-new {
    background: #ffffff;
    color: #1f2937;
    border: none;
    border-radius: 16px;
    padding: 16px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.btn-new:hover {
    background: #f3f4f6;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
}

.btn-new-icon {
    font-size: 20px;
    color: var(--primary);
    font-weight: 800;
}

.new-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 8px;
    right: 8px;
    margin-top: 8px;
    background: #1e293b;
    border: 1px solid var(--border-color-hover);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    z-index: 50;
    display: none;
    flex-direction: column;
    overflow: hidden;
    padding: 6px;
}

.new-dropdown-menu.show {
    display: flex;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-item-icon {
    font-size: 16px;
    color: var(--primary-light);
}

/* SIDEBAR NAVIGATION */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
}

.nav-link.active {
    background: rgba(0, 82, 204, 0.15);
    color: var(--primary-light);
    font-weight: 600;
}

.nav-link-icon {
    font-size: 18px;
}

/* STORAGE METER */
.storage-box {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 18px;
    border-radius: 18px;
}

.storage-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.storage-bar-track {
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.storage-bar-fill {
    height: 100%;
    background: var(--primary-gradient);
    width: 0%;
    transition: width 1s ease-in-out;
}

.storage-desc {
    font-size: 11px;
    color: var(--text-muted);
}

/* MAIN CONTENT AREA */
.main-content {
    background-color: var(--bg-surface);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* HEADER / TOPBAR */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    border-bottom: 1px solid var(--border-color);
}

.search-bar-wrapper {
    position: relative;
    max-width: 600px;
    width: 100%;
}

.search-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 14px;
    pointer-events: none;
}

.search-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid transparent;
    border-radius: 120px;
    color: var(--text-primary);
    padding: 12px 18px 12px 46px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

.search-input:focus {
    background: #1e293b;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.15);
}

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

.btn-logout {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 12px;
    text-decoration: none;
    background: rgba(239, 68, 68, 0.08);
    color: var(--danger);
    font-weight: 600;
    border: 1px solid rgba(239, 68, 68, 0.15);
    transition: var(--transition-smooth);
}

.btn-logout:hover {
    background: rgba(239, 68, 68, 0.15);
}

/* DRIVE INNER CONTAINER */
.drive-workspace {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 24px 30px;
    overflow-y: auto;
    gap: 24px;
}

/* BREADCRUMBS */
.breadcrumbs-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.breadcrumb-item {
    color: var(--text-secondary);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.breadcrumb-item:hover {
    color: var(--text-primary);
}

.breadcrumb-item.active {
    color: var(--text-primary);
    cursor: default;
}

.breadcrumb-separator {
    color: var(--text-muted);
    font-size: 14px;
}

/* CONTROLS ROW */
.drive-controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.category-filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 13px;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

/* LIST/GRID TOGGLE */
.view-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2px;
}

.toggle-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 13px;
    font-weight: 600;
}

.toggle-btn.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

/* FOLDERS GRID SECTION */
.folders-section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.folders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.folder-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.folder-card:hover {
    border-color: var(--primary-light);
    background: rgba(0, 163, 255, 0.02);
    transform: translateY(-1px);
}

.folder-info {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}

.folder-icon {
    font-size: 22px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.folder-name {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.folder-actions {
    position: relative;
}

/* FILES LIST/GRID VIEW */
.files-section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

/* File Card Grid */
.files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.file-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition-smooth);
    position: relative;
}

.file-card:hover {
    border-color: var(--primary-light);
    background: rgba(0, 163, 255, 0.02);
    transform: translateY(-2px);
}

.file-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.file-card-icon {
    font-size: 26px;
}

.file-card-actions {
    position: relative;
}

.action-menu-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.action-menu-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.file-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.file-card-name {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.file-card-size {
    font-size: 11px;
    color: var(--text-secondary);
}

.file-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 10px;
    margin-top: 4px;
    font-size: 11px;
    color: var(--text-muted);
}

.footer-stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* File List Table */
.files-list-wrapper {
    overflow-x: auto;
    width: 100%;
}

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

.files-table th {
    color: var(--text-secondary);
    font-weight: 600;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
}

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

.files-table tr {
    transition: var(--transition-smooth);
}

.files-table tr:hover td {
    background: rgba(0, 163, 255, 0.01);
}

.files-table tr:hover {
    border-left: 2px solid var(--primary-light);
}

.table-file-name-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    max-width: 300px;
}

.table-file-name-cell span {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.table-actions-cell {
    display: flex;
    gap: 6px;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 12px;
}

.btn-icon:hover {
    background: var(--primary-glow);
    color: var(--primary-light);
    border-color: var(--primary-light);
}

.btn-icon.delete-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border-color: var(--danger);
}

/* MODAL / DIALOGS (Google-like styling) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #1e293b;
    border: 1px solid var(--border-color-hover);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    padding: 24px;
    transform: scale(0.95);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

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

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

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--text-primary);
}

/* UPLOAD OVERLAY ZONE (WeTransfer style drawer/modal) */
.upload-modal-content {
    max-width: 440px;
    padding: 28px;
}

/* Dropzone styling inside modal */
.dropzone {
    border: 2px dashed rgba(0, 163, 255, 0.3);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    background: rgba(0, 163, 255, 0.01);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dropzone.dragover {
    border-color: var(--primary-light);
    background: rgba(0, 163, 255, 0.08);
}

.dropzone-icon {
    font-size: 32px;
    color: var(--primary-light);
}

.dropzone-title {
    font-weight: 600;
    font-size: 14px;
}

.dropzone-desc {
    font-size: 11px;
    color: var(--text-secondary);
}

/* File info selected */
.selected-file-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.file-info-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}

.file-icon-square {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.file-name-preview {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.file-size-preview {
    font-size: 10px;
    color: var(--text-secondary);
}

.remove-file-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
}

.remove-file-btn:hover {
    color: var(--danger);
}

/* Upload progress inside modal */
.progress-container {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 6px;
}

.progress-track {
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    width: 0%;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--text-secondary);
}

/* INPUTS STYLING */
.input-styled {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

.input-styled:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.1);
}

.select-styled {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 32px;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.option-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
}

/* BUTTONS */
.btn-primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover:not(:disabled) {
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.4);
    filter: brightness(1.05);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 12px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}

/* EMPTY STATE */
.empty-state {
    text-align: center;
    padding: 50px 20px;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.empty-state-icon {
    font-size: 40px;
    color: var(--text-muted);
}

.empty-state h3 {
    font-size: 16px;
    color: var(--text-primary);
}

.empty-state p {
    font-size: 12px;
}

/* BADGES */
.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-public { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.badge-locked { background: rgba(245, 158, 11, 0.1); color: var(--warning); }
.badge-expired { background: rgba(239, 68, 68, 0.1); color: var(--danger); }

/* TOASTS */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
}

.toast {
    background: #1e293b;
    border: 1px solid var(--border-color-hover);
    color: var(--text-primary);
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    animation: toast-in 0.25s forwards cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

@keyframes toast-in {
    to { transform: translateY(0); opacity: 1; }
}

.toast-success { border-left: 3px solid var(--success); }
.toast-error { border-left: 3px solid var(--danger); }

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-light);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* WETRANSFER PUBLIC PAGE SPECIFIC */
.wt-download-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background-color: var(--bg-main);
    background-image: radial-gradient(circle at 50% 0%, #151a30 0%, #0d0f17 70%);
}

.wt-card {
    max-width: 440px;
    width: 100%;
    padding: 36px;
    border-radius: 28px;
    text-align: center;
    background: rgba(20, 24, 36, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.wt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-gradient);
}

.wt-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: rgba(0, 163, 255, 0.06);
    border: 1px solid rgba(0, 163, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: var(--primary-light);
    margin: 0 auto 24px auto;
}

.wt-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    word-break: break-all;
}

.wt-meta {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wt-divider {
    height: 1px;
    background: var(--border-color);
    margin: 20px 0;
}
