body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #2c2f33;
  color: #ffffff;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
  background-color: #23272a;
  border-radius: 10px;
  margin-top: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

h1 {
  text-align: center;
  color: #7289da;
  margin-bottom: 0.5rem;
}

.update-date {
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.section {
  margin-bottom: 1.5rem;
}

.toggle {
  width: 100%;
  background-color: #2c2f33;
  color: #ffffff;
  border: none;
  padding: 1rem;
  text-align: left;
  font-size: 1.1rem;
  cursor: pointer;
  border-bottom: 1px solid #444;
  outline: none;
  transition: background 0.2s ease-in-out;
}

.toggle:hover {
  background-color: #3a3f45;
}

.content {
  display: none;
  padding: 1rem;
  background-color: #2e3338;
  border-radius: 0 0 8px 8px;
  border-left: 3px solid #7289da;
}

ul {
  padding-left: 1.5rem;
}

a {
  color: #7289da;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 2rem;
  text-align: center;
  color: #bbb;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c2f33;
  color: #ffffff;
  padding: 1rem 2rem;
  border-top: 2px solid #7289da;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.6);
}

.cookie-banner p {
  margin: 0;
  text-align: center;
}

.cookie-actions {
  margin-top: 0.75rem;
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  background-color: #7289da;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 500;
}

.cookie-btn.ghost {
  background-color: transparent;
  border: 1px solid #7289da;
  color: #7289da;
}

.cookie-btn:hover {
  background-color: #5b6eae;
}

.cookie-btn.ghost:hover {
  background-color: #23272a;
}

