:root{
      --bg:#0b0f14;
      --panel:#0f1720;
      --accent:#ffba08;
      --text:#5baaf9;
      --muted:#98a6b3;
      --card:#0c1419;
      --success:#2ec27e;
    }
    html,body{height:100%;margin:0;font-family:Inter, "Segoe UI", Roboto, Arial;}
    body{
      background: linear-gradient(180deg,#051018 0%, #0a1a25 100%);
      color:var(--text);
      padding:24px;
      box-sizing:border-box;
    }
    .wrap{
      max-width:1000px;
      margin:0 auto;
      display:grid;
      grid-template-columns: 1fr 380px;
      gap:20px;
    }
    header{
      grid-column:1/3;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:6px;
    }
    header h1{font-size:20px;margin:0;color:var(--accent);}
    header p{margin:0;color:var(--muted);font-size:13px;}
    .panel{
      background:linear-gradient(180deg,var(--panel), #071016);
      border-radius:12px;
      padding:16px;
      box-shadow:0 6px 24px rgba(2,6,10,0.6), inset 0 1px 0 rgba(255,255,255,0.02);
    }

    /* левая колонка — настройки */
    .settings{display:flex;flex-direction:column;gap:14px;}
    .card{background:var(--card);border-radius:10px;padding:12px;border:1px solid rgba(255,255,255,0.02);}
    .card h2{margin:0 0 8px 0;font-size:15px;color:var(--accent);}
    .row{display:flex;gap:10px;flex-wrap:wrap;align-items:center;}
    label{display:block;font-size:13px;color:var(--muted);margin-bottom:6px;}
    input[type="text"], input[type="color"], input[type="number"], input[type="time"], input[type="password"], select{
      width:50%;
      padding:8px 10px;
      border-radius:8px;
      border:1px solid rgba(255,255,255,0.04);
      background:rgba(255,255,255,0.02);
      color:var(--text);
      box-sizing:border-box;
    }
	textarea{
      width:100%;
      padding:8px 10px;
      border-radius:8px;
      border:1px solid rgba(255,255,255,0.04);
      background:rgba(255,255,255,0.02);
      color:var(--text);
      box-sizing:border-box;
    }
    .two{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
      width:100%;
    }
    .rangeRow{display:flex;align-items:center;gap:10px;}
    input[type="range"]{width:180px;}
    .small{font-size:13px;color:var(--muted);}
    .btns{display:flex;gap:10px;margin-top:8px;}
    button{
      background:linear-gradient(180deg,var(--accent), #ff9800);
      color:#072026;
      border:none;padding:10px 14px;border-radius:8px;font-weight:600;cursor:pointer;
      box-shadow:0 6px 16px rgba(255,186,8,0.12);
    }
    button.ghost{background:transparent;border:1px solid rgba(255,255,255,0.06);color:var(--text);box-shadow:none;}
    /* правая колонка — предпросмотр часов */
    .preview{
      display:flex;flex-direction:column;gap:12px;align-items:stretch;
    }
    .clockView
	{
	width:280px;
      background:linear-gradient(180deg,#031016, #07141a);
      padding:18px;border-radius:12px;display:flex;flex-direction:column;gap:10px;align-items:center;border:1px solid rgba(255,255,255,0.03);
    button{
		width:250px;
      background:linear-gradient(180deg,var(--accent), #ff9800);
      color:#072026;
      border:none;padding:10px 14px;border-radius:8px;font-weight:600;cursor:pointer;
      box-shadow:0 6px 16px rgba(255,186,8,0.12);
	  
    }
	}
    .digits{
       button{
      background:linear-gradient(180deg,var(--accent), #ff9800);
      color:#000000;
      width:100px;
      border:none;padding:5px 5px;border-radius:8px;font-weight:600;cursor:pointer;
      box-shadow:0 6px 16px rgb(112 88 27 / 12%);
    }
    select{
      width:50%;
      padding:8px 10px;
      border-radius:8px;
      border:1px solid rgba(255,255,255,0.04);
      background:rgba(255,255,255,0.02);
      color:var(--text);
      box-sizing:border-box;
    }
      max-width:1000px;
      margin:0 auto;
      display:flex;
      gap:20px;
    }
    .digit{
      width:84px;height:120px;border-radius:8px;background:#04080a;display:flex;align-items:center;justify-content:center;color:var(--accent);

UniversusGPT, [03.01.2026 22:23]
font-family: "Courier New", monospace;font-size:48px;box-shadow:inset 0 -6px 18px rgba(0,0,0,0.6), 0 6px 24px rgba(0,0,0,0.6);
      border:1px solid rgba(255,255,255,0.02);
      position:relative;overflow:hidden;
    }
    .colon{font-size:48px;color:var(--text);margin:0 6px;}
    .meta{width:100%;display:flex;justify-content:space-between;align-items:center;color:var(--muted);font-size:13px;}
    .wifiStatus{display:flex;gap:8px;align-items:center;}
    .indicator{width:10px;height:10px;border-radius:50%;background:#3b4148;border:1px solid rgba(255,255,255,0.03);}
    .indicator.on{background:var(--success);box-shadow:0 0 6px rgba(46,194,126,0.22);}
    .log{background:linear-gradient(180deg,#04121a,#031018);padding:10px;border-radius:8px;height:160px;overflow:auto;font-size:13px;color:var(--muted);border:1px solid rgba(255,255,255,0.02);}
    .formGroup{margin-bottom:8px;}
    .note{font-size:12px;color:var(--muted);margin-top:6px;}
    @media (max-width:920px){
      .wrap{grid-template-columns:1fr; padding:0 8px;}
      .digit{width:68px;height:100px;font-size:40px;}
    }