/* ------------------ 1️⃣ GENERAL STYLES ------------------ */
body {
    font-family: Arial, sans-serif; /* ✅ Clean, modern font */
    background-color: #121212; /* ✅ Dark theme for gaming feel */
    color: #ffffff; /* ✅ Light text for readability */
    text-align: center; /* ✅ Center aligns text content */
    margin: 0;
    padding: 0;
}

/* 🔥 Header Styling */
header {
    background-color: #1e1e1e; /* ✅ Darker header background */
    padding: 20px;
    font-size: 24px;
}

/* 🔥 Footer Styling */
footer {
    margin-top: 20px;
    padding: 10px;
    font-size: 14px;
    color: #aaa;
}

/* ------------------ 2️⃣ GAME HUB (index.html) STYLES ------------------ */
.game-container {
    display: flex; /* ✅ Display games in a row */
    justify-content: center; /* ✅ Center-align games */
    gap: 20px; /* ✅ Spacing between game cards */
    margin-top: 30px;
}

.game-card {
    background-color: #222; /* ✅ Slightly lighter than background */
    border-radius: 10px; /* ✅ Rounded corners */
    padding: 15px;
    width: 250px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2); /* ✅ Subtle glow effect */
}

.game-image {
    width: 100%;
    border-radius: 10px;
}

.play-button, .disabled-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    background-color: #ff4500; /* ✅ Orange gaming theme */
    border: none;
}

.play-button:hover {
    background-color: #ff6500; /* ✅ Lighter orange on hover */
}

.disabled-button {
    background-color: #555;
    cursor: not-allowed;
}

/* ------------------ 3️⃣ KODU TAG START MENU (kodu-tag.html) ------------------ */
.menu-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.9); /* ✅ Semi-transparent dark background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    text-align: center;
    width: 350px;
    transition: opacity 0.5s ease-in-out; /* ✅ Smooth fade effect */
}

.menu-container h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.menu-container p {
    font-size: 16px;
    margin-bottom: 20px;
}

select, button {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 16px;
    border: none;
}

select {
    background-color: #333;
    color: #fff;
}

button {
    background-color: #ff4500;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #ff6500;
}

/* ------------------ 4️⃣ RESPONSIVE DESIGN ------------------ */
@media (max-width: 768px) {
    .game-container {
        flex-direction: column;
        align-items: center;
    }

    .game-card {
        width: 80%;
    }

    .menu-container {
        width: 90%;
    }
}

#player-list ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 0 0;
}

#player-list ul li {
    margin-bottom: 5px;
}
