/* Gezegen Listeleme Sayfası Tasarımı */
.gezegen-liste-kapsayici {
    padding: 50px 80px 50px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.bolum-basligi {
    text-align: center;
    margin-bottom: 50px;
}

.bolum-basligi h1 {
    font-size: 2.5rem;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 10px;
}

.bolum-basligi h2 {
    font-size: 2rem;
    color: #fff;
}

.gezegen-izgara {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gezegen-kart {
    background: rgba(12, 23, 53, 0.8);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid rgba(108, 120, 157, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gezegen-kart img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}

.gezegen-bilgi h3 {
    color: #fff;
    margin: 10px 0 5px 0;
    font-size: 1.4rem;
}

.gezegen-bilgi span {
    color: #6c789d;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.gezegen-kart:hover {
    transform: translateY(-10px);
    background: #1c2541;
    border-color: #6c789d;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.gezegen-kart:hover img {
    transform: scale(1.1) rotate(5deg);
}

.ayirici {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, transparent, #6c789d, transparent);
    margin: 60px 0;
}

/* Cüce Gezegenler İçin Ayarlar */
.gezegen-kart.kucuk img {
    width: 120px;
    height: 120px;
}

.cuce-gezegenler {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}