:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --danger-gradient: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    --bg-dark: #0e1428;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --accent-purple: #667eea;
    --accent-pink: #f093fb;
    --accent-cyan: #00d9ff;
    --accent-green: #38ef7d;
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.3);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 70px;
}

.footer-clock-bar {
    display: flex;
    justify-content: center;
    margin: 10px 0 4px;
}

.footer-clock {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-cyan);
}

.top-link-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 16px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1200;
}

.top-link-bar a {
    color: var(--accent-cyan);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.top-link-bar a:hover {
    color: var(--accent-purple);
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-purple);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-pink);
    bottom: -150px;
    right: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-cyan);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -50px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }

    75% {
        transform: translate(-50px, -30px) scale(1.05);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-logo {
    height: 96px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 10px;
    overflow: visible;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header-actions {
    display: flex;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-medium);
    white-space: nowrap;
}

.btn i {
    font-size: 16px;
}

.btn-glass {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-purple);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--success-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(56, 239, 125, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(56, 239, 125, 0.4);
}

.btn-danger {
    background: var(--danger-gradient);
    color: white;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(235, 51, 73, 0.4);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.btn-close:hover {
    background: rgba(235, 51, 73, 0.2);
    border-color: #eb3349;
    color: #eb3349;
}

/* Upload Section */
.upload-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

.upload-card,
.preview-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 26px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    max-width: 100%;
}

.upload-zone {
    border: 2px dashed var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--accent-purple);
    background: rgba(102, 126, 234, 0.1);
}

.upload-zone.dragover {
    transform: scale(1.02);
}

.upload-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-glow);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
    }
}

.upload-zone h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.upload-zone p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.upload-formats {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.upload-formats span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--glass-bg);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-muted);
}

.upload-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

/* Preview */
.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.preview-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.preview-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    max-height: 350px;
}

.preview-image img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    cursor: grab;
}

.preview-image img:active {
    cursor: grabbing;
}

.preview-actions {
    display: flex;
    justify-content: center;
}

/* Loading */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 120px;
    height: 120px;
    position: relative;
    margin: 0 auto 30px;
}

.spinner-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
    border-top-color: var(--accent-purple);
}

.spinner-ring:nth-child(2) {
    inset: 10px;
    border-right-color: var(--accent-pink);
    animation-delay: 0.2s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    inset: 20px;
    border-bottom-color: var(--accent-cyan);
    animation-delay: 0.4s;
}

.loading-spinner i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: var(--accent-purple);
    animation: pulse 1s infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loading-content p {
    color: var(--text-secondary);
}

/* Popup */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.popup-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    max-width: 680px;
    width: 100%;
    padding: 28px;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-lg);
    max-height: 82vh;
    overflow-y: auto;
    margin: 16px;
    position: relative;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.popup-header .btn-close {
    margin-left: auto;
    position: absolute;
    top: 14px;
    right: 14px;
}

.popup-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 36px;
}

.popup-icon.success {
    background: var(--success-gradient);
    box-shadow: 0 0 40px rgba(56, 239, 125, 0.4);
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.popup-header h2 {
    font-size: 26px;
}

/* Popup Image */
.popup-image-container {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
}

.popup-image-container img {
    max-width: 95%;
    max-height: 220px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    cursor: grab;
}

.popup-image-container img:active {
    cursor: grabbing;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.info-item {
    display: flex;
    gap: 16px;
    padding: 18px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-fast);
}

.info-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-purple);
}

.info-item.full-width {
    grid-column: 1 / -1;
}

.info-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.info-details label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.info-details span {
    font-size: 17px;
    font-weight: 600;
    word-break: break-word;
}

.popup-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.popup-footer p {
    color: var(--text-muted);
    font-size: 13px;
}

/* Image Popup */
.image-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    padding: 20px;
}

.image-popup-content {
    position: relative;
    max-width: 80vw;
    max-height: 85vh;
}

.image-popup-close {
    display: none;
}

.image-popup-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    cursor: grab;
}

.image-popup-content img:active {
    cursor: grabbing;
}

/* Table */
.table-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.table-header h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
}

.table-header h2 i {
    color: var(--accent-purple);
}

.table-stats span {
    padding: 8px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-secondary);
}

.table-stats strong {
    color: var(--accent-cyan);
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
}

.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 1000px;
}

.data-table th,
.data-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.data-table th {
    background: var(--bg-card);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.data-table th i {
    margin-right: 8px;
    color: var(--accent-purple);
}

.data-table th:first-child {
    border-radius: var(--radius-sm) 0 0 0;
}

.data-table th:last-child {
    border-radius: 0 var(--radius-sm) 0 0;
}

.data-table tbody tr {
    transition: all var(--transition-fast);
}

.data-table tbody tr:hover {
    background: var(--bg-card-hover);
}

.data-table td {
    font-size: 14px;
    color: var(--text-primary);
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.data-table td:last-child {
    text-align: center;
    white-space: nowrap;
}

/* Table Thumbnail */
.table-thumbnail {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid var(--glass-border);
}

.table-thumbnail:hover {
    transform: scale(1.1);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-glow);
}

.table-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.table-link:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--text-muted);
}

.empty-state h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.empty-state p {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 20px 30px;
    text-align: center;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
    margin-right: 12px;
}

.footer-link:hover {
    color: var(--accent-cyan);
}

.footer-link i {
    font-size: 18px;
    color: var(--accent-green);
}

.footer-note {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Log Panel */
.log-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--bg-dark);
    border-left: 1px solid var(--glass-border);
    z-index: 900;
    display: flex;
    flex-direction: column;
    transition: right var(--transition-medium);
    box-shadow: var(--shadow-lg);
}

.log-panel.open {
    right: 0;
}

.log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.log-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.log-header h3 i {
    color: var(--accent-cyan);
}

.log-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.log-item {
    padding: 12px 16px;
    background: var(--glass-bg);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    border-left: 3px solid var(--accent-purple);
    font-size: 13px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.log-item.success {
    border-left-color: var(--accent-green);
}

.log-item.error {
    border-left-color: #eb3349;
}

.log-item .time {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.log-item .message {
    color: var(--text-secondary);
}

.log-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--glass-border);
}

/* Toast */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    padding: 16px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    box-shadow: var(--shadow-md);
    animation: toastSlide 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes toastSlide {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast.success {
    border-left: 4px solid var(--accent-green);
}

.toast.error {
    border-left: 4px solid #eb3349;
}

.toast.info {
    border-left: 4px solid var(--accent-cyan);
}

.toast i {
    font-size: 20px;
}

.toast.success i {
    color: var(--accent-green);
}

.toast.error i {
    color: #eb3349;
}

.toast.info i {
    color: var(--accent-cyan);
}

/* Responsive */
@media (max-width: 1024px) {
    .upload-section {
        grid-template-columns: 1fr;
    }

    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .logo {
        flex-direction: column;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 12px;
    }

    .header {
        padding: 16px;
        border-radius: var(--radius-lg);
    }

    .brand-logo {
        height: 48px;
    }

    .logo-text h1 {
        font-size: 20px;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }

    .btn span {
        display: none;
    }

    .btn {
        padding: 12px;
    }

    .upload-card,
    .preview-card,
    .table-section,
    .footer {
        padding: 20px;
        border-radius: var(--radius-lg);
    }

    .upload-zone {
        padding: 30px 20px;
    }

    .upload-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .upload-zone h2 {
        font-size: 18px;
    }

    .upload-actions {
        flex-direction: column;
    }

    .upload-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .upload-actions .btn span {
        display: inline;
    }

    .popup-card {
        padding: 24px;
        max-width: 92vw;
        max-height: 78vh;
        margin: 12px;
    }

    .popup-header h2 {
        font-size: 22px;
    }

    .popup-header {
        flex-wrap: wrap;
    }

    .log-panel {
        width: 100%;
        right: -100%;
    }

    .table-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-card);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

::selection {
    background: rgba(102, 126, 234, 0.3);
    color: white;
}