.astro-gemini-container {
    background-color: #2c2a4a; /* Koyu mor arka plan */
    color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    font-family: sans-serif;
}

.burc-secim-alani h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.burclar-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.burc-kutu {
    background-color: #4a477a;
    border: 2px solid #6c63ff;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #f0f0f0;
    transition: all 0.3s ease;
}

.burc-kutu:hover, .burc-kutu.active {
    background-color: #6c63ff;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
}

.burc-kutu img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    filter: invert(1); /* İkonları beyaz yapar */
}

.astro-panel-icerik {
    background-color: #3b3a62;
    padding: 25px;
    border-radius: 8px;
    min-height: 200px;
}

.astro-panel-icerik h3 {
    margin-top: 0;
    color: #fff;
}

.loading-spinner {
    text-align: center;
    font-size: 1.2em;
    padding: 50px 0;
}