:root {
    --primary-color: #4f46e5;
    --primary-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --secondary-color: #10b981;
    --background-color: #f8fafc;
    --surface-color: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --hover-bg: #f1f5f9;
    --selected-bg: #eef2ff;
    --folder-color: #fcd34d;
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.selection-box {
    position: absolute;
    background: rgba(79, 70, 229, 0.15);
    border: 1px solid rgba(79, 70, 229, 0.6);
    z-index: 1000;
    pointer-events: none;
    border-radius: 2px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
}

body.dashboard-body {
    height: 100vh;
    overflow: hidden;
    display: flex;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background: var(--surface-color);
    border-right: 1px solid var(--border-color);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-left: 8px;
    letter-spacing: -0.025em;
}

.brand i {
    font-size: 1.8rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    list-style: none;
    flex: 1;
}

.nav-item {
    margin-bottom: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.nav-link:hover {
    background-color: var(--hover-bg);
    color: var(--text-primary);
    transform: translateX(4px);
}

.nav-link.active {
    background-color: var(--selected-bg);
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link i {
    width: 24px;
    margin-right: 12px;
    font-size: 1.25rem;
}

.storage-info {
    padding: 20px;
    background: #f1f5f9;
    border-radius: var(--radius-lg);
    margin-top: auto;
    border: 1px solid var(--border-color);
}

.storage-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin: 12px 0;
    overflow: hidden;
}

.storage-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 4px;
    width: 0%;
    transition: width 1s ease-out;
}

.storage-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

/* Header */
.top-header {
    height: 72px;
    background: var(--surface-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
}

.search-bar {
    background: var(--hover-bg);
    border-radius: var(--radius-lg);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    width: 440px;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.search-bar:focus-within {
    background: var(--surface-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    margin-left: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.user-profile {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 12px;
    padding: 6px;
    border-radius: 50px;
    transition: background 0.2s;
}

.user-profile:hover {
    background: var(--hover-bg);
}

.user-avatar {
    width: 38px;
    height: 38px;
    background: var(--primary-gradient);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

/* Explorer View */
.explorer-container {
    flex: 1;
    padding: 32px;
    overflow-y: auto;
    background: var(--background-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.breadcrumb-sep {
    margin: 0 10px;
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.9rem;
}

.action-bar {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
}

.btn {
    padding: 12px 24px;
    border-radius: var(--radius-md);
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--hover-bg);
    border-color: #cbd5e1;
}

/* File Grid */
.file-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    padding-bottom: 80px;
}

.file-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    user-select: none;
    box-shadow: var(--shadow-sm);
}

.file-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.file-card.selected {
    background: var(--selected-bg);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.file-card.drag-over {
    background: #eef2ff;
    border: 2px dashed var(--primary-color);
    transform: scale(1.02);
}

.file-checkbox {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    opacity: 0;
    z-index: 10;
}

.file-card:hover .file-checkbox,
.file-card.selected .file-checkbox {
    opacity: 1;
}

.file-card.selected .file-checkbox {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.file-checkbox i {
    font-size: 0.85rem;
    display: none;
}

.file-card.selected .file-checkbox i {
    display: block;
}

.file-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.file-card:hover .file-icon {
    transform: scale(1.1);
}

.file-thumbnail-container {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 8px;
    background: #f8fafc;
}

.file-thumbnail {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.file-card:hover .file-thumbnail {
    transform: scale(1.05);
}

.file-icon.fa-folder {
    color: var(--folder-color);
    text-shadow: 0 4px 10px rgba(252, 211, 77, 0.3);
}

.file-icon.fa-image {
    color: #f43f5e;
}

.file-icon.fa-file-pdf {
    color: #ef4444;
}

.file-icon.fa-file-word {
    color: #3b82f6;
}

.file-icon.fa-file-excel {
    color: #10b981;
}

.file-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}

.file-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Context Menu */
.context-menu {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    min-width: 220px;
    z-index: 2000;
    display: none;
    animation: menuFadeIn 0.2s ease-out;
}

@keyframes menuFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.context-item {
    padding: 10px 14px;
    font-size: 0.95rem;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    transition: all 0.2s;
    font-weight: 500;
}

.context-item:hover {
    background: var(--hover-bg);
    padding-left: 18px;
}

.context-item.danger {
    color: #ef4444;
}

.context-item.danger:hover {
    background: #fef2f2;
}

/* Bulk Actions Bar */
.bulk-actions-bar {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2500;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.bulk-actions-bar.active {
    bottom: 40px;
}

.selection-info {
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 1.1rem;
}

.bulk-btn {
    border: none;
    background: transparent;
    padding: 10px 16px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #cbd5e1;
    transition: all 0.2s;
    font-weight: 600;
}

.bulk-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.bulk-btn.danger:hover {
    background: #ef4444;
    color: white;
}

/* Toast Notification */
.toast-container {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 4000;
}

.toast {
    background: #1e293b;
    color: white;
    padding: 16px 28px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 500;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: white;
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    animation: modalSlide 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

@keyframes modalSlide {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    padding: 16px 24px;
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.modal-input {
    width: 100%;
    border: 2px solid var(--border-color);
    padding: 14px 18px;
    font-weight: 500;
    border-radius: var(--radius-md);
    outline: none;
    transition: all 0.2s;
}

.modal-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* Auth Pages */
.auth-page {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    background-image:
        radial-gradient(at 0% 0%, rgba(79, 70, 229, 0.05) 0, transparent 50%),
        radial-gradient(at 100% 100%, rgba(124, 58, 237, 0.05) 0, transparent 50%);
}

.auth-card {
    background: var(--surface-color);
    padding: 48px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 440px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1), 0 20px 25px -5px rgb(0 0 0 / 0.1);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    text-align: center;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-header {
    margin-bottom: 32px;
}

.auth-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 8px;
}

.auth-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.auth-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    background: #f8fafc;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
}

.auth-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
}

.auth-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    margin-top: 8px;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

/* Drag and Drop Overlay */
.drop-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(79, 70, 229, 0.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s;
    pointer-events: none;
}

.drop-overlay.active {
    display: flex;
}

.drop-overlay i {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* ===== HAMBURGER MENU BUTTON ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    background: var(--hover-bg);
}

/* ===== SIDEBAR OVERLAY ===== */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2999;
}

.sidebar-overlay.active {
    display: block;
}

/* ===== MOBILE IMPROVEMENTS & RESPONSIVENESS ===== */

/* Utility for responsive grids */
.grid-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Tablet Breakpoint */
@media (max-width: 1024px) {
    .grid-stack {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-bar {
        width: 280px;
    }

    .file-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }
}

/* Mobile Breakpoint */
@media (max-width: 768px) {
    .grid-stack {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Show hamburger */
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Sidebar slide-in */
    .sidebar {
        position: fixed;
        left: -300px;
        /* Hidden by default */
        top: 0;
        z-index: 3000;
        height: 100vh;
        width: 280px;
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.2);
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex !important;
        /* Force display if it was hidden */
    }

    .sidebar.open {
        left: 0;
    }

    /* Body flex-direction change on mobile */
    body.dashboard-body {
        flex-direction: column;
        height: auto;
        overflow: auto;
    }

    /* Header */
    .top-header {
        height: 64px;
        padding: 0 16px;
        position: sticky;
        top: 0;
        z-index: 2000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    /* Search bar - very compact on mobile */
    .search-bar {
        flex: 1;
        margin: 0 10px;
        width: auto;
        padding: 8px 12px;
    }

    .search-bar i {
        font-size: 0.9rem;
    }

    .search-input {
        font-size: 0.85rem;
        margin-left: 8px;
    }

    .user-profile span,
    .user-profile i.fa-chevron-down {
        display: none;
    }

    /* Main content reset */
    .main-content {
        height: auto;
        min-height: calc(100vh - 64px);
        overflow: visible;
    }

    /* Explorer / Inner pages */
    .explorer-container {
        padding: 20px 16px;
        overflow: visible;
    }

    /* Table Responsiveness - Scrollable Wrapper */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: var(--radius-md);
        margin: 0 -4px;
        /* Slight bleed for better spacing */
    }

    table {
        min-width: 600px;
        /* Ensure content doesn't squash too much */
    }

    th,
    td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    /* Hide non-critical columns on small screens if they use '.desktop-only' */
    .desktop-only {
        display: none !important;
    }

    /* Breadcrumbs scroll horizontally */
    .breadcrumb {
        font-size: 1rem;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
        scrollbar-width: none;
    }

    .breadcrumb::-webkit-scrollbar {
        display: none;
    }

    /* Action buttons stack or wrap better */
    .action-bar {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    /* File grid adjustments */
    .file-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Context Menu / Bottom Sheet for Mobile */
    .context-menu {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        width: 100%;
        max-width: 100%;
        border-radius: 24px 24px 0 0;
        padding: 10px 10px 30px;
        transform: translateY(100%);
        transition: transform 0.3s ease;
        display: block !important;
        pointer-events: none;
        opacity: 0;
    }

    .context-menu.active {
        transform: translateY(0);
        pointer-events: auto;
        opacity: 1;
    }

    /* Modals for mobile */
    .modal-card {
        max-width: calc(100% - 32px);
        margin: 16px;
    }

    /* Auth pages fix */
    .auth-card {
        padding: 32px 24px;
        margin: 16px;
    }
}

/* Small Device Breakpoint */
@media (max-width: 480px) {
    .file-grid {
        grid-template-columns: 1fr;
    }

    .file-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 12px 16px;
        gap: 16px;
    }

    .file-icon {
        font-size: 2rem;
        margin-bottom: 0;
    }

    .file-thumbnail-container {
        width: 48px;
        height: 48px;
        margin-bottom: 0;
    }

    .file-name {
        margin-bottom: 2px;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .action-bar .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Desktop App Specific Styles */
body.is-desktop-app .web-only {
    display: none !important;
}

body.is-desktop-app .sidebar {
    background: #f1f5f9;
}

body.is-desktop-app .explorer-container {
    background: white;
    border-radius: 32px 0 0 0;
    margin-top: 10px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.03);
}

.desktop-settings-section {
    padding: 16px;
    background: white;
    border-radius: 16px;
    margin-top: 20px;
    border: 1px solid var(--border-color);
}

.desktop-settings-title {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.mount-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.mount-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
}

.mount-btn-mini {
    margin-top: 10px;
    width: 100%;
    padding: 8px;
    font-size: 0.75rem;
    border-radius: 8px;
    background: var(--hover-bg);
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }

    .grid-stack {
        grid-template-columns: 1fr !important;
    }
}

.flex-responsive {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .flex-responsive {
        flex-direction: column;
    }
}