
.planet-bar {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 20px 0;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(6px);
}

.planet-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.planet-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.planet-card span {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.85;
}

.planet-card:hover {
    transform: translateY(-5px);
}

.planet-card:hover img {
    transform: scale(1.15);
    filter: drop-shadow(0 0 12px rgba(0, 170, 255, 0.8));
}


.bolum-basligi {
    text-align: center;
    margin-bottom: 50px;
}

.bolum-basligi h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #ffffff;
}

.bolum-basligi p {
    font-size: 16px;
    color: #bfc7ff;
    letter-spacing: 1px;
}

.ayirici-cizgi {
    width: 150px;
    height: 3px;
    background: linear-gradient(to right, transparent, #6c789d, transparent);
    margin: 15px auto;
}



.astronot-liste-kapsayici {
    width: 100%;
    padding: 10px 80px 8%;
    box-sizing: border-box;
}

.astronot-izgara {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.astronot-kart {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
}

.astronot-kart:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6);
}

.astronot-kart img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.astronot-kart:hover img {
    transform: scale(1.08);
}

.astronot-kart div {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.astronot-kart span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}


@media (max-width: 1024px) {
    .astronot-izgara {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .astronot-izgara {
        grid-template-columns: 1fr;
    }

    .bolum-basligi h1 {
        font-size: 32px;
    }
}
