.glass { 
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
}

body { 
    background: radial-gradient(circle at top right, #1e1b4b, #0f172a); 
    min-height: 100vh; 
    color: white; 
    font-family: 'Inter', sans-serif; 
}

.record-card:hover { 
    transform: translateY(-2px); 
    transition: all 0.2s; 
}