.earth-header {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .earth-header {
        height: auto;
        min-height: auto;
    }
}

#earth-3d-container {
    width: 60%;
    height: 100%;
    cursor: grab;
    position: relative;
    z-index: 1;
}

#earth-3d-container:active {
    cursor: grabbing;
}

.earth-info-panel {
    width: 40%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.earth-info-panel h2 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(0, 174, 239, 0.8);
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-item strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 5px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.info-item p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Update Grid for cards below */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.info-card {
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.card-img {
    width: 100%;
    height: 450px !important;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    color: var(--accent-color);
    margin-top: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
}

.card-content p {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Leaflet Dark Mode tweak */
.leaflet-container {
    background: #000 !important;
}
