:root {
    --accent: #bf2450;
    --accent-hover: #9c1d41;
    --bg-color: #0f172a;
}

body {
    background: radial-gradient(circle at top right, #1e293b, var(--bg-color));
    background-attachment: fixed;
    color: #f3f4f6;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.glass {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
}

.glass-nav {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.text-accent {
    color: var(--accent);
}

.bg-accent {
    background-color: var(--accent);
}

.bg-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(191, 36, 80, 0.4);
}

.border-accent {
    border-color: var(--accent);
}

.glass-input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    border-radius: 1rem;
}

.glass-input:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(191, 36, 80, 0.25);
}

.glass-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.glass-table th {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: #9ca3af;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-table th:first-child { border-top-left-radius: 0.5rem; }
.glass-table th:last-child { border-top-right-radius: 0.5rem; }

.glass-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1rem 0.75rem;
}

.glass-table tr:last-child td {
    border-bottom: none;
}

.glass-table tr {
    transition: background-color 0.2s ease;
}

.glass-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

button, .btn-transition {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

button:active, .btn-transition:active {
    transform: scale(0.97);
}

select.glass-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}