/* ====================================
   VELORA ATMOSPHERIC DESIGN SYSTEM
   Moody, Mystical, & Cosmic Aesthetic
   ==================================== */

:root {
    /* ===== ATMOSPHERIC COLOR PALETTE ===== */
    
    /* Dark Cosmic Backgrounds */
    --velora-cosmos-deep: #0A0E27;
    --velora-cosmos-void: #13192E;
    --velora-cosmos-midnight: #1B2235;
    --velora-cosmos-dusk: #242B3D;
    --velora-cosmos-nebula: #2D3548;
    
    /* Mystical Purples & Violets */
    --velora-mystic-deep: #2D1B4E;
    --velora-mystic-royal: #4A2C6D;
    --velora-mystic-violet: #6B46C1;
    --velora-mystic-lavender: #8B5FD6;
    --velora-mystic-ethereal: #A78BFA;
    
    /* Celestial Blues */
    --velora-celestial-deep: #1A2847;
    --velora-celestial-midnight: #2D4263;
    --velora-celestial-azure: #4A5FBF;
    --velora-celestial-sky: #5B7CC7;
    --velora-celestial-bright: #7B9FE3;
    
    /* Cosmic Accents */
    --velora-stardust-gold: #C9A961;
    --velora-stardust-amber: #D4AF37;
    --velora-moonlight-silver: #C0C5D4;
    --velora-aurora-cyan: #4FC3DC;
    --velora-aurora-teal: #3FB8AF;
    --velora-nebula-pink: #E879F9;
    --velora-nebula-rose: #F472B6;
    
    /* Text Colors - Atmospheric */
    --velora-text-luminous: #F8FAFC;
    --velora-text-ethereal: #E2E8F0;
    --velora-text-mist: #CBD5E1;
    --velora-text-whisper: #94A3B8;
    --velora-text-shadow: #64748B;
    
    /* Glass & Blur Effects */
    --velora-glass-light: rgba(255, 255, 255, 0.05);
    --velora-glass-medium: rgba(255, 255, 255, 0.08);
    --velora-glass-strong: rgba(255, 255, 255, 0.12);
    --velora-glass-border: rgba(255, 255, 255, 0.1);
    
    /* Mystical Gradients */
    --velora-gradient-cosmic: linear-gradient(135deg, #2D1B4E 0%, #1A2847 50%, #0A0E27 100%);
    --velora-gradient-mystic: linear-gradient(135deg, #6B46C1 0%, #4A2C6D 100%);
    --velora-gradient-celestial: linear-gradient(135deg, #4A5FBF 0%, #2D4263 100%);
    --velora-gradient-nebula: linear-gradient(135deg, #E879F9 0%, #6B46C1 50%, #4A5FBF 100%);
    --velora-gradient-aurora: linear-gradient(135deg, #4FC3DC 0%, #3FB8AF 100%);
    --velora-gradient-stardust: linear-gradient(135deg, #D4AF37 0%, #C9A961 100%);
    
    /* Atmospheric Shadows */
    --velora-shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.4);
    --velora-shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.5);
    --velora-shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.6);
    --velora-shadow-cosmic: 0 12px 48px rgba(45, 27, 78, 0.7);
    
    /* Glow Effects */
    --velora-glow-mystic: 0 0 20px rgba(107, 70, 193, 0.6);
    --velora-glow-celestial: 0 0 20px rgba(74, 95, 191, 0.5);
    --velora-glow-stardust: 0 0 20px rgba(212, 175, 55, 0.6);
    --velora-glow-aurora: 0 0 20px rgba(79, 195, 220, 0.5);
    
    /* Transitions */
    --velora-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --velora-transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --velora-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --velora-radius-sm: 8px;
    --velora-radius-md: 12px;
    --velora-radius-lg: 16px;
    --velora-radius-xl: 20px;
    --velora-radius-2xl: 24px;
    --velora-radius-full: 9999px;
    
    /* Spacing System */
    --velora-space-xs: 0.5rem;
    --velora-space-sm: 0.75rem;
    --velora-space-md: 1rem;
    --velora-space-lg: 1.5rem;
    --velora-space-xl: 2rem;
    --velora-space-2xl: 3rem;
    --velora-space-3xl: 4rem;
}

/* ===== LIGHT MODE OVERRIDES (Less Atmospheric) ===== */
[data-theme="light"] {
    --velora-cosmos-deep: #F8FAFC;
    --velora-cosmos-void: #F1F5F9;
    --velora-cosmos-midnight: #E2E8F0;
    --velora-cosmos-dusk: #CBD5E1;
    --velora-cosmos-nebula: #94A3B8;
    
    --velora-text-luminous: #0F172A;
    --velora-text-ethereal: #1E293B;
    --velora-text-mist: #334155;
    --velora-text-whisper: #475569;
    --velora-text-shadow: #64748B;
    
    --velora-glass-light: rgba(0, 0, 0, 0.02);
    --velora-glass-medium: rgba(0, 0, 0, 0.04);
    --velora-glass-strong: rgba(0, 0, 0, 0.06);
    --velora-glass-border: rgba(0, 0, 0, 0.08);
    
    --velora-shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.08);
    --velora-shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --velora-shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.16);
    --velora-shadow-cosmic: 0 12px 48px rgba(107, 70, 193, 0.2);
}

/* ===== UNIVERSAL BUTTON SYSTEM ===== */

.velora-btn {
    /* Base Button Styles */
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--velora-space-sm);
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--velora-radius-lg);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--velora-transition-normal);
    overflow: hidden;
    white-space: nowrap;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.velora-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.velora-btn:hover::before {
    width: 300px;
    height: 300px;
}

.velora-btn:active {
    transform: translateY(1px) scale(0.98);
}

/* Primary Button - Mystic Gradient */
.velora-btn-primary {
    background: var(--velora-gradient-mystic);
    color: var(--velora-text-luminous);
    box-shadow: var(--velora-shadow-medium), var(--velora-glow-mystic);
}

.velora-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--velora-shadow-strong), 0 0 30px rgba(107, 70, 193, 0.8);
}

/* Secondary Button - Celestial Gradient */
.velora-btn-secondary {
    background: var(--velora-gradient-celestial);
    color: var(--velora-text-luminous);
    box-shadow: var(--velora-shadow-medium), var(--velora-glow-celestial);
}

.velora-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--velora-shadow-strong), 0 0 30px rgba(74, 95, 191, 0.7);
}

/* Outline Button - Glass Effect */
.velora-btn-outline {
    background: var(--velora-glass-light);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid var(--velora-glass-border);
    color: var(--velora-text-ethereal);
}

.velora-btn-outline:hover {
    background: var(--velora-glass-medium);
    border-color: var(--velora-mystic-violet);
    color: var(--velora-mystic-ethereal);
    box-shadow: var(--velora-glow-mystic);
}

/* Ghost Button - Minimal */
.velora-btn-ghost {
    background: transparent;
    color: var(--velora-text-mist);
    border: 1px solid transparent;
}

.velora-btn-ghost:hover {
    background: var(--velora-glass-light);
    color: var(--velora-text-ethereal);
    border-color: var(--velora-glass-border);
}

/* Stardust Button - Gold Accent */
.velora-btn-stardust {
    background: var(--velora-gradient-stardust);
    color: var(--velora-cosmos-deep);
    box-shadow: var(--velora-shadow-medium), var(--velora-glow-stardust);
}

.velora-btn-stardust:hover {
    transform: translateY(-2px);
    box-shadow: var(--velora-shadow-strong), 0 0 30px rgba(212, 175, 55, 0.8);
}

/* Aurora Button - Cyan/Teal */
.velora-btn-aurora {
    background: var(--velora-gradient-aurora);
    color: var(--velora-cosmos-deep);
    box-shadow: var(--velora-shadow-medium), var(--velora-glow-aurora);
}

.velora-btn-aurora:hover {
    transform: translateY(-2px);
    box-shadow: var(--velora-shadow-strong), 0 0 30px rgba(79, 195, 220, 0.7);
}

/* Button Sizes */
.velora-btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    border-radius: var(--velora-radius-md);
}

.velora-btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    border-radius: var(--velora-radius-xl);
}

.velora-btn-xl {
    padding: 1.375rem 3rem;
    font-size: 1.25rem;
    border-radius: var(--velora-radius-2xl);
}

/* Full Width Button */
.velora-btn-block {
    width: 100%;
}

/* Icon Button */
.velora-btn-icon {
    padding: 0.75rem;
    aspect-ratio: 1;
    border-radius: var(--velora-radius-full);
}

/* Disabled State */
.velora-btn:disabled,
.velora-btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Loading State */
.velora-btn-loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.velora-btn-loading::after {
    content: '';
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    top: 50%;
    left: 50%;
    margin-left: -0.625rem;
    margin-top: -0.625rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: velora-spin 0.6s linear infinite;
}

@keyframes velora-spin {
    to { transform: rotate(360deg); }
}

/* ===== TOOLTIP SYSTEM ===== */

.velora-tooltip {
    position: relative;
    display: inline-block;
}

.velora-tooltip-content {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    padding: 0.625rem 1rem;
    background: var(--velora-cosmos-midnight);
    color: var(--velora-text-ethereal);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--velora-radius-md);
    box-shadow: var(--velora-shadow-strong);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--velora-transition-normal);
    z-index: 10000;
    pointer-events: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--velora-glass-border);
}

.velora-tooltip-content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: var(--velora-cosmos-midnight) transparent transparent transparent;
}

.velora-tooltip:hover .velora-tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Tooltip Positions */
.velora-tooltip-top .velora-tooltip-content {
    bottom: 125%;
    top: auto;
}

.velora-tooltip-bottom .velora-tooltip-content {
    top: 125%;
    bottom: auto;
    transform: translateX(-50%) translateY(-8px);
}

.velora-tooltip-bottom:hover .velora-tooltip-content {
    transform: translateX(-50%) translateY(0);
}

.velora-tooltip-bottom .velora-tooltip-content::after {
    top: auto;
    bottom: 100%;
    border-color: transparent transparent var(--velora-cosmos-midnight) transparent;
}

.velora-tooltip-left .velora-tooltip-content {
    left: auto;
    right: 125%;
    top: 50%;
    bottom: auto;
    transform: translateX(8px) translateY(-50%);
}

.velora-tooltip-left:hover .velora-tooltip-content {
    transform: translateX(0) translateY(-50%);
}

.velora-tooltip-left .velora-tooltip-content::after {
    left: 100%;
    top: 50%;
    margin-top: -6px;
    margin-left: 0;
    border-color: transparent transparent transparent var(--velora-cosmos-midnight);
}

.velora-tooltip-right .velora-tooltip-content {
    left: 125%;
    right: auto;
    top: 50%;
    bottom: auto;
    transform: translateX(-8px) translateY(-50%);
}

.velora-tooltip-right:hover .velora-tooltip-content {
    transform: translateX(0) translateY(-50%);
}

.velora-tooltip-right .velora-tooltip-content::after {
    right: 100%;
    top: 50%;
    left: auto;
    margin-top: -6px;
    margin-left: 0;
    border-color: transparent var(--velora-cosmos-midnight) transparent transparent;
}

/* ===== TOAST NOTIFICATION SYSTEM ===== */

.velora-toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.velora-toast {
    pointer-events: auto;
    min-width: 300px;
    max-width: 420px;
    padding: 1.25rem 1.5rem;
    background: var(--velora-cosmos-midnight);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--velora-glass-border);
    border-radius: var(--velora-radius-lg);
    box-shadow: var(--velora-shadow-strong);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: velora-toast-slide-in 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.velora-toast::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: currentColor;
}

@keyframes velora-toast-slide-in {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.velora-toast.hiding {
    animation: velora-toast-slide-out 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes velora-toast-slide-out {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.velora-toast-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.velora-toast-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.velora-toast-title {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--velora-text-luminous);
    line-height: 1.4;
}

.velora-toast-message {
    font-size: 0.875rem;
    color: var(--velora-text-mist);
    line-height: 1.5;
}

.velora-toast-close {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    color: var(--velora-text-whisper);
    cursor: pointer;
    border-radius: var(--velora-radius-sm);
    transition: all var(--velora-transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.velora-toast-close:hover {
    background: var(--velora-glass-medium);
    color: var(--velora-text-ethereal);
}

/* Toast Variants */
.velora-toast-success {
    color: #10B981;
}

.velora-toast-success::before {
    background: #10B981;
}

.velora-toast-error {
    color: #EF4444;
}

.velora-toast-error::before {
    background: #EF4444;
}

.velora-toast-warning {
    color: #F59E0B;
}

.velora-toast-warning::before {
    background: #F59E0B;
}

.velora-toast-info {
    color: var(--velora-celestial-bright);
}

.velora-toast-info::before {
    background: var(--velora-celestial-bright);
}

.velora-toast-mystic {
    color: var(--velora-mystic-ethereal);
}

.velora-toast-mystic::before {
    background: var(--velora-mystic-ethereal);
}

/* Toast Progress Bar */
.velora-toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: currentColor;
    opacity: 0.3;
    animation: velora-toast-progress 5s linear;
}

@keyframes velora-toast-progress {
    from { width: 100%; }
    to { width: 0%; }
}

/* Mobile Positioning */
@media (max-width: 640px) {
    .velora-toast-container {
        top: 1rem;
        right: 1rem;
        left: 1rem;
    }
    
    .velora-toast {
        min-width: auto;
        max-width: 100%;
    }
}

/* ===== ATMOSPHERIC EFFECTS ===== */

/* Cosmic Particle Background */
.velora-cosmic-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.velora-cosmic-particles::before,
.velora-cosmic-particles::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

.velora-cosmic-particles::before {
    background-image: 
        radial-gradient(2px 2px at 20% 30%, var(--velora-mystic-ethereal), transparent),
        radial-gradient(2px 2px at 60% 70%, var(--velora-celestial-bright), transparent),
        radial-gradient(1px 1px at 50% 50%, var(--velora-stardust-gold), transparent),
        radial-gradient(1px 1px at 80% 10%, var(--velora-aurora-cyan), transparent),
        radial-gradient(2px 2px at 90% 60%, var(--velora-nebula-pink), transparent),
        radial-gradient(1px 1px at 33% 80%, var(--velora-mystic-lavender), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: velora-particles-float 60s ease-in-out infinite;
}

@keyframes velora-particles-float {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

/* Glass Card Effect */
.velora-glass-card {
    background: var(--velora-glass-light);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--velora-glass-border);
    border-radius: var(--velora-radius-xl);
    box-shadow: var(--velora-shadow-medium);
    transition: all var(--velora-transition-normal);
}

.velora-glass-card:hover {
    background: var(--velora-glass-medium);
    box-shadow: var(--velora-shadow-strong);
    transform: translateY(-4px);
}

/* Mystical Border Glow */
.velora-border-glow {
    position: relative;
    overflow: hidden;
}

.velora-border-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--velora-gradient-nebula);
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--velora-transition-normal);
    z-index: -1;
}

.velora-border-glow:hover::before {
    opacity: 0.5;
    animation: velora-glow-pulse 2s ease-in-out infinite;
}

@keyframes velora-glow-pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

/* Shimmer Effect */
.velora-shimmer {
    position: relative;
    overflow: hidden;
}

.velora-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: velora-shimmer 3s infinite;
}

@keyframes velora-shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Floating Animation */
.velora-float {
    animation: velora-float 6s ease-in-out infinite;
}

@keyframes velora-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===== MODAL SYSTEM ===== */

.velora-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--velora-transition-normal);
}

.velora-modal.active {
    opacity: 1;
    visibility: visible;
}

.velora-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.velora-modal-content {
    position: relative;
    z-index: 99999;
    background: var(--velora-cosmos-midnight);
    border: 1px solid var(--velora-glass-border);
    border-radius: var(--velora-radius-2xl);
    box-shadow: var(--velora-shadow-cosmic);
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    transform: scale(0.9) translateY(20px);
    transition: all var(--velora-transition-normal);
}

.velora-modal.active .velora-modal-content {
    transform: scale(1) translateY(0);
}

.velora-modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--velora-glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.velora-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--velora-text-luminous);
    margin: 0;
}

.velora-modal-close {
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    color: var(--velora-text-whisper);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: var(--velora-radius-sm);
    transition: all var(--velora-transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.velora-modal-close:hover {
    background: var(--velora-glass-medium);
    color: var(--velora-text-ethereal);
}

.velora-modal-body {
    padding: 2rem;
    color: var(--velora-text-mist);
    line-height: 1.6;
}

.velora-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--velora-glass-border);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Mobile Modal Adjustments */
@media (max-width: 640px) {
    .velora-modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .velora-modal-header,
    .velora-modal-body,
    .velora-modal-footer {
        padding: 1.25rem;
    }
    
    .velora-modal-footer {
        flex-direction: column;
    }
    
    .velora-modal-footer .velora-btn {
        width: 100%;
    }
}

/* ===== FORM VALIDATION STYLES ===== */

.velora-field-error {
    border-color: #EF4444 !important;
}

.velora-field-error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.velora-field-error-message {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #EF4444;
    animation: velora-shake 0.3s ease;
}

@keyframes velora-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

/* ===== UTILITY CLASSES ===== */

.velora-text-gradient-mystic {
    background: var(--velora-gradient-mystic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.velora-text-gradient-celestial {
    background: var(--velora-gradient-celestial);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.velora-text-gradient-stardust {
    background: var(--velora-gradient-stardust);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Shadow Utilities */
.velora-shadow-subtle { box-shadow: var(--velora-shadow-subtle); }
.velora-shadow-medium { box-shadow: var(--velora-shadow-medium); }
.velora-shadow-strong { box-shadow: var(--velora-shadow-strong); }
.velora-shadow-cosmic { box-shadow: var(--velora-shadow-cosmic); }

/* Glow Utilities */
.velora-glow-mystic { box-shadow: var(--velora-glow-mystic); }
.velora-glow-celestial { box-shadow: var(--velora-glow-celestial); }
.velora-glow-stardust { box-shadow: var(--velora-glow-stardust); }
.velora-glow-aurora { box-shadow: var(--velora-glow-aurora); }
