* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #b3d9ff 0%, #e0f6ff 50%, #b3d9ff 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #000;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
}

h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 25px 0 15px 0;
    color: #000;
}

h2.blue-header {
    color: #0066cc;
}

h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 20px 0 10px 0;
    text-decoration: underline;
    color: #000;
}

.center-text {
    text-align: center;
    margin: 20px 0;
}

.ordinal sup {
    font-size: 12px;
}

p {
    margin-bottom: 12px;
    text-align: justify;
}

.centered {
    text-align: center;
}

a {
    color: #cc3300;
    text-decoration: underline;
    font-weight: normal;
}

a:visited {
    color: #990000;
}

a:hover {
    background-color: #ffffcc;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 25px 0;
    height: 0;
}

hr.thick-hr {
    border-top: 2px solid #333;
    margin: 35px 0;
}

.links-section {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    flex-wrap: wrap;
}

.link-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
    line-height: 1.8;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.seasons-grid div {
    padding: 15px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
}

.seasons-grid p {
    text-align: left;
}

.taglines p {
    margin: 10px 0;
    font-size: 15px;
}

.highlight-text {
    color: #cc3300;
    font-weight: bold;
}

.races-section {
    background-color: #f9f9f9;
    padding: 15px;
    margin: 15px 0;
    border-left: 4px solid #0066cc;
}

.race-result {
    margin-bottom: 10px;
    line-height: 1.5;
}

.counter {
    font-family: 'Courier New', monospace;
    background-color: #000;
    color: #00ff00;
    padding: 5px 10px;
    display: inline-block;
    font-weight: bold;
    letter-spacing: 3px;
}

.counter-info {
    text-align: center;
    margin: 20px 0;
}

.small-text {
    font-size: 11px;
    color: #666;
    text-align: center;
}

.standings-column {
    flex: 1;
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 13px;
}

.standings-table td {
    padding: 6px 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.standings-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.standings-table tr:hover {
    background-color: #f0f0f0;
}

.standings-table td:first-child {
    text-align: center;
    width: 30px;
}

.standings-table td:nth-child(2) {
    text-align: center;
    width: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 20px;
    }

    h1 {
        font-size: 22px;
    }

    .links-section {
        flex-direction: column;
    }

    .seasons-grid {
        grid-template-columns: 1fr;
    }

    .standings-table {
        font-size: 12px;
    }

    .standings-table td {
        padding: 4px 8px;
    }
}
