/* Genel stil ayarları */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    
	background-color: #e0f7fa;
    color: #333;
}
a {
	color: #FFF;
}
a:hover {
	color: #000;
}
.header {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Logo */
.logo img {
    max-height: 50px;
}

/* Arama Kutusu */
.search-container {
    text-align: center;
    margin: 20px;
}

#search-bar {
    width: 80%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-width: 400px;
}

/* Oyun Listesi */
.games-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

/* Oyun öğeleri */
.game-item {
    background-color: white;
    border: 1px solid #ddd;
    padding: 15px;
    margin: 10px;
    border-radius: 8px;
    width: 250px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.game-item:hover {
    background-color: #f1f1f1;
}

.game-item h2 {
    color: #4CAF50;
}

/* Oyun görselleri */
.game-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Oyun bağlantıları */
.game-item a {
    text-decoration: none;
    color: #fff;
    background-color: #4CAF50;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 10px;
    display: inline-block;
}

.game-item a:hover {
    background-color: #45a049;
}

/* Arama kutusu ve oyunlar için daha fazla stil */
input[type="text"]:focus {
    outline: none;
    border-color: #4CAF50;
}
