.geh-header {
  background-color: var(--geh-color-primary);
  padding: var(--geh-space-s) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.geh-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.geh-header__logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: var(--geh-font-size-md);
  z-index: 1002;
  position: relative;
}

.geh-logo__icon {
  font-size: 1.5rem;
}

.geh-nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1002;
  position: relative;
}

.geh-nav-toggle:focus {
  outline: 2px solid var(--geh-color-accent);
  outline-offset: 2px;
}

.geh-nav-toggle__line {
  width: 25px;
  height: 3px;
  background-color: var(--geh-color-text-light);
  transition: all var(--geh-transition);
  border-radius: 2px;
}

.geh-nav-toggle[aria-expanded="true"] .geh-nav-toggle__line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.geh-nav-toggle[aria-expanded="true"] .geh-nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.geh-nav-toggle[aria-expanded="true"] .geh-nav-toggle__line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.geh-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--geh-color-primary-dark);
  padding: 5rem var(--geh-space-l) var(--geh-space-l);
  transform: translateY(-100%);
  transition: transform var(--geh-transition);
  z-index: 1001;
  overflow-y: auto;
}

.geh-nav.geh-nav--open {
  transform: translateY(0);
}

.geh-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--geh-space-s);
}

.geh-nav__link {
  padding: var(--geh-space-s);
  display: block;
  transition: color var(--geh-transition);
  font-weight: 500;
  font-size: var(--geh-font-size-md);
}

.geh-nav__link:focus {
  outline: 2px solid var(--geh-color-accent);
  outline-offset: 2px;
}

.geh-nav__link:hover,
.geh-nav__link--active {
  color: var(--geh-color-accent);
}

@media (min-width: 768px) {
  .geh-nav-toggle {
    display: none;
  }

  .geh-nav {
    position: static;
    transform: none;
    padding: 0;
    background: none;
    overflow: visible;
  }

  .geh-nav__list {
    flex-direction: row;
    gap: var(--geh-space-l);
  }

  .geh-nav__link {
    padding: 0;
    font-size: var(--geh-font-size-base);
  }
}

.geh-hero {
  background: linear-gradient(135deg, var(--geh-color-primary) 0%, var(--geh-color-primary-dark) 100%);
  padding: var(--geh-space-xl) 0;
  position: relative;
  overflow: hidden;
}

.geh-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.geh-hero__inner {
  display: grid;
  gap: var(--geh-space-l);
}

@media (min-width: 1024px) {
  .geh-hero__inner {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--geh-space-xl);
    align-items: center;
  }
}

.geh-hero__title {
  font-size: var(--geh-font-size-xl);
  font-weight: 700;
  margin-bottom: var(--geh-space-m);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .geh-hero__title {
    font-size: 2.75rem;
  }
}

.geh-hero__text {
  margin-bottom: var(--geh-space-l);
  color: var(--geh-color-text-gray);
  line-height: 1.7;
}

.geh-hero__sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--geh-space-s);
}

.geh-game-mini-card {
  background-color: var(--geh-color-bg-card);
  border-radius: var(--geh-border-radius);
  padding: var(--geh-space-s);
  display: flex;
  gap: var(--geh-space-s);
  border: 2px solid var(--geh-color-border);
  transition: transform var(--geh-transition), border-color var(--geh-transition);
}

.geh-game-mini-card:hover {
  transform: translateX(5px);
  border-color: var(--geh-color-accent);
}

.geh-game-mini-card__img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.geh-game-mini-card__content {
  flex: 1;
}

.geh-game-mini-card__title {
  font-size: var(--geh-font-size-md);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.geh-game-mini-card__desc {
  font-size: var(--geh-font-size-sm);
  color: var(--geh-color-text-gray);
  margin-bottom: 0.5rem;
}

.geh-spieldetails {
  background-color: var(--geh-color-primary-dark);
}

.geh-game-grid {
  display: grid;
  gap: var(--geh-space-l);
}

@media (min-width: 768px) {
  .geh-game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .geh-game-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.geh-card--game {
  background-color: var(--geh-color-bg-card);
  border-radius: var(--geh-border-radius);
  padding: var(--geh-space-m);
  border: 2px solid var(--geh-color-border);
  transition: transform var(--geh-transition), box-shadow var(--geh-transition);
}

.geh-card--game:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(57, 255, 20, 0.2);
}

.geh-card--game__img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: var(--geh-space-s);
}

.geh-card--game__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.geh-card--game__rating {
  margin-bottom: var(--geh-space-s);
}

.geh-card--game__title {
  font-size: var(--geh-font-size-lg);
  font-weight: 600;
  margin-bottom: var(--geh-space-s);
}

.geh-card--game__desc {
  color: var(--geh-color-text-gray);
  margin-bottom: var(--geh-space-m);
  font-size: var(--geh-font-size-sm);
  line-height: 1.6;
}

.geh-card--game__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.geh-card--game__features li {
  background-color: var(--geh-color-primary);
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  color: var(--geh-color-accent);
}

.geh-vorteile {
  background-color: var(--geh-color-bg-dark);
}

.geh-vorteile-grid {
  display: grid;
  gap: var(--geh-space-l);
}

@media (min-width: 768px) {
  .geh-vorteile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .geh-vorteile-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.geh-vorteil-card {
  background-color: var(--geh-color-bg-card);
  border-radius: var(--geh-border-radius);
  padding: var(--geh-space-l);
  border: 2px solid var(--geh-color-border);
  text-align: center;
  transition: transform var(--geh-transition), border-color var(--geh-transition);
}

.geh-vorteil-card:hover {
  transform: scale(1.05);
  border-color: var(--geh-color-accent);
}

.geh-vorteil-card__number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--geh-color-accent);
  margin-bottom: var(--geh-space-s);
  line-height: 1;
}

.geh-vorteil-card__title {
  font-size: var(--geh-font-size-md);
  font-weight: 600;
  margin-bottom: var(--geh-space-s);
}

.geh-vorteil-card__text {
  color: var(--geh-color-text-gray);
  font-size: var(--geh-font-size-sm);
}

.geh-faq {
  background-color: var(--geh-color-primary-dark);
}

.geh-faq__intro {
  text-align: center;
  color: var(--geh-color-text-gray);
  margin-bottom: var(--geh-space-l);
  font-size: var(--geh-font-size-md);
}

.geh-faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--geh-space-s);
}

.geh-faq-item {
  background-color: var(--geh-color-bg-card);
  border-radius: var(--geh-border-radius);
  border: 2px solid var(--geh-color-border);
  overflow: hidden;
}

.geh-faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--geh-space-m);
  font-weight: 600;
  text-align: left;
  transition: background-color var(--geh-transition);
}

.geh-faq-item__question:hover {
  background-color: rgba(57, 255, 20, 0.05);
}

.geh-faq-item__icon {
  color: var(--geh-color-accent);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform var(--geh-transition);
  flex-shrink: 0;
  margin-left: var(--geh-space-s);
}

.geh-faq-item__question[aria-expanded="true"] .geh-faq-item__icon {
  transform: rotate(45deg);
}

.geh-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--geh-transition);
}

.geh-faq-item__answer-content {
  padding: 0 var(--geh-space-m) var(--geh-space-m);
  color: var(--geh-color-text-gray);
  line-height: 1.7;
}

.geh-bewertungen {
  background-color: var(--geh-color-bg-dark);
}

.geh-bewertungen-grid {
  display: grid;
  gap: var(--geh-space-l);
}

@media (min-width: 768px) {
  .geh-bewertungen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.geh-bewertung-card {
  background-color: var(--geh-color-bg-card);
  border-radius: var(--geh-border-radius);
  padding: var(--geh-space-l);
  border: 2px solid var(--geh-color-border);
  text-align: center;
}

.geh-bewertung-card__avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--geh-space-m);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--geh-color-accent);
}

.geh-bewertung-card__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.geh-bewertung-card__name {
  font-size: var(--geh-font-size-md);
  font-weight: 600;
  margin-bottom: var(--geh-space-s);
}

.geh-bewertung-card .geh-rating {
  justify-content: center;
  margin-bottom: var(--geh-space-m);
}

.geh-bewertung-card__text {
  color: var(--geh-color-text-gray);
  font-style: italic;
  line-height: 1.7;
}

.geh-registration {
  background-color: var(--geh-color-primary-dark);
}

.geh-registration__inner {
  display: grid;
  gap: var(--geh-space-xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .geh-registration__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.geh-registration__title {
  font-size: var(--geh-font-size-xl);
  font-weight: 700;
  margin-bottom: var(--geh-space-l);
  line-height: 1.3;
}

.geh-registration-form {
  display: flex;
  flex-direction: column;
  gap: var(--geh-space-m);
}

.geh-form-group {
  display: flex;
  flex-direction: column;
}

.geh-input {
  padding: 0.875rem var(--geh-space-m);
  background-color: var(--geh-color-bg-card);
  border: 2px solid var(--geh-color-border);
  border-radius: var(--geh-border-radius);
  color: var(--geh-color-text-light);
  transition: border-color var(--geh-transition);
}

.geh-input:focus {
  outline: none;
  border-color: var(--geh-color-accent);
}

.geh-input::placeholder {
  color: var(--geh-color-text-gray);
}

.geh-registration__image {
  display: none;
}

@media (min-width: 1024px) {
  .geh-registration__image {
    display: block;
  }
}

.geh-registration__img {
  width: 100%;
  border-radius: var(--geh-border-radius);
}

.geh-footer {
  background-color: var(--geh-color-primary);
  padding: var(--geh-space-xl) 0 var(--geh-space-l);
  margin-top: var(--geh-space-xxl);
}

.geh-footer__grid {
  display: grid;
  gap: var(--geh-space-l);
  margin-bottom: var(--geh-space-l);
}

@media (min-width: 768px) {
  .geh-footer__grid {
    grid-template-columns: 2fr 1fr;
    gap: var(--geh-space-xl);
  }
}

.geh-footer__brand {
  display: flex;
  flex-direction: column;
}

.geh-footer__tagline {
  color: var(--geh-color-text-gray);
  line-height: 1.7;
  font-size: var(--geh-font-size-sm);
}

.geh-footer__nav {
  display: flex;
  flex-direction: column;
}

.geh-footer__nav-title {
  font-size: var(--geh-font-size-md);
  font-weight: 600;
  margin-bottom: var(--geh-space-m);
}

.geh-footer__inner {
  display: grid;
  gap: var(--geh-space-l);
  margin-bottom: var(--geh-space-l);
}

@media (min-width: 768px) {
  .geh-footer__inner {
    grid-template-columns: 2fr 1fr;
    gap: var(--geh-space-xl);
  }
}

.geh-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: var(--geh-font-size-md);
  margin-bottom: var(--geh-space-m);
}

.geh-footer__desc {
  color: var(--geh-color-text-gray);
  line-height: 1.7;
  font-size: var(--geh-font-size-sm);
}

.geh-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--geh-space-s);
}

.geh-footer__link {
  color: var(--geh-color-text-gray);
  transition: color var(--geh-transition);
  font-size: var(--geh-font-size-sm);
}

.geh-footer__link:hover {
  color: var(--geh-color-accent);
}

.geh-footer__legal {
  border-top: 1px solid var(--geh-color-border);
  padding-top: var(--geh-space-l);
}

.geh-footer__disclaimer {
  color: var(--geh-color-text-gray);
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-bottom: var(--geh-space-m);
}

.geh-footer__copyright {
  text-align: center;
  color: var(--geh-color-text-gray);
  font-size: 0.8125rem;
}

.geh-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--geh-color-primary);
  padding: var(--geh-space-m);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform var(--geh-transition);
  z-index: 999;
}

.geh-cookie-banner.geh-cookie-banner--visible {
  transform: translateY(0);
}

.geh-cookie-banner__inner {
  max-width: var(--geh-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--geh-space-m);
  align-items: center;
}

@media (min-width: 768px) {
  .geh-cookie-banner__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.geh-cookie-banner__content {
  max-width: var(--geh-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--geh-space-m);
  align-items: center;
}

@media (min-width: 768px) {
  .geh-cookie-banner__content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.geh-cookie-banner__text {
  font-size: var(--geh-font-size-sm);
  color: var(--geh-color-text-gray);
}

.geh-cookie-banner__link {
  color: var(--geh-color-accent);
  text-decoration: underline;
}

.geh-back-to-top {
  position: fixed;
  bottom: var(--geh-space-l);
  right: var(--geh-space-l);
  width: 50px;
  height: 50px;
  background-color: var(--geh-color-accent);
  color: var(--geh-color-primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--geh-transition), transform var(--geh-transition);
  z-index: 998;
}

.geh-back-to-top.geh-back-to-top--visible {
  opacity: 1;
  pointer-events: all;
}

.geh-back-to-top:hover {
  transform: translateY(-3px);
}

.geh-back-to-top__icon {
  font-weight: 700;
}

.geh-game-card__category {
  position: absolute;
  top: var(--geh-space-s);
  right: var(--geh-space-s);
  background-color: var(--geh-color-accent);
  color: var(--geh-color-primary-dark);
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.geh-game-card__difficulty {
  color: var(--geh-color-text-gray);
  font-size: var(--geh-font-size-sm);
  margin-left: var(--geh-space-s);
}
