/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6
}

/* Main Container */
main {
  max-width: 900px;
  margin: 0 auto;
  padding:20px;
  background: #111;

  border-radius: 12px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
}

/* Headings */
h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Paragraphs */
p {
  margin-bottom: 1rem;
  opacity: 0.95;
}

/* Lists */
ul, ol {
  margin: 1rem 0 1rem 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Links */
a {
  color: #4da3ff;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

/* Sections */
section {
  margin-bottom: 2.5rem;
}

/* Highlight Boxes */
.box {
  background: #1a1a1a;
  padding: 20px;
  border-left: 4px solid #4da3ff;
  margin: 1.5rem 0;
  border-radius: 6px;
}

/* Tables (falls benötigt) */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

table th, table td {
  padding: 12px;
  border-bottom: 1px solid #333;
}

table th {
  background: #1a1a1a;
  font-weight: 600;
}

/* Small Text */
small {
  opacity: 0.7;
  font-size: 0.85rem;
}
