html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
}

.glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.field {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 31, 105, 0.74);
    padding: .85rem 1rem;
    color: white;
    outline: none;
}

.field:focus {
    border-color: rgba(215, 180, 106, .86);
    box-shadow: 0 0 0 4px rgba(215, 180, 106, .13);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #d7b46a, #fff1b8);
    color: #001f69;
    font-weight: 800;
    padding: .85rem 1.25rem;
    transition: transform .18s ease, box-shadow .18s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 50px rgba(215, 180, 106, .24);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    color: white;
    font-weight: 700;
    padding: .85rem 1.25rem;
    transition: background .18s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
}

.table-premium {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 .7rem;
}

.table-premium tr {
    background: rgba(255, 255, 255, .07);
}

.table-premium td,
.table-premium th {
    padding: .95rem 1rem;
}

.table-premium th {
    color: rgba(255, 255, 255, .55);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.table-premium td:first-child,
.table-premium th:first-child {
    border-radius: 1rem 0 0 1rem;
}

.table-premium td:last-child,
.table-premium th:last-child {
    border-radius: 0 1rem 1rem 0;
}
