
html, body { height: 100%; }

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('hatterkep.jpg') center/cover no-repeat fixed;
  font-size: 150%;
  min-height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}


.overlay {
  background-color: rgba(0, 0, 0, 0.60);
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;       
  align-items: center;
  justify-content: center;
  padding: 16px;
}


.container {
  background-color: rgba(0, 0, 0, 0.50);
  padding: 40px 36px 36px;
  border-radius: 18px;
  max-width: 1050px;
  width: 100%;
  box-shadow: 0 0 30px rgba(0,0,0,0.30);
  display: flex;
  flex-direction: column;
  max-height: min(84vh, 1100px); 
}


.header h1, .header h2 {
  text-align: center;
  margin: 0 0 20px 0;
}
.header h1 { margin-top: 0.1em; }
.intro { margin: 0 0 12px 0; text-align: center; }


.contact-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  margin: 0 0 16px 0;
}
a { color: #fff; text-decoration: underline; }


.list-scroll {
  overflow: auto;
  max-height: 70vh;
  padding-right: 6px;
}


.domain-list { list-style: none; padding: 0; margin: 0; }
.domain-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}


.footer {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: clamp(16px, 3vh, 28px); 
  padding: 6px 10px;
  color: #fff;
  opacity: 0.9;
  text-align: center;
  font-size: 60%;   
}
.footer .footer-note { margin: 0; line-height: 1.3; }


.gdpr-badge {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.4));
}


@media (max-width: 1024px) {
  body { font-size: 135%; }
  .container {
    padding-top: 52px;
    padding-right: 28px;
    padding-bottom: 28px;
    padding-left: 28px;
    max-height: 86vh;
  }
  .list-scroll { max-height: 72vh; }
}


@media (max-width: 480px) {
  body { font-size: 112.5%; }
  .container {
    padding-top: calc(36px + env(safe-area-inset-top));
    padding-right: 20px;
    padding-bottom: 22px;
    padding-left: 20px;
    border-radius: 14px;
    max-height: 88vh;
  }
  .list-scroll { max-height: 74vh; }
}
