html,
body {
    min-height: 100%;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

.glass-panel {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.72), rgba(30, 41, 59, 0.52));
    backdrop-filter: blur(20px);
}

.pretty-scrollbar::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.pretty-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.pretty-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.35);
    border-radius: 999px;
}

.modal-backdrop {
    backdrop-filter: blur(14px);
}

.shadow-soft {
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
}

.form-control {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-control:focus {
    border-color: #0f172a;
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.06);
}

.auth-input {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    color: #fff;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-input::placeholder {
    color: rgba(226, 232, 240, 0.65);
}

.auth-input:focus {
    border-color: rgba(56, 189, 248, 0.7);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.08);
}

.secret-value {
    letter-spacing: 0.08em;
}

.cell-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-card {
    position: relative;
    overflow: hidden;
}

.item-card::after {
    content: '';
    position: absolute;
    inset: auto -40px -40px auto;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.06), transparent 70%);
    pointer-events: none;
}
