body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 20px;
}

body:not(.lading-page) {
    display: flex;
    flex-direction: column;
    align-items: center;
}

main {
    width: 100%;
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

header {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    max-width: 800px;
}

header h1 {
    margin: 0;
    color: #ffffff;
}

header p {
    margin-top: 5px;
    color: #b0b0b0;
}

nav {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

nav a {
    text-decoration: none;
    color: #bb86fc;
    background-color: #1e1e1e;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #333;
    transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
    background-color: #bb86fc;
    color: #121212
}

nav a.active {
    background-color: #bb86fc;
    color: #121212;
    font-weight: bold;
}

.table-container {
    background-color: #1e1e1e;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.table-container h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #ffffff;
    border-bottom: 2px solid #bb86fc;
    padding-bottom: 10px;
}

.table-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #333;
    font-size: 16px;
}

.table-row:last-child {
    border-bottom: none;
}

.rank {
    width: 40px;
    font-weight: bold;
    color: #b0b0b0;
}

.team-name {
    flex-grow: 1
}

.progress-container {
    width: 120px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #333;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar-inner {
    height: 100%;
    background-color: #03dac6;
    border-radius: 5px;
    transition: width 0.5s ease-in-out;
}

.percentage {
    width: 70px;
    text-align: right;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
}

footer {
    margin-top: 40px;
    color: #888;
    font-size: 14px;
    text-align: center;
}

body.landing-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.landing-container main h2 {
    color: #e0e0e0;
    margin-bottom: 30px;
    font-weight: 400;
}

.choice-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.choice-card {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px 40px;
    width: 280px;
    text-align: left;
    text-decoration: none;
    color: #e0e0e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.choice-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #bb86fc;
    font-size: 22px;
}

.choice-card p {
    margin-bottom: 0;
    color: #b0b0b0;
    line-height: 1.5;
}