/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(90deg, #ff105f, #ffad06);
    padding: 20px;
    font-size: 1.5em;
}

h1, h2 {
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.2);
}

/* Game Categories */
#categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.category {
    background-color: #222;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1.2em;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Games Section */
#games {
    margin: 30px 0;
}

.game {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.play-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: linear-gradient(90deg, #ff105f, #ffad06);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #222;
    padding: 20px;
    margin-top: 20px;
}

/* Terms Modal */
.modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    width: 90%;
    max-width: 400px;
}

/* Checkbox Styling */
.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

input[type="checkbox"] {
    margin-right: 10px;
}

/* Button */
button {
    background: linear-gradient(90deg, #ff105f, #ffad06);
    border: none;
    color: white;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

button:disabled {
    background: grey;
    cursor: not-allowed;
}
