body {
    background: linear-gradient(135deg, #1a0a1f 0%, #01202b 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Consolas', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background-attachment: fixed;
}

.container {
    max-width: 700px;
    margin: 40px auto;
    background: rgba(20, 20, 30, 0.97);
    border-radius: 24px;
    box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.45), 0 1.5px 8px 0 rgba(0, 0, 0, 0.25);
    padding: 32px 40px 40px 40px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(2px);
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 32px;
    letter-spacing: -1px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.ranking-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(10, 10, 20, 0.98);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.25), 0 1.5px 8px 0 rgba(0, 0, 0, 0.18);
}

.ranking-table th,
.ranking-table td {
    padding: 18px 16px;
    text-align: left;
}

.ranking-table th {
    background: #181828;
    color: #7ed6df;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 2px solid #23233a;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.10);
}

.ranking-table tr {
    transition: background 0.2s, box-shadow 0.2s;
}

.ranking-table tbody tr:hover {
    background: #23233a;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.18);
}

.ranking-table td {
    font-size: 1.05rem;
    color: #e0e0e0;
    border-bottom: 1px solid #23233a;
}

.ranking-table tr:last-child td {
    border-bottom: none;
}