:root {
    --main-red: #d32f2f;
    --main-black: #181818;
    --text-light: #fff;
    --text-dark: #222;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--main-black);
    color: var(--text-light);
}

header {
    background: var(--main-red);
    padding: 2rem 0 1rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 2px;
}

nav {
    margin-top: 1rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
    transition: color 0.2s;
}

nav a:hover {
    color: #ffd600;
}

main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

section {
    margin-bottom: 3rem;
    padding: 2rem;
    border-radius: 8px;
    background: rgba(40, 40, 40, 0.97);
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

section h2 {
    color: var(--main-red);
    margin-top: 0;
}

.team-list, .games-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member, .game-item {
    background: var(--main-black);
    border: 1px solid var(--main-red);
    border-radius: 6px;
    padding: 1rem;
    flex: 1 1 220px;
    min-width: 180px;
    max-width: 260px;
    text-align: center;
}

.team-member img, .game-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 2px solid var(--main-red);
}

.contact-form label {
    display: block;
    margin-top: 1rem;
    color: var(--main-red);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.3rem;
    border: 1px solid var(--main-red);
    border-radius: 4px;
    background: #222;
    color: var(--text-light);
}

.contact-form button {
    margin-top: 1rem;
    background: var(--main-red);
    color: var(--text-light);
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: #b71c1c;
}

footer {
    background: #111;
    color: var(--main-red);
    text-align: center;
    padding: 1.2rem 0 0.7rem 0;
    margin-top: 3rem;
}

.footer-links a {
    color: var(--main-red);
    text-decoration: none;
    margin: 0 0.8rem;
    font-weight: bold;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 700px) {
    .team-list, .games-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    header h1 {
        font-size: 2rem;
    }
    main {
        padding: 0 0.5rem;
    }
}
