body {
    font-family: 'Nunito', sans-serif;
    background-color: #fce4ec; /* Light pink background */
    margin: 0;
    padding: 40px;
    text-align: center;
}

h1 {
    font-family: 'Fredoka One', cursive;
    color: #e91e63;
    font-size: 4em;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

#game-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.game-link {
    display: block;
    width: 250px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    overflow: hidden;
}

.game-link:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 25px rgba(233, 30, 99, 0.2);
}

.screenshot-placeholder {
    width: 100%;
    height: 150px;
    background-color: #f8bbd0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2em;
}

.screenshot-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-link h2 {
    font-family: 'Fredoka One', cursive;
    margin-top: 20px;
    color: #ad1457;
}

.game-link p {
    padding: 0 20px 20px;
    color: #666;
}
