/* 🚀 OVERVIEW PAGE STYLES */
.overview-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 20px;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Gezegen Görsel Alanı */
.planet-view {
    background: radial-gradient(circle, #1c2329 0%, #0b0f13 100%);
    border-radius: 15px;
    border: 1px solid #232d35;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

.planet-img {
    width: 350px;
    height: 350px;
    filter: drop-shadow(0 0 30px rgba(255,138,0,0.2));
    animation: rotatePlanet 100s linear infinite;
}

@keyframes rotatePlanet {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Bilgi Kartları */
.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #1c2329;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #232d35;
}

.info-card h4 {
    margin: 0 0 15px 0;
    color: #ff8a00;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
    color: #8b97a2;
}

.data-row b {
    color: #fff;
}

.stat-bar {
    height: 4px;
    background: #0b0f13;
    border-radius: 2px;
    margin-top: 5px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: #ff8a00;
}
