body {
    font-family: Inter, Arial, sans-serif;
    background: linear-gradient(180deg, #ebe8f7 0%, #f5f4fb 100%);
    color: #1f1b3a;
    margin: 0;
    padding: 40px;
    min-height: 100vh;
}

h1 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 3rem;
    font-weight: 800;
    color: #17112f;
}

.container {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;   /* centers container */
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(50, 40, 100, 0.08);
}

table {
    width: 90%;       /* table takes 90% of card */
    margin: 0 auto;   /* centers table inside card */
    border-collapse: collapse;
}

th,
td {
    padding: 16px 20px;
}

th {
    background: #403b72;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

tr {
    background: white;
    transition: 0.2s ease;
}

tr:nth-child(even) {
    background: #f6f4fd;
}

tr:hover {
    background: #ece8ff;
}

.rank {
    font-weight: 700;
    color: #6355c7;
}

th.user,
td.user {
    text-align: left;
}

th.ticket,
td.ticket {
    text-align: right;
}

.refresh {
    text-align: center;
    margin-top: 18px;
    font-size: 0.9rem;
    color: #6d688b;
}

.user a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease;
}

.user a:hover {
    color: #6355c7;
    text-decoration: underline;
}