@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  font-family: "Inter", sans-serif;
  background: #0F0E1C;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #0F0E1C;
}

[class*=__container] {
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.main {
  flex: 1 1 auto;
}

.title {
  color: #fff;
  font-size: clamp(30px, 6vw, 60px);
  font-weight: 800;
  text-transform: uppercase;
}
.title span {
  color: #2EF7D5;
}

[class*=__text] {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}

.label {
  color: #2EF7D5;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 100px;
  border: 2px solid #2EF7D5;
  padding: 14px 20px;
  width: -moz-fit-content;
  width: fit-content;
}

.btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  color: #0F0E1C;
  font-size: 16px;
  font-weight: 600;
  padding: 24px 50px;
  border-radius: 60px;
  background: #2EF7D5;
  box-shadow: 0 2px 24px 0 rgba(46, 247, 213, 0.65);
}

.m-60 {
  margin: 60px 0;
}

.text-center {
  text-align: center;
}

.white {
  color: #fff !important;
}

section {
  scroll-margin-top: 260px;
}

.footer {
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .footer {
    padding: 0;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .footer__img {
    width: -moz-fit-content;
    width: fit-content;
    position: static;
    margin-top: 20px;
    margin-left: auto;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .footer .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  max-width: 500px;
  width: 100%;
  border-radius: 30px;
  border: 3px solid #2EF7D5;
  background: #0F0E1C;
}
@media (max-width: 767px) {
  .cookies {
    padding: 40px 20px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.cookies__btns {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.cookies__btn {
  width: 100%;
}
.cookies__btn:last-child {
  color: #FFF;
  border-radius: 60px;
  border: 2px solid #FFF;
  background: transparent;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #0F0E1C;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
@media (max-width: 575px) {
  .header__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__menu a {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}

.hero {
  margin: 70px 0 0;
}
@media (max-width: 575px) {
  .hero {
    margin: 102px 0 0;
  }
}
.hero__bg {
  background: url(/assets/img/bg.webp) no-repeat left/cover;
}
.hero__content {
  max-width: 1027px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 240px 0 30px;
}
@media (max-width: 767px) {
  .hero__content {
    padding: 165px 0 30px;
  }
}
.hero__title {
  font-size: clamp(30px, 6vw, 66px);
}
.hero__line img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__line {
  margin-top: 20px;
}
.hero__line_about {
  height: 460px;
}
@media (max-width: 575px) {
  .hero__line_about {
    height: 260px;
  }
}

.excellence__content {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .excellence__content {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .excellence__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.excellence__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .excellence__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.excellence__card {
  border-radius: 15px;
  border: 1px solid rgba(46, 247, 213, 0.3);
  background: rgba(46, 247, 213, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
.excellence__card h3 {
  color: #2EF7D5;
  font-size: 22px;
  font-weight: 900;
}

.catalog_main {
  margin: 60px 0;
}
.catalog__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .catalog__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.catalog__row {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .catalog__row {
    flex-direction: column;
    gap: 14px;
  }
}
.catalog__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .catalog__item {
    flex-direction: row;
    gap: 14px;
  }
}
.catalog__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.catalog__card {
  position: relative;
}
.catalog__card a {
  position: absolute;
  inset: 0;
}
@media (max-width: 767px) {
  .catalog__card_mob {
    width: 160px;
  }
}

.games__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.games__row {
  display: flex;
  align-items: center;
  gap: 60px;
}
.games__row_sub {
  gap: 30px;
}
@media (max-width: 991px) {
  .games__row {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .games__subimg {
    width: -moz-fit-content;
    width: fit-content;
  }
  .games__subimg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.contact .policy__content {
  max-width: 1000px;
  margin: 0 auto;
}
.contact__address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact__address p,
.contact__address a {
  color: #0F0E1C;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  border-radius: 15px;
  background: #FFF;
  padding: 20px;
  max-width: 400px;
  width: 100%;
}
.contact__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact__img {
  margin-top: 20px;
}

.policy {
  margin: 70px 0 0;
  padding: 0 0 60px;
}
@media (max-width: 575px) {
  .policy {
    margin: 102px 0 0;
  }
}
.policy__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.policy__content_center {
  align-items: center;
}

/* === DE: redaktionelle Komponenten === */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0 0 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}
.crumbs a {
  color: #2EF7D5;
}
.crumbs a:hover {
  text-decoration: underline;
}
.crumbs span[aria-current] {
  color: rgba(255, 255, 255, 0.6);
}
.crumbs__sep {
  color: rgba(255, 255, 255, 0.3);
}

.header__menu a.is-current {
  color: #2EF7D5;
  font-weight: 600;
}

.meta {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
  border-left: 3px solid #2EF7D5;
  padding: 4px 0 4px 14px;
}
.meta a {
  color: #2EF7D5;
}
.meta a:hover {
  text-decoration: underline;
}

.notice {
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
  border-radius: 15px;
  border: 1px solid rgba(46, 247, 213, 0.35);
  background: rgba(46, 247, 213, 0.08);
  padding: 18px 20px;
}
.notice strong {
  color: #2EF7D5;
}

[class*=__text_lead] {
  font-size: 17px;
  line-height: 1.7;
}

[class*=__text] {
  line-height: 1.75;
}

.policy__text a,
.games__text a,
.about__text a,
.catalog__text a,
.excellence__text a,
.footer__text a {
  color: #2EF7D5;
}
.policy__text a:hover,
.games__text a:hover,
.about__text a:hover,
.catalog__text a:hover {
  text-decoration: underline;
}

.policy__h2 {
  font-size: clamp(24px, 3.4vw, 36px);
  margin-top: 20px;
}

.btn_ghost {
  color: #2EF7D5;
  background: transparent;
  border: 2px solid #2EF7D5;
  box-shadow: none;
  padding: 18px 40px;
}
.btn_ghost:hover {
  color: #0F0E1C;
  background: #2EF7D5;
}

.facts {
  margin: 20px 0;
}
.facts__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .facts__list {
    grid-template-columns: 1fr;
  }
}
.facts__row {
  border-radius: 15px;
  border: 1px solid rgba(46, 247, 213, 0.3);
  background: rgba(46, 247, 213, 0.06);
  padding: 16px 18px;
}
.facts__row dt {
  color: #2EF7D5;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.facts__row dd {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}

.tax {
  margin: 60px 0;
}
.tax__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .tax__grid {
    grid-template-columns: 1fr;
  }
}
.tax__item {
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px;
}
.tax__item h3 {
  color: #2EF7D5;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cat {
  margin: 60px 0 0;
}
.cat__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cat__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cat__grid {
    grid-template-columns: 1fr;
  }
}
.cat__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
}
.cat__link {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cat__link img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
.cat__title {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}
.cat__kicker {
  color: #2EF7D5;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.cat__text {
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
}
.cat__more {
  margin-top: auto;
  color: #2EF7D5;
  font-size: 14px;
  font-weight: 700;
}
.cat__more:hover {
  text-decoration: underline;
}

.words {
  margin: 60px 0;
}
.words__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .words__list {
    grid-template-columns: 1fr;
  }
}
.words__item a {
  display: block;
  height: 100%;
  border-radius: 15px;
  border: 1px solid rgba(46, 247, 213, 0.3);
  background: rgba(46, 247, 213, 0.06);
  padding: 18px 20px;
}
.words__item a:hover {
  border-color: #2EF7D5;
}
.words__item strong {
  display: block;
  color: #2EF7D5;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.words__item span {
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px 0;
}
.faq__item summary {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: "+";
  color: #2EF7D5;
  font-size: 24px;
  line-height: 1;
}
.faq__item[open] summary::after {
  content: "\2013";
}
.faq__item p {
  padding-top: 14px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.steps__item {
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 22px;
}
.steps__item h3 {
  color: #2EF7D5;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
}

.person {
  border-radius: 15px;
  border: 1px solid rgba(46, 247, 213, 0.25);
  background: rgba(46, 247, 213, 0.06);
  padding: 22px;
  scroll-margin-top: 140px;
}
.person__name {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}
.person__role {
  color: #2EF7D5;
  font-size: 14px;
  font-weight: 700;
  margin: 6px 0 14px;
}
.person__scope {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-top: 12px;
}

.term {
  border-left: 2px solid rgba(46, 247, 213, 0.5);
  padding-left: 18px;
  scroll-margin-top: 140px;
}
.term__title {
  color: #2EF7D5;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.related {
  margin-top: 20px;
}
.related__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}
@media (max-width: 767px) {
  .related__list {
    grid-template-columns: 1fr;
  }
}
.related__list li {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 16px;
}
.related__list a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.related__list a:hover {
  color: #2EF7D5;
}
.related__list span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin-top: 4px;
}

.footer__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}
.footer__note {
  color: rgba(255, 255, 255, 0.65) !important;
  max-width: 820px;
  line-height: 1.7;
}

.games__text_lead {
  font-size: 17px;
}

.games .policy__content,
.catalog .policy__content {
  min-width: 0;
}
