.participants-page {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.participants-page h1 {
    text-align: center;
    color: #004080;
    margin-bottom: 2rem;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.team-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    background-color: #f9f9f9;
}

.team-card img {
    max-width: 100px;
    height: auto;
    margin-bottom: 0.5rem;
}

/* Generatation NAV back to top */
.generation-nav {
    position: sticky;
    top: 0;
    background: #fff;
    padding: .5rem;
    border-bottom: 1px solid #ccccff;
    z-index: 5;
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}
.generation-nav a {
    text-decoration: none;
    padding: .25rem .5rem;
    border-radius: .5rem;
    border: 1px solid #ddd;
}
.gen-block { scroll-margin-top: 80px; margin-top: 2rem; }
.back-to-top { margin-top: .5rem; display: inline-block; font-size: .9em; }