body {
    background-color: #121212;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer {
    background-color: #2f3b4a;  
    color: #ffdd00; 
    text-align: center;
    font-size: 1.2em;
    font-weight: 600;
    position: fixed;
    bottom: 0;
    width: 100%;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}

footer a {
    color: #ff7f00; 
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff4500; 
}
#welcome {
    text-align: center;
}

#welcome h1 {
    font-size: 3em;
    color: #f2d900;
    margin-bottom: 20px;
}

#welcome span {
    color: #ff007f;
}

#games-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.game-card {
    background: linear-gradient(135deg, #1d1d1d, #333333);
    padding: 15px;
    width: max-content;
    height: max-content;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.7);
}

.game-card img {
    width: max-content;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.game-card h3 {
    margin-top: 10px;
    font-size: 1.5em;
    color: #fff;
}

button {
    background-color: #ff007f;
    border: none;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

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

.about-card {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}
.card {
    background: linear-gradient(135deg, #1d1d1d, #333333);
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.7);
    cursor: pointer;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.card h2 {
    margin-top: 10px;
    font-size: 18px;
    color: #fff;
}
