body {
    background-color: #f5f7ff;
    color: #312e81;
    font-family: 'Quicksand', sans-serif;
    padding: 2rem;
    margin: 0;
}

.container {
    max-width: 42rem;
    margin: 0 auto;
}

header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.logo-box {
    background: white;
    padding: 0.75rem;
    border-radius: 1rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    font-size: 1.875rem;
}

h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.025em;
}

.subtitle {
    color: #818cf8;
    font-weight: 500;
    margin: 0;
}

.board-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e0e7ff;
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

thead {
    background-color: rgba(224, 231, 255, 0.4);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #818cf8;
}

th, td {
    padding: 1.25rem 2rem;
}

tbody tr {
    border-bottom: 1px solid #f5f7ff;
    transition: background-color 0.2s;
}

tbody tr:hover {
    background-color: rgba(245, 247, 255, 0.5);
}

.pos-col { color: #a5b4fc; font-weight: 700; }
.user-col { color: #3730a3; font-weight: 700; }
.rep-col { color: #818cf8; }
.pts-col { text-align: right; font-weight: 700; color: #ec4899; }

footer {
    margin-top: 2.5rem;
    text-align: center;
}

.footer-text {
    font-size: 0.75rem;
    color: #a5b4fc;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}