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

        body {
            background-image: url('11.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #eee;
        }
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: -1;
        }

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

        /* Шапка */
        .header {
            text-align: center;
            padding: 60px 20px 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .header h1 {
            font-size: 48px;
            margin-bottom: 15px;
            background: linear-gradient(90deg, #00d2ff, #3a7bd5);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .header p { font-size: 18px; color: #aaa; }

        /* Погода */
        .weather-widget {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 20px;
            margin: 20px auto;
            max-width: 100%;
            border: 1px solid rgba(255,255,255,0.1);
            transition: transform 0.3s;
        }
        .weather-widget:hover { transform: translateY(-3px); background: rgba(255,255,255,0.08); }
        .weather-main { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .weather-temp { font-size: 48px; font-weight: bold; color: #00d2ff; }
        .weather-details { display: flex; gap: 20px; color: #aaa; font-size: 14px; }
        .weather-forecast { display: flex; justify-content: space-between; margin-top: 20px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.1); }
        .forecast-day { text-align: center; flex: 1; }
        .forecast-temp { font-size: 18px; font-weight: bold; color: #00d2ff; }
        .weather-loading { text-align: center; color: #aaa; padding: 20px; }

        /* Новости */
        .news-section { margin: 50px 0; }
        .news-title {
            font-size: 28px;
            margin-bottom: 25px;
            padding-left: 15px;
            border-left: 4px solid #00d2ff;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }
        .news-card {
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            padding: 20px;
            transition: transform 0.3s, background 0.3s;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .news-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.08);
            border-color: rgba(0,210,255,0.3);
        }
        .news-card h3 { font-size: 18px; margin-bottom: 12px; color: #00d2ff; }
        .news-date { font-size: 12px; color: #777; margin-bottom: 15px; }
        .news-card p { font-size: 14px; color: #ccc; line-height: 1.5; margin-bottom: 15px; }
        .news-link { color: #3a7bd5; text-decoration: none; font-size: 14px; }
        .news-link:hover { text-decoration: underline; }

        /* Инфо блок */
        .info {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 50px 0;
        }
        .info-card {
            background: rgba(255,255,255,0.03);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .info-card h3 { font-size: 20px; margin-bottom: 15px; color: #00d2ff; }
        .info-card p { color: #aaa; font-size: 14px; }
        .status {
            display: inline-block;
            width: 10px;
            height: 10px;
            background: #4caf50;
            border-radius: 50%;
            margin-right: 8px;
            animation: pulse 2s infinite;
        }
        @keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

        /* Подвал */
        .footer {
            text-align: center;
            padding: 40px 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            color: #666;
            font-size: 12px;
        }

        @media (max-width: 768px) {
            .header h1 { font-size: 32px; }
            .news-grid { grid-template-columns: 1fr; }
            .info { grid-template-columns: 1fr; }
        }
        .loading { text-align: center; padding: 40px; color: #aaa; }
                 /* Стили для Панели приборов */
        .dashboard-section {
            margin: 50px 0;
        }
        .dashboard-grid {
            display: flex;
            justify-content: space-around;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        .gauge-card {
            background: rgba(255,255,255,0.05);
            border-radius: 20px;
            padding: 25px 10px 20px 10px;
            text-align: center;
            flex: 1;
            min-width: 220px;
            transition: transform 0.3s;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .gauge-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.08);
        }
        .gauge-card h4 {
            font-size: 1.2rem;
            margin: 10px 0 5px;
            color: #0ef;
        }
        .gauge-value {
            font-size: 26px;
            font-weight: bold;
            margin: 5px 0 0;
            color: #fff;
            text-shadow: 0 0 5px rgba(0,210,255,0.5);
        }
        canvas {
            display: block;
            margin: 0 auto;
            width: 180px;
            height: 180px;
        }

