/* General styles for the body */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #f0f8ff, #add8e6);
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Style for the main title */
h1 {
    font-size: 2.5rem;
    color: #333;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

p {
    font-size: 1rem;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    color: #333;
    text-align: center;
}

/* Center the content and make it responsive */
ul {
    list-style-type: none;
    padding: 0;
    width: 90%;
    max-width: 600px;
}

/* Styling for individual list items */
li {
    margin: 10px 0;
    text-align: center;
}

/* Styling for links */
a {
    display: block;
    text-decoration: none;
    font-size: 1.2rem;
    color: #007bff;
    background: #fff;
    padding: 10px 15px;
    border: 2px solid #007bff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Hover effect for links */
a:hover {
    background: #007bff;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive design for small screens */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    a {
        font-size: 1rem;
        padding: 8px 12px;
    }
}
/* Style for the game container */
.game-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Image styling */
.game-logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 5px;
    object-fit: cover;
}

/* Link styling */
.game-item a {
    font-size: 1.2rem;
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

.game-item a:hover {
    color: #0056b3;
}
