
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d0d0d;
  color: #f0f0f0;
  overflow-x: hidden;
}

.container {
  display: flex;
  min-height: 100vh;
  width: 100vw;
}

.sidebar {
  background-color: #1a1a1a;
  width: 220px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  transition: width 0.3s ease;
}

.sidebar.collapsed {
  width: 60px;
}

.logo {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.logo-text {
  font-weight: bold;
  color: #ffffff;
}

.menu a {
  color: #ccc;
  text-decoration: none;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: 0.3s ease;
  border-radius: 12px;
  padding: 0.5rem;
}

.menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  box-shadow: 0 0 10px #ffffff20;
}

.content {
  flex-grow: 1;
  padding: 2rem;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

header p {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 2rem;
}

.tos-section h2 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
}

.tos-section p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
  background: #111;
  padding: 1rem 1.5rem;
  border-left: 4px solid #ffffff30;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.03);
  transition: 0.3s ease;
}
