/* LAN Event Page Styles */
body {
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 2rem;
}

header {
    margin-bottom: 2rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 0.5rem;
    color: #00ff88;
}

.info {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.countdown {
    font-size: 1.5rem;
    color: #ffcc00;
    margin-bottom: 1rem;
}

.status {
    font-size: 1.1rem;
    color: #00ff88;
    margin-bottom: 2rem;
    font-weight: bold;
}

/* Games section */
.games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1100px;
    margin-bottom: 3rem;
}

.game {
    background: #111;
    border: 1px solid #222;
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.3s;
}

.game:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
}

.game img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    transition: box-shadow 0.3s;
}

.game:hover img {
    box-shadow: 0 0 25px #00ff88;
}

.game-name {
    color: #00ff88;
    font-weight: bold;
}

/* Teams section */
.teams {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
}

.team {
    background: #111;
    border: 1px solid #222;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
    transition: transform 0.2s, box-shadow 0.3s;
}

.team:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.3);
}

.team-name {
    color: #00ff88;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    margin: 0.2rem 0;
    color: #ddd;
}

footer {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #555;
}
