/* Glassmorphism helper classes */
.glass-surface {
    backdrop-filter: blur(22px);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 45px rgba(15, 30, 64, 0.18);
}

.glass-surface--dark {
    backdrop-filter: blur(28px);
    background: rgba(12, 18, 30, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #f8fafc;
}

.glass-outline {
    position: relative;
    border-radius: 24px;
}

.glass-outline::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.45);
    pointer-events: none;
}

.glass-card-xl {
    border-radius: 32px;
    padding: 2.5rem;
}

.glass-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(164, 255, 0, 0.15);
    color: #1e3c72;
    font-weight: 600;
}

.glass-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(164, 255, 0, 0), rgba(164, 255, 0, 0.45), rgba(164, 255, 0, 0));
    margin: 2rem 0;
}
