/*
 * Global style definitions for the VEXND web application.
 *
 * These styles were previously embedded directly in the HTML templates.  Moving
 * them into a dedicated stylesheet improves maintainability, reusability and
 * page load performance.  Feel free to extend this file with additional
 * reusable classes as the project grows.
 */

/* A subtle glass‑like background used throughout cards and panels. */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Adds a soft glow on hover to draw the user’s eye. */
.hover-glow:hover {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* Utility widths for large cards. */
.w-128 {
    width: 32rem;
}

.md\:w-192 {
    width: 48rem;
}

@media (min-width: 768px) {
    .md\:w-192 {
        width: 48rem;
    }
}

/* Language switcher styling */
.lang-switch {
    display: flex;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.lang-switch button {
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
    cursor: pointer;
    background: transparent;
    border: none;
    color: #9ca3af;
}

.lang-switch button.active {
    color: white;
    background: rgba(139, 92, 246, 0.2);
}

.lang-switch button:hover {
    color: white;
}

.lang-switch .separator {
    color: #4b5563;
    user-select: none;
}