body {
font-family: 'Arial', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: #1e1e2f;
color: #fff;
margin: 0;
}
.game-tool {
background: #2c2c3a;
padding: 20px 30px;
border-radius: 15px;
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
max-width: 400px;
}
button {
padding: 10px 20px;
font-size: 16px;
background: #ff477e;
color: white;
border: none;
border-radius: 10px;
cursor: pointer;
margin-top: 15px;
transition: background 0.3s ease;
}
button:hover {
background: #e33d6b;
}
const ideas = [
"A puzzle game with time travel mechanics.",
"A 2D platformer where you play as a shadow.",
"A survival game on a floating island.",
"An RPG set in a world without color.",
"A clicker game that teaches math concepts.",
"A horror game inside an abandoned school.",
"A detective game where all clues are visual.",
"A farming sim with a fantasy twist.",
"An endless runner with random terrain generation.",
"A card game where each card changes the rules."
];
function generateIdea() {
const randomIndex = Math.floor(Math.random() * ideas.length);
document.getElementById("idea").innerText = ideas[randomIndex];
}