body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    justify-content: center;
    background-color: #f3f6f9;
}

header {
    background: #1e1e2f;
    color: #fff;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    padding: 0;
    width: 32px;
    height: 32px;
    margin-left: 2rem;
}
nav {
    text-align: right;
    margin-right: 2rem;
}
nav a {
    color: #fff;
    margin-left: 1rem;
    text-decoration: none;
}

.hero {
    background: #2e3b4e;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
    margin: 0 auto;
}
.hero img {
    width: 980px;
    height: auto;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

section {
    padding: 2rem;
    max-width: 1000px;
    margin: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

table th, table td {
    border: 1px solid #ccc;
    padding: 0.75rem;
    text-align: left;
}

footer {
    background: #1e1e2f;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

.sport-section {
    background-color: #edf0f3;
}

.team-section {
    position: relative;
    padding: 4rem 2rem;
    background-color: #edf0f3;
    background-blend-mode: overlay;
}

.team-header {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
    z-index: 1;
}


.team-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.team-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: auto;
}

.member {
    background: #ffffffcc;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px #0000000c;
    text-align: center;
    place-content: center;
}

.member img {
    width: 170px;
    display: block;
    margin: 0 auto;
}

.member h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    color: #1e1e2f;
}
.member h4 {
    margin-bottom: 0.5rem;
    color: #1e1e2f;
}

.member p {
    font-size: 0.95rem;
    color: #444;
}

.overlay-text {
    width: 900px;
    position: absolute;
    top: 630px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: #0000004c;
    padding: 10px;
    font-size: 20px;
    border-radius: 8px;
}