body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    padding: 2rem;
}

h1 {
    font-size: 2rem;
    color: #ffffff;
}

.counter {
    font-size: 6rem;
    font-weight: bold;
    color: #4CAF50;
    margin: 1rem 0;
}

a {
    color: #03A9F4;
    text-decoration: none;
    font-size: 1.1rem;
}

a:hover {
    text-decoration: underline;
}

table {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-collapse: collapse;
    background-color: #1e1e1e;
}

th, td {
    padding: 12px 15px;
    border: 1px solid #333;
    text-align: left;
}

thead {
    background-color: #333;
}

tbody tr:nth-child(even) {
    background-color: #242424;
}

.back-link {
    display: inline-block;
    margin-top: 1.5rem;
}