
body {
    background: linear-gradient(135deg, #1f0529 0%, #4a148c 50%, #7b1fa2 100%);
    background-attachment: fixed;
    color: #fff;
    font-family: 'Prompt', sans-serif;
    min-height: 100vh;
}
.glossy-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}
.glossy-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 12px;
}
.glossy-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: #d8b4fe;
    box-shadow: 0 0 10px rgba(216, 180, 254, 0.5);
}
.glossy-btn {
    background: linear-gradient(135deg, #c026d3 0%, #9333ea 100%);
    border: none;
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
}
.glossy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.6);
}
.table-glossy {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    overflow: hidden;
}
.table-glossy th {
    background: rgba(255, 255, 255, 0.1);
    color: #e9d5ff;
}
.table-glossy td, .table-glossy th {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.table-glossy tr:hover td {
    background: rgba(255, 255, 255, 0.05);
}
