        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background: #1a1a2e;
            color: #eee;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            text-align: center;
            padding: 20px 0;
        }

        h1 {
            color: #00d9ff;
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .status-bar {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin: 20px 0;
            font-size: 0.9rem;
        }

        .status-item {
            padding: 8px 16px;
            background: #16213e;
            border: 1px solid #00d9ff;
            border-radius: 5px;
        }

        .status-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-right: 8px;
        }

        .dot-green { background: #00ff00; }
        .dot-cyan { background: #00d9ff; }
        .dot-yellow { background: #ffd700; }
        .dot-red { background: #ff0000; }

        .controls {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        button {
            padding: 10px 20px;
            background: #00d9ff;
            color: #1a1a2e;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 0.9rem;
        }

        button:hover {
            background: #00b8d4;
        }

        button:active {
            transform: scale(0.98);
        }

        .map-container {
            position: relative;
            height: 600px;
            background: #0f3460;
            border: 2px solid #00d9ff;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        #map {
            height: 100%;
            width: 100%;
        }

        .legend {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(26, 26, 46, 0.95);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #00d9ff;
            z-index: 1000;
            font-size: 0.85rem;
        }

        .legend h3 {
            margin-bottom: 10px;
            color: #00d9ff;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 6px;
        }

        .legend-color {
            width: 25px;
            height: 15px;
            border-radius: 3px;
        }

        .loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(26, 26, 46, 0.95);
            padding: 20px 40px;
            border-radius: 10px;
            border: 2px solid #00d9ff;
            z-index: 2000;
            font-size: 1.1rem;
        }

        .spinner {
            border: 3px solid rgba(0, 217, 255, 0.3);
            border-top: 3px solid #00d9ff;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 0 auto 10px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .info-panel {
            background: #16213e;
            border: 1px solid #00d9ff;
            border-radius: 8px;
            padding: 20px;
            margin-top: 20px;
        }

        .info-panel h2 {
            color: #00d9ff;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .info-panel p {
            line-height: 1.6;
            margin-bottom: 10px;
            color: #ccc;
        }

        .leaflet-popup-content-wrapper {
            background: #16213e;
            color: #eee;
        }

        .leaflet-popup-tip {
            background: #16213e;
        }

        .popup-content h4 {
            color: #00d9ff;
            margin-bottom: 8px;
        }

        .popup-content p {
            margin: 5px 0;
            font-size: 0.9rem;
        }

        .wind-speed {
            font-size: 1.3rem;
            font-weight: bold;
            color: #ffd700;
        }

        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            .map-container { height: 400px; }
            .legend { font-size: 0.75rem; padding: 10px; }
        }
