/* Base styles and reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body with smooth transitions */
body {
  font-family: 'Courier New', Courier, monospace;
  background-color: #fafafa;
  color: #222;
  transition: background-color 1s ease, color 1s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

/* Dark theme */
body.dark {
  background-color: #121212;
  color: #e0e0e0;
}

/* Container for content */
#container {
  text-align: center;
}

/* Text with shadow and smooth color transition */
#text {
  font-size: 3rem;
  font-weight: 600;
  color: #444; /* soft dark grey, easier on eyes than pure black */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15); /* subtle shadow for depth */
  transition: color 1s ease;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: 0.05em; /* a bit of spacing for elegance */
  font-family: 'Georgia', serif; /* classy serif font */
}


/* Cursor styles with transition */
#cursor {
  font-weight: bold;
  font-size: 3rem;
  color: #555;
  animation: blink 1s step-start infinite;
  transition: color 1s ease;
}

/* Dark mode cursor color */
body.dark #cursor {
  color: #bbb;
}

/* Blink animation for cursor */
@keyframes blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

/* Toggle button styles */
#toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;       /* no border at all */
  box-shadow: none;   /* no shadow */
  cursor: pointer;
  font-size: 2rem;
  padding: 10px;
  color: inherit;
  user-select: none;
  border-radius: 50%; /* keep it round but no border */

  transition: transform 0.4s ease;
}

/* rotate 90 degrees on hover */
#toggle:hover {
  transform: rotate(90deg) scale(1.1);
  color: #c0a060; /* subtle warm color */
}

/* If you want rotation on click (toggle), that requires JS toggle class */




