body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.animated-text {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 2s forwards, moveUp 2s forwards;
}

.games-container {
    margin: 20px 0;
}

.game {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #ff7e5f;
}

.play-button {
    font-size: 18px;
    padding: 5px 15px;
    color: white;
    background-color: #ff7e5f;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.play-button:hover {
    background-color: #feb47b;
    transform: scale(1.1);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes moveUp {
    0% {
        transform: translateY(50px);
    }
    100% {
        transform: translateY(0);
    }
}
