:root {
      --neon-red: #ff1a3d;
    --neon-blue: #00f0ff;
        --dark-bg: #050505;
      --glass-bg: rgba(10, 10, 10, 0.6);
    --glass-border: rgba(0, 240, 255, 0.2);
  }

      body, html, button, input { cursor: none !important; }

  body, html {
      margin: 0; padding: 0;
    height: 100%;
        font-family: 'Rajdhani', sans-serif;
      background-color: var(--dark-bg);
    color: #fff;
        overflow: hidden;
  }

    body.is-dragging iframe {
      pointer-events: none !important;
  }

      .cursor-dot {
    width: 6px;
          height: 6px;
      background-color: var(--neon-red);
    border-radius: 50%;
          position: fixed;
      top: 0; left: 0;
    transform: translate(-50%, -50%);
          pointer-events: none;
      z-index: 99999;
    box-shadow: 0 0 10px var(--neon-red), 0 0 20px var(--neon-red);
  }

        .cursor-ring {
      width: 36px; height: 36px;
          border: 2px solid var(--neon-blue);
      border-radius: 50%;
          position: fixed;
      top: 0; left: 0;
    transform: translate(-50%, -50%);
          pointer-events: none;
      z-index: 99998;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4), inset 0 0 10px rgba(0, 240, 255, 0.2);
          transition: width 0.15s ease-out, height 0.15s ease-out, border-color 0.15s ease-out, box-shadow 0.15s ease-out;
  }

      .cursor-ring.hovered {
    width: 50px;
          height: 50px;
      border-color: var(--neon-red);
    box-shadow: 0 0 20px rgba(255, 26, 61, 0.5), inset 0 0 10px rgba(255, 26, 61, 0.3);
          border-style: dashed;
      animation: spinCursor 4s linear infinite;
  }

    @keyframes spinCursor { 100% { transform: translate(-50%, -50%) rotate(360deg); } }

        .hero-bg {
      position: fixed;
          top: -5%; left: -5%; 
      width: 110%; height: 110%;
          z-index: -4;
      background-image: url('imgres.jpg');
    background-size: cover;
          background-position: center;
      animation: ambientPan 15s ease-in-out infinite alternate;
    filter: contrast(1.2) brightness(0.5) saturate(1.2);
  }

      @keyframes ambientPan {
    0% { transform: scale(1) translate(0, 0); filter: contrast(1.2) brightness(0.5) saturate(1.2); }
          100% { transform: scale(1.05) translate(-1%, -1%); filter: contrast(1.3) brightness(0.6) saturate(1.4); }
  }

    .scanlines {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.4));
          background-size: 100% 4px; z-index: -2; pointer-events: none;
  }

      .vignette {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
          background: radial-gradient(circle, transparent 20%, #000 140%);
      z-index: -1; pointer-events: none;
  }

        .boot-screen, .hero, .desktop-environment {
      position: absolute; top: 0; left: 0;
          width: 100%; height: 100%;
      transition: opacity 0.8s ease-out, filter 0.8s ease-out, transform 0.8s ease-out;
          z-index: 10;
  }
    .desktop-environment { display: flex; flex-direction: column; }
          .hidden { opacity: 0; pointer-events: none; filter: blur(20px); transform: scale(1.05); z-index: -1; }

      .boot-screen { display: flex; flex-direction: column; align-items: center; justify-content: center; }

    .rpm-gauge {
          width: 300px; height: 150px;
      border-top-left-radius: 300px;
          border-top-right-radius: 300px;
        border: 4px solid rgba(0, 240, 255, 0.3);
    border-bottom: none;
          position: relative;
      margin-bottom: 40px;
    background: radial-gradient(circle at bottom, rgba(0, 240, 255, 0.1), transparent);
          box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
  }
      .needle {
    width: 140px; height: 4px; background: var(--neon-red);
          position: absolute; bottom: 0; left: 10px;
      transform-origin: 100% 50%;
          transform: rotate(0deg); 
    box-shadow: 0 0 20px var(--neon-red), 0 0 5px #fff;
          transition: transform 0.08s cubic-bezier(0.1, 2, 0.5, 1);
  }
    .center-pin {
        width: 30px; height: 30px; background: #fff; border-radius: 50%;
      position: absolute; bottom: -15px; left: 135px;
          box-shadow: 0 0 15px #fff, 0 0 30px var(--neon-blue);
  }

      .boot-text h2 {
    font-family: 'Syncopate', sans-serif; font-size: 1.5rem; letter-spacing: 6px;
          color: var(--neon-blue); text-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
      margin-bottom: 15px; text-align: center;
  }

        .progress-container { width: 400px; height: 6px; background: rgba(255,255,255,0.1); overflow: hidden; box-shadow: inset 0 0 10px rgba(0,0,0,0.8); }
    .progress-bar { width: 0%; height: 100%; background: linear-gradient(90deg, var(--neon-blue), var(--neon-red)); box-shadow: 0 0 20px var(--neon-red); transition: width 0.1s linear; }

      .hero { display: flex; flex-direction: column; align-items: center; justify-content: center; }

  .container {
        text-align: center; background: rgba(0,0,0,0.6); padding: 50px 80px;
      border: 1px solid rgba(0, 240, 255, 0.2); backdrop-filter: blur(12px); border-radius: 15px;
          box-shadow: 0 20px 60px rgba(0,0,0,0.9), inset 0 0 30px rgba(0, 240, 255, 0.1);
  }
      .title { font-family: 'Syncopate', sans-serif; font-size: 4rem; margin: 0; letter-spacing: -1px; text-transform: uppercase; color: #fff; position: relative; text-shadow: 3px 3px 0px var(--neon-red), -3px -3px 0px var(--neon-blue); }
    .subtitle { font-size: 1.5rem; margin-top: 1rem; color: #ccc; letter-spacing: 8px; text-transform: uppercase; min-height: 2rem; text-shadow: 0 0 10px rgba(255,255,255,0.2); }

        .ignition-btn {
      margin-top: 3rem; padding: 15px 50px; font-family: 'Syncopate', sans-serif;
          font-size: 1.3rem; font-weight: 700; color: #fff; background: transparent;
      border: 2px solid var(--neon-blue); cursor: pointer; text-transform: uppercase; letter-spacing: 5px;
          transition: all 0.3s ease; box-shadow: inset 0 0 15px rgba(0, 240, 255, 0.2), 0 0 20px rgba(0, 240, 255, 0.2);
  }
      .ignition-btn:hover { background: var(--neon-blue); color: #000; box-shadow: 0 0 30px var(--neon-blue); transform: scale(1.05); }

    .blink { animation: blink 1s infinite step-end; }
          @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

  .glitch::before, .glitch::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.8; }
          .glitch::before { left: 2px; text-shadow: -2px 0 var(--neon-red); clip: rect(24px, 1500px, 90px, 0); animation: glitch-anim 2s infinite linear alternate-reverse; }
      .glitch::after { left: -2px; text-shadow: -2px 0 var(--neon-blue); clip: rect(85px, 1500px, 140px, 0); animation: glitch-anim 2.5s infinite linear alternate-reverse; }
  @keyframes glitch-anim { 0% { clip: rect(15px, 9999px, 90px, 0); } 20% { clip: rect(65px, 9999px, 25px, 0); } 40% { clip: rect(35px, 9999px, 95px, 0); } 60% { clip: rect(85px, 9999px, 45px, 0); } 80% { clip: rect(25px, 9999px, 65px, 0); } 100% { clip: rect(95px, 9999px, 15px, 0); } }

        .top-bar {
      display: flex; justify-content: space-between; align-items: center; padding: 0 30px; height: 45px; background: var(--glass-bg); backdrop-filter: blur(15px);
          border-bottom: 2px solid var(--glass-border); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), inset 0 -1px 10px rgba(0, 240, 255, 0.1);
      font-family: 'Syncopate', sans-serif; font-size: 0.8rem; letter-spacing: 2px;
  }
      .os-logo { color: #fff; text-shadow: 0 0 10px var(--neon-blue); }
    .os-logo .version { color: var(--neon-red); font-size: 0.6rem; margin-left: 5px; }

          .telemetry { display: flex; gap: 30px; color: #aaa; }
      .telemetry .label { color: var(--neon-blue); margin-right: 5px;}
        .telemetry .value { color: #fff; text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }

  .bar-right { display: flex; gap: 20px; }
        .status-icon { color: var(--neon-blue); text-shadow: 0 0 8px var(--neon-blue); }

    .desktop-workspace { display: flex; justify-content: space-between; padding: 50px 80px; height: calc(100vh - 45px); box-sizing: border-box; }
      .app-grid { display: grid; grid-template-columns: repeat(2, 120px); grid-template-rows: repeat(3, 140px); gap: 30px; align-content: start; }

          .app-icon { background: transparent; border: none; color: #fff; display: flex; flex-direction: column; align-items: center; gap: 15px; transition: all 0.3s cubic-bezier(0.1, 2, 0.5, 1); }
      .icon-shape { width: 80px; height: 80px; background: var(--glass-bg); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.5); position: relative; transition: all 0.3s ease; }
    .icon-shape::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 30px; height: 30px; border-radius: 5px; }

        .settings::after { border: 4px dashed #fff; border-radius: 50%; }
      .telemetry-icon::after { border-bottom: 4px solid var(--neon-red); border-left: 4px solid var(--neon-red); }
    .nav::after { border-top: 4px solid var(--neon-blue); border-right: 4px solid var(--neon-blue); transform: translate(-50%, -50%) rotate(45deg); }
          .media::after { background: #fff; clip-path: polygon(0 0, 0 100%, 100% 50%); }
      .files::after { border: 4px solid #fff; border-top: 10px solid #fff; }
      .calendar-icon::after { border: 2px solid #fff; border-top: 6px solid var(--neon-blue); border-radius: 4px; background: transparent; clip-path: none; width: 30px; height: 30px; }

  .app-icon span { font-family: 'Syncopate', sans-serif; font-size: 0.7rem; letter-spacing: 1px; text-shadow: 0 2px 5px rgba(0,0,0,0.8); opacity: 0.8; transition: opacity 0.3s; }
          .app-icon:hover { transform: translateY(-5px) scale(1.05); }
      .app-icon:hover .icon-shape { border-color: var(--neon-blue); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 240, 255, 0.3); }
    .app-icon:hover span { opacity: 1; color: var(--neon-blue); text-shadow: 0 0 10px var(--neon-blue); }

        .widget-container { display: flex; align-items: center; justify-content: center; margin-right: 50px; }
      .chronometer { position: relative; width: 350px; height: 350px; background: radial-gradient(circle, rgba(10,10,10,0.8), rgba(0,0,0,0.9)); border-radius: 50%; box-shadow: 0 0 50px rgba(0, 0, 0, 0.9), inset 0 0 20px var(--glass-border), inset 0 0 50px rgba(0, 240, 255, 0.1); display: flex; flex-direction: column; align-items: center; justify-content: center; backdrop-filter: blur(10px); }

  .ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; pointer-events: none; }
          .outer-ring { width: 310px; height: 310px; border: 2px dashed rgba(255, 255, 255, 0.1); animation: spin 60s linear infinite; }
      .inner-ring { width: 270px; height: 270px; border-top: 4px solid var(--neon-blue); border-bottom: 4px solid var(--neon-red); border-left: 4px solid transparent; border-right: 4px solid transparent; animation: spinReverse 15s linear infinite; box-shadow: 0 0 15px var(--neon-blue), inset 0 0 15px var(--neon-red); }

        .time-display { text-align: center; z-index: 10; }
      .date { font-family: 'Syncopate', sans-serif; color: var(--neon-blue); font-size: 0.8rem; letter-spacing: 3px; margin-bottom: 10px; text-shadow: 0 0 10px var(--neon-blue); }
    .time { font-size: 5rem; font-weight: 700; line-height: 1; text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px var(--neon-blue); }
          .colon { animation: blink 1s infinite; margin: 0 -5px; }
      .seconds-container { margin-top: 5px; font-family: 'Syncopate', sans-serif; font-size: 1.2rem; color: var(--neon-red); text-shadow: 0 0 15px var(--neon-red); letter-spacing: 2px; }
  #ampm { font-size: 0.9rem; color: #fff; text-shadow: none; }

        @keyframes spin { 100% { transform: translate(-50%, -50%) rotate(360deg); } }
      @keyframes spinReverse { 100% { transform: translate(-50%, -50%) rotate(-360deg); } }

  .app-window {
          position: absolute;
      width: 420px;
    background: rgba(5,5,5,0.85);
          border: 1px solid var(--neon-blue);
      backdrop-filter: blur(25px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.9), inset 0 0 15px rgba(0,240,255,0.15);
    display: flex;
          flex-direction: column;
      border-radius: 8px;
    overflow: hidden;
        }
      .window-header {
    background: rgba(0,240,255,0.15);
          padding: 12px 15px;
      display: flex;
    justify-content: space-between;
          align-items: center;
      border-bottom: 1px solid var(--neon-blue);
        font-family: 'Syncopate', sans-serif;
    font-size: 0.75rem;
          user-select: none;
      }
    .window-header span {
        color: var(--neon-blue);
          letter-spacing: 1px;
      }
    .win-close {
          background: transparent;
      border: none;
    color: var(--neon-red);
          font-family: 'Syncopate', sans-serif;
      font-size: 1.2rem;
        }
      .win-close:hover {
    text-shadow: 0 0 12px var(--neon-red);
          }
    .window-body {
      padding: 20px;
          color: #fff;
    font-size: 0.95rem;
        }
      .window-body h3 {
    margin-top: 0;
          color: var(--neon-red);
      font-family: 'Syncopate', sans-serif;
        letter-spacing: 2px;
    font-size: 1.1rem;
          }
    .window-body input[type=range] {
      width: 100%;
          accent-color: var(--neon-red);
    margin: 10px 0 20px 0;
        }
    .window-body input[type=date], .window-body input[type=text] {
            font-family: 'Rajdhani', sans-serif;
        outline: none;
        }
      .window-body button.flash-btn {
    background: transparent;
          border: 1px solid var(--neon-red);
      color: var(--neon-red);
        padding: 8px 15px;
    font-family: 'Syncopate', sans-serif;
          cursor: none;
      width: 100%;
    transition: 0.3s;
        }
      .window-body button.flash-btn:hover {
    background: var(--neon-red);
          color: #000;
      box-shadow: 0 0 15px var(--neon-red);
    }
        .window-body ul {
      list-style: none;
          padding: 0; margin: 0;
    }
      .window-body ul li {
    padding: 10px 5px;
          border-bottom: 1px solid rgba(255,255,255,0.1);
      font-family: monospace;
        color: #aaa;
      display: flex;
            justify-content: space-between;
    }
          .window-body ul li.map-file:hover {
      color: var(--neon-blue);
      background: rgba(0, 240, 255, 0.05);
      cursor: none;
    }
    
    .setting-row {
      display: flex;
          justify-content: space-between;
    align-items: center;
        margin-bottom: 15px;
      border-bottom: 1px dotted rgba(255,255,255,0.2);
    padding-bottom: 5px;
    }
        .setting-row input[type=checkbox] {
      accent-color: var(--neon-red);
    transform: scale(1.2);
        }