body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  background: #007bff;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-header .logo img {
  height: 50px;
  transition: transform 0.3s;
}
.site-header .logo img:hover {
  transform: scale(1.05);
}
.site-header .age-icon img {
  height: 32px;
  margin: 0 1rem;
}
.site-header .register-btn {
  background: #fff;
  color: #007bff;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}
.site-header .register-btn:hover {
  background: #0056b3;
  color: #fff;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-header .logo {
    margin-bottom: 0.5rem;
  }
  .site-header .register-btn {
    margin-top: 0.5rem;
  }
}
.hero {
  background: url("/assets/img/hero.png") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero .subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.hero .cta-btn {
  display: inline-block;
  background: #ffc107;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero .cta-btn:hover {
  background: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.hero small {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero .subtitle {
    font-size: 1rem;
  }
}

.features {
  background: #f8f9fa;
  padding: 4rem 2rem;
}
.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.features .feature-item {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.features .feature-item i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 1rem;
}
.features .feature-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.features .feature-item p {
  font-size: 0.95rem;
  color: #555;
}

.responsible {
  background: #fff3cd;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 2px solid #ffeeba;
  border-bottom: 2px solid #ffeeba;
}
.responsible h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #856404;
  font-weight: 700;
}
.responsible p {
  font-size: 1rem;
  color: #856404;
}
.responsible p a {
  color: #007bff;
  text-decoration: underline;
}
.responsible p a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .responsible h2 {
    font-size: 1.5rem;
  }
  .responsible p {
    font-size: 0.95rem;
  }
}

.self-exclusion {
  background: #f1f3f5;
  padding: 3rem 2rem;
  text-align: center;
}
.self-exclusion p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #333;
  font-weight: 500;
}
.self-exclusion .self-exclusion-btn {
  background: #fff;
  color: #007bff;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}
.self-exclusion .self-exclusion-btn:hover {
  background: #0056b3;
  color: #fff;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .self-exclusion p {
    font-size: 1rem;
  }
}

.site-footer {
  background: #111;
  color: #ccc;
  font-size: 0.8rem;
  padding: 3rem 2rem;
}
.site-footer .footer-links {
  text-align: center;
  margin-bottom: 1.5rem;
}
.site-footer .footer-links a {
  color: #ccc;
  margin: 0 0.5rem;
  text-decoration: none;
}
.site-footer .footer-links a:hover {
  text-decoration: underline;
}
.site-footer .footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.site-footer .footer-logos img {
  height: 40px;
  transition: transform 0.3s;
}
.site-footer .footer-logos img:hover {
  transform: scale(1.1);
}
.site-footer .legal-text {
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.6;
}
.site-footer .legal-text p {
  margin-bottom: 1rem;
}
.site-footer .legal-text p a {
  color: #007bff;
  text-decoration: underline;
}
.site-footer .legal-text p a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .site-footer .footer-logos {
    flex-direction: column;
    gap: 1rem;
  }
  .site-footer .footer-logos img {
    height: 30px;
  }
  .site-footer .footer-links {
    font-size: 0.75rem;
  }
}

.impressum {
  background: #f8f9fa;
  padding: 4rem 2rem;
  color: #333;
  line-height: 1.8;
}
.impressum h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.impressum p {
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
  font-size: 0.95rem;
}
.impressum p strong {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.impressum p a {
  color: #007bff;
  text-decoration: underline;
}
.impressum p a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .impressum h2 {
    font-size: 1.5rem;
  }
  .impressum p {
    font-size: 0.9rem;
  }
}

.datenschutz {
  background: #ffffff;
  padding: 4rem 2rem;
  color: #333;
  line-height: 1.8;
}
.datenschutz h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.datenschutz p {
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
  font-size: 0.95rem;
}
.datenschutz p strong {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.datenschutz p a {
  color: #007bff;
  text-decoration: underline;
}
.datenschutz p a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .datenschutz h2 {
    font-size: 1.5rem;
  }
  .datenschutz p {
    font-size: 0.9rem;
  }
}

.cookies {
  background: #f8f9fa;
  padding: 4rem 2rem;
  color: #333;
  line-height: 1.8;
}
.cookies h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.cookies p {
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
  font-size: 0.95rem;
}
.cookies p strong {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.cookies p ul {
  margin: 0.5rem 0 1rem 1.5rem;
  list-style: disc;
}
.cookies p ul li {
  margin-bottom: 0.5rem;
}
.cookies p a {
  color: #007bff;
  text-decoration: underline;
}
.cookies p a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .cookies h2 {
    font-size: 1.5rem;
  }
  .cookies p {
    font-size: 0.9rem;
  }
}

.responsible-gaming {
  background: #fff;
  padding: 4rem 2rem;
  color: #333;
  line-height: 1.8;
}
.responsible-gaming h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.responsible-gaming p {
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
  font-size: 0.95rem;
}
.responsible-gaming p strong {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.responsible-gaming p ul {
  margin: 0.5rem 0 1rem 1.5rem;
  list-style: disc;
}
.responsible-gaming p ul li {
  margin-bottom: 0.5rem;
}
.responsible-gaming p a {
  color: #007bff;
  text-decoration: underline;
}
.responsible-gaming p a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .responsible-gaming h2 {
    font-size: 1.5rem;
  }
  .responsible-gaming p {
    font-size: 0.9rem;
  }
}

.age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.age-popup .popup-content {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.5s ease;
}
.age-popup .popup-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 700;
}
.age-popup .popup-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #555;
}
.age-popup .popup-content .popup-buttons {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}
.age-popup .popup-content .popup-buttons button {
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.age-popup .popup-content .popup-buttons button#confirmYes {
  background: #28a745;
  color: #fff;
}
.age-popup .popup-content .popup-buttons button#confirmYes:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.age-popup .popup-content .popup-buttons button#confirmNo {
  background: #dc3545;
  color: #fff;
}
.age-popup .popup-content .popup-buttons button#confirmNo:hover {
  background: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
@media (max-width: 480px) {
  .age-popup .popup-content {
    padding: 2rem 1.5rem;
  }
  .age-popup .popup-content h2 {
    font-size: 1.5rem;
  }
  .age-popup .popup-content p {
    font-size: 0.9rem;
  }
  .age-popup .popup-content button {
    width: 100%;
    padding: 0.7rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}/*# sourceMappingURL=style.css.map */