body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #050510;
    font-family: 'Courier New', Courier, monospace;
}


#kinetix-canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}


#ui-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #00ffff;
    text-align: center;
    text-shadow: 0 0 15px #00ffff;
    pointer-events: none; 
}

#clock {
    font-size: 6rem;
    margin: 0;
    letter-spacing: 8px;
}


.search-box {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 8px 15px;      
  width: 300px;           
  border: 1px solid rgba(0, 255, 255, 0.4);
}

.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  width: 100%;
  font-size: 1rem;        
  font-family: 'Courier New', monospace;
}

.search-box button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;        
}


.shortcut-icon {
  background: rgba(10, 15, 30, 0.7);
  border: 1px solid rgba(0, 255, 255, 0.4);
  border-radius: 50%;
  width: 40px;            
  height: 40px;           
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.2rem;      
  transition: 0.2s;
}


.widget-panel {
  background: rgba(10, 15, 30, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 16px;
  padding: 15px;          
  width: 250px;           
  color: #00ffff;
  font-family: 'Courier New', monospace;
}


.dashboard-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  padding: 40px;
  box-sizing: border-box;
  z-index: 10;
  pointer-events: none; 
}


.widget-panel, .center-column {
  pointer-events: auto; 
}


.center-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 10vh; 
}


.brand-title {
  color: #00ffff;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
  font-size: 3.5rem;
  margin: 0 0 10px 0;
  letter-spacing: 8px;
  text-transform: uppercase;
  font-weight: bold;
}


.right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.shortcuts {
  display: flex;
  flex-direction: row;
  gap: 25px;
  margin-top: 10px;
}


.shortcut-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #00ffff;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  gap: 10px;
  transition: 0.2s;
}

.shortcut-item:hover {
  color: white;
}


.calendar-container {
  margin-top: 15px;
}

.weeks, .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.weeks {
  margin-bottom: 10px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.days {
  gap: 5px;
  font-size: 0.9rem;
}

.days li {
  padding: 5px 0;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s;
}

.days li:hover {
  background: rgba(0, 255, 255, 0.2);
}

.days li.active {
  background: #00ffff;
  color: #050510;
  font-weight: bold;
}

.days li.inactive {
  color: rgba(255, 255, 255, 0.2);
}

#weather-temp {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

#weather-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  text-transform: lowercase;
}


.audio-player {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.track-info {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.neon-btn {
  background: transparent;
  color: #00ffff;
  border: 1px solid rgba(0, 255, 255, 0.5);
  padding: 8px 25px;
  border-radius: 20px;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 5px rgba(0, 255, 255, 0.1);
}

.neon-btn:hover {
  background: rgba(0, 255, 255, 0.15);
  border-color: #00ffff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
  color: white;
}



.player-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 10px 0;
}

.small-btn {
  padding: 8px 12px;
  font-size: 1rem;
}

#song-search {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.4);
  border-radius: 15px;
  color: white;
  padding: 5px 10px;
  width: 90%;
  font-family: 'Courier New', monospace;
  margin-bottom: 5px;
  outline: none;
}


#playlist {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-height: 120px;
  overflow-y: auto;
  text-align: left;
}

#playlist li {
  font-size: 0.8rem;
  padding: 8px 5px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  transition: 0.2s;
}

#playlist li:hover, #playlist li.active-song {
  color: #00ffff;
  background: rgba(0, 255, 255, 0.1);
}


#playlist::-webkit-scrollbar { width: 4px; }
#playlist::-webkit-scrollbar-thumb { background: rgba(0, 255, 255, 0.5); border-radius: 4px; }

#music-panel {
  height: fit-content !important;
  min-height: 0 !important;
  flex: none !important;
}

#notepad-panel {
  display: flex;
  flex-direction: column;
}

#hacker-notes {
  width: 100%;
  min-height: 120px;
  background: rgba(0, 25, 25, 0.3);
  color: #00ffff;
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 5px;
  padding: 10px;
  font-family: monospace; 
  font-size: 0.9rem;
  resize: none; 
  outline: none;
  box-sizing: border-box;
  transition: 0.3s;
}

#hacker-notes:focus {
  border-color: #00ffff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

#globe-panel {
  margin-top: 20px;
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  overflow: hidden;
  height: fit-content; 
}

#globe-viz {
  cursor: grab;
}

#globe-viz:active {
  cursor: grabbing;
}