* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #081a2b;
    color: #ffffff;
    font-family: system-ui, sans-serif;
    text-align: center;
    line-height: 1.7;
}

a {
    color: #ffffff;
    text-decoration: underline;
}

.top {
    padding: 30px 20px;
}

.logo {
    font-size: 32px;
    margin-bottom: 20px;
}

.logo .red {
    color: #7b1020;
}

.logo .yellow {
    color: #f1c40f;
}

.logo .green {
    color: #3cb371;
}

.menu a {
    margin: 0 10px;
}

.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

section {
    margin-bottom: 80px;
}

.title {
    font-size: 26px;
    margin-bottom: 30px;
}

.footer {
    padding: 40px 20px;
    font-size: 14px;
}

.footer a {
    margin: 0 8px;
}
/* consent gate */
#consent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 15, 30, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.consent-box {
  max-width: 600px;
  padding: 40px 30px;
  background: #081a2b;
  border: 1px solid rgba(255,255,255,0.25);
}

.consent-text {
  margin-bottom: 30px;
}

.consent-check {
  display: block;
  margin-bottom: 20px;
  cursor: pointer;
}

#consent-button {
  background: #7b1020;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  opacity: 0.5;
  cursor: not-allowed;
}

#consent-button.active {
  opacity: 1;
  cursor: pointer;
}
