* {
  box-sizing: border-box;
}

:root {
  /* Pas deze waardes aan om je website snel te personaliseren. */
  /* Voor afbeeldingen: url("afbeeldingen/jouw-bestand.jpg") */
  --page-background: url("afbeeldingen/darkbeatz.jpg");
  --hero-background:  url("afbeeldingen/mijn-achtergrond.jpg");
  --card-background: #000000;
  --cta-background: #0f1222;
  --chip-background: #252a4f;
  --post-background: #20274b;
  --input-background: #11162f;
  --primary-button-background: #5d2cff;
  --discord-button-background: #5865f2;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--page-background);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffeae9;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  text-align: center;
  padding: 64px 16px;
  background: var(--hero-background);
  background-size: cover;
  background-position: center;
}

.hero h1 {
  margin: 0;
  font-size: 2.2rem;
}

.hero p {
  margin: 12px 0 20px;
}

.hero-highlight {
  color: #ffd54a;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-shadow: 0 0 10px rgba(255, 213, 74, 0.45);
}

.cta {
  background: var(--cta-background);
  color: #f50a0a;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: bold;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.discord-btn {
  background: var(--discord-button-background);
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: bold;
}

.page-btn {
  background: #0f1222;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: bold;
  border: 1px solid #3f4a89;
}

.container {
  max-width: 980px;
  margin: 20px auto;
  padding: 0 16px 30px;
  display: grid;
  gap: 16px;
  width: 100%;
  flex: 1;
}

.card {
  background: var(--card-background);
  border: 1px solid #2d335f;
  border-radius: 12px;
  padding: 16px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--chip-background);
  border: 1px solid #3f4a89;
}

.post {
  padding: 12px;
  border-radius: 10px;
  background: var(--post-background);
  margin-bottom: 10px;
}

.post small {
  color: #b7c0ff;
}

.join-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.join-form input,
.join-form button {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #3f4a89;
}

.join-form input {
  flex: 1 1 220px;
  background: var(--input-background);
  color: #fff;
}

.join-form button {
  background: var(--primary-button-background);
  color: #fff;
  cursor: pointer;
  border: none;
}

footer {
  text-align: center;
  padding: 20px;
  color: #bfc6ff;
}

.copyright-line {
  color: #ffd54a;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-shadow: 0 0 10px rgba(255, 213, 74, 0.45);
}
