.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
}

/* Animated Glass Glow */
.glass-glow {
    position: relative;
    overflow: hidden;
}

.glass-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease-out;
    pointer-events: none;
}

.glass-glow:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Neon Text Accents */
.text-neon-purple {
    color: var(--primary-neon);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.text-neon-blue {
    color: var(--secondary-neon);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Input Fields Glass style */
.glass-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    outline: none;
    transition: var(--transition-smooth);
}

.glass-input:focus {
    border-color: var(--primary-neon);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}
