/* World Map Section (Extracted from styles.css) */
.world-map-section {
    padding: 2rem;
    width: 100%;
    background: linear-gradient(135deg, #0B1D51, #16213E, #1A1B27);
    position: relative;
}

.map-header {
    text-align: center;
    padding: 2rem;
    color: #000000;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-header h2 {
    color: #000000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: none;
}

.map-header p {
    color: #333333;
    font-size: 1.2rem;
    font-weight: 400;
    text-shadow: none;
}

.map-controls {
    position: relative;
    margin: 0 auto 1rem;
    z-index: 1000;
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#world-map {
    height: 800px !important;
    width: calc(100% - 4rem) !important;
    margin: 0 auto;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .world-map-section {
        padding: 1rem;
    }
    #world-map {
        width: calc(100% - 2rem) !important;
        height: 600px !important;
    }
    .map-controls {
        width: 95%;
        padding: 10px;
    }
    .map-header h2 {
        font-size: 2rem;
    }
    .map-header p {
        font-size: 1rem;
    }
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.legend {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.active {
    background: var(--accent-color);
}

.dot.coming-soon {
    background: #FFC107;
} 