/* Reset & Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #f1f1f1;
  line-height: 1.6;
  padding: 1rem;
}

/* Header & Nav */
header {
  background-color: #1e1e1e;
  padding: 1rem;
  border-bottom: 2px solid #ff6b00;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

#navToggle {
  display: none;
  background: none;
  color: #ffae00;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

nav {
  margin-top: 0.5rem;
}

nav a {
  color: #ffae00;
  margin-right: 1rem;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #fff;
  text-decoration: underline;
}



/* Main Layout */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
  background-color: #1a1a1a;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px #ff6b00a0;
}

/* Sections */
section {
  margin-bottom: 2rem;
}

h2 {
  color: #ffa94d;
  margin-bottom: 0.5rem;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

li {
  background: #1a1a1a;
  margin: 0.5em 0;
  padding: 0.75em 1em;
  border-radius: 6px;
  color: #e0e0e0;
  font-weight: 500;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.05);
}

li a {
  color: #5fdfff;
  text-decoration: none;
}

li a:hover {
  text-decoration: underline;
}
/* Universal Button Style */
button {
  background-color: #ff6b00; /* Matching the accent orange color */
  color: #f1f1f1; /* White text for contrast */
  border: 1px solid #ff6b00; /* Orange border to match the background */
  padding: 10px 20px; /* Padding for the button */
  text-align: center; /* Center text */
  text-decoration: none; /* No underlines */
  display: inline-block; /* Align buttons properly */
  font-size: 16px; /* Font size */
  cursor: pointer; /* Pointer cursor on hover */
  border-radius: 4px; /* Rounded corners */
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease; /* Smooth transitions */
  margin-top: 10px; /* Space above the button */
  box-shadow: 0 0 5px rgba(255, 107, 0, 0.5); /* Slight shadow effect */
}

/* Button hover effect */
button:hover {
  background-color: #ffa94d; /* Lighter orange on hover */
  border-color: #ffa94d; /* Lighter border */
  transform: scale(1.05); /* Slightly enlarge the button */
}

/* Button focus (for accessibility) */
button:focus {
  outline: none; /* Remove outline */
  box-shadow: 0 0 5px 2px rgba(255, 107, 0, 0.7); /* Brighter orange glow on focus */
}

/* Button active (when clicked) */
button:active {
  background-color: #e65c00; /* Darker orange when clicked */
  border-color: #e65c00; /* Darker border */
  transform: scale(0.98); /* Slight shrink on click */
}
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background-color: #222;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

#backToTop:hover {
  opacity: 1;
}
blockquote {
  background-color: #2a2a2a;
  border-left: 4px solid #ff6b00;
  padding: 1rem;
  margin: 1rem 0;
  font-style: italic;
}

/* Responsive Touch */
@media (max-width: 600px) {
  nav a {
    display: block;
    margin: 0.5rem 0;
  }

  main {
    padding: 1rem;
  }
}