html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  background-color: var(--bg-primary, #0b0c10);
  color: var(--text-primary, #c5c6c7);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

h1 {
  color: var(--text-primary, #c5c6c7);
  text-align: center;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  h1 {
    font-size: 24px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }
  
  h1 {
    font-size: 20px;
    padding: 8px;
  }
}