/* ---------- General Body ---------- */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

/* ---------- Containers ---------- */
.login-container,
.dashboard-container {
    width: 320px;
    margin: 100px auto;
    text-align: center;
}

/* ---------- Logo ---------- */
.logo {
    width: 150px;
    margin-bottom: 30px;
}

/* ---------- Login Form ---------- */
#loginForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

/* ---------- Buttons ---------- */
button {
    width: 60%;
    padding: 10px;
    background-color: #a600ff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    background-color: #470067;
}

/* ---------- Game Buttons Section ---------- */
.game-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
}

.game-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 120px;
    padding: 15px;
    background: #111;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.game-btn:hover {
    background: #1c1c1c;
}

.game-logo {
    width: 70px;
    height: auto;
}

/* ---------- Event Feed ---------- */
.event-feed {
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 20px;
    padding: 10px;
    background: #111;
    border-radius: 8px;
    text-align: left;
    font-size: 13px;
    line-height: 1.4;
}

.event-feed .event {
    padding: 8px;
    margin-bottom: 10px;
    background: #1a1a1a;
    border-left: 3px solid #a600ff;
    border-radius: 4px;
}

.event-feed .event strong {
    color: #ffb6ff;
}

/* ---------- Back Button ---------- */
.dashboard-container > button {
    margin-top: 20px;
}

/* ---------- Misc Small Logos (if needed) ---------- */
.logos-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.small-logo {
    width: 60px;
    height: auto;
}