
:root {
  --bg-color: #0d0d13;
  --text-color: #f1f1f1;
  --accent-color: #a84ccf;
  --sidebar-bg: #1a1a1a;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  background: linear-gradient(rgba(13, 13, 19, 0.85), rgba(13, 13, 19, 0.85)),
              url('https://thesuperfade.neocities.org/SFBG.png') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
}


.header-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0 1rem 0;
  background: transparent;
  z-index: 2;
  position: relative;
}

.header-banner img {
  max-width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}


.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  background-color: rgba(84, 32, 103, 0.3);
  box-shadow: inset 0 0 12px rgba(168, 76, 207, 0.3);
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(2px);
  width: fit-content;
  min-width: 200px;
  max-width: 300px;
}



.sidebar .site-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin: 0.5rem 0;
}

.sidebar ul li a {
  color: var(--text-color);
  text-decoration: none;
}

.content {
  margin-left: calc(200px + 2rem); /* 200px sidebar + 1rem padding on each side */
  padding: 2rem;
  min-height: 100vh;
  box-sizing: border-box;
}


.menu-toggle {
  display: none;
  position: fixed;
  top: 10px;
  left: 10px;
  font-size: 1.5rem;
  z-index: 1000;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-220px);
    transition: transform 0.3s ease;
  }

  .sidebar.active {
    transform: translateX(0);
  }

.content {
  margin-left: 220px;
  padding: 1.5rem 2rem;
}


  .menu-toggle {
    display: block;
  }
}
