
.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 42px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(130, 165, 220, 0.24);
  background: rgba(3, 9, 18, 0.36);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.language-toggle button {
  appearance: none;
  border: 0;
  min-width: 40px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: transparent;
  color: rgba(238, 244, 255, 0.72);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.language-toggle button:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}

.language-toggle button.is-active {
  color: #08111c;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

@media (max-width: 720px) {
  .language-toggle {
    width: max-content;
  }
}

/* IRGEZTNE screenshots carousel */
.screenshots-carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 10px 0 16px;
}

.screenshots-carousel-button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  color: inherit;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}

.screenshots-carousel-button:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.24);
  transform: translateY(-1px);
}

.screenshots-carousel-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.screenshots-carousel-track {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 18px;
  scrollbar-width: thin;
}

.screenshots-carousel-track .screenshot-card {
  flex: 0 0 min(1040px, 88vw);
  scroll-snap-align: center;
}

.screenshots-carousel-track .screenshot-card img {
  width: 100%;
  display: block;
}

@media (max-width: 760px) {
  .screenshots-carousel-controls {
    justify-content: flex-start;
  }

  .screenshots-carousel-track .screenshot-card {
    flex-basis: 92vw;
  }
}

/* IRGEZTNE screenshots carousel v2 */
#screenshots .screenshots-carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin: 18px 0 18px;
}

#screenshots .screenshots-carousel-button {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: inherit;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}

#screenshots .screenshots-carousel-button:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-1px);
}

#screenshots .screenshots-carousel-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

#screenshots .screenshots-carousel-track {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 20px;
  scrollbar-width: thin;
}

#screenshots .screenshots-carousel-track .screenshot-card {
  flex: 0 0 min(1180px, 94vw);
  scroll-snap-align: center;
}

#screenshots .screenshots-carousel-track .screenshot-card img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@media (max-width: 900px) {
  #screenshots .screenshots-carousel-controls {
    justify-content: flex-start;
  }

  #screenshots .screenshots-carousel-track .screenshot-card {
    flex-basis: 92vw;
  }

  #screenshots .screenshots-carousel-track .screenshot-card img {
    min-height: 360px;
  }
}

/* IRGEZTNE screenshots carousel final override */
#screenshots .irgeztne-screenshots-carousel {
  width: 100%;
  margin-top: 22px;
}

#screenshots .irgeztne-screenshots-carousel__controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin: 0 0 18px;
}

#screenshots .irgeztne-screenshots-carousel__controls button {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: inherit;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

#screenshots .irgeztne-screenshots-carousel__controls button:hover {
  background: rgba(255,255,255,.16);
}

#screenshots .irgeztne-screenshots-carousel__track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 22px;
  scrollbar-width: thin;
}

#screenshots .irgeztne-screenshots-carousel__card {
  flex: 0 0 min(1240px, 96vw) !important;
  width: min(1240px, 96vw) !important;
  max-width: none !important;
  scroll-snap-align: center;
}

#screenshots .irgeztne-screenshots-carousel__card img {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: top center !important;
  display: block;
}

@media (max-width: 900px) {
  #screenshots .irgeztne-screenshots-carousel__controls {
    justify-content: flex-start;
  }

  #screenshots .irgeztne-screenshots-carousel__card {
    flex-basis: 92vw !important;
    width: 92vw !important;
  }
}

/* IRGEZTNE clean screenshots carousel */
#screenshots .irgeztne-screenshots-carousel {
  width: 100%;
  margin-top: 22px;
}

#screenshots .irgeztne-screenshots-carousel__controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin: 0 0 18px;
}

#screenshots .irgeztne-screenshots-carousel__controls button {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: inherit;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

#screenshots .irgeztne-screenshots-carousel__controls button:hover {
  background: rgba(255,255,255,.16);
}

#screenshots .irgeztne-screenshots-carousel__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 24px;
  scrollbar-width: thin;
}

#screenshots .irgeztne-screenshot-slide {
  flex: 0 0 min(1240px, 96vw);
  width: min(1240px, 96vw);
  scroll-snap-align: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.035);
}

#screenshots .irgeztne-screenshot-slide img {
  width: 100%;
  display: block;
  height: auto;
}

#screenshots .irgeztne-screenshot-slide__body {
  padding: 22px 26px 26px;
}

#screenshots .irgeztne-screenshot-slide__body span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(62,132,255,.18);
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

#screenshots .irgeztne-screenshot-slide__body h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.5vw, 34px);
}

#screenshots .irgeztne-screenshot-slide__body p {
  margin: 0;
  max-width: 78ch;
}

@media (max-width: 900px) {
  #screenshots .irgeztne-screenshots-carousel__controls {
    justify-content: flex-start;
  }

  #screenshots .irgeztne-screenshot-slide {
    flex-basis: 92vw;
    width: 92vw;
  }

  #screenshots .irgeztne-screenshot-slide__body {
    padding: 18px;
  }
}

/* IRGEZTNE screenshots carousel centered fix */
#screenshots {
  overflow: hidden;
}

#screenshots .section-head {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

#screenshots .irgeztne-screenshots-carousel {
  width: min(1280px, calc(100vw - 32px));
  max-width: 1280px;
  margin: 24px auto 0;
}

#screenshots .irgeztne-screenshots-carousel__controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin: 0 0 18px;
}

#screenshots .irgeztne-screenshots-carousel__track {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  border-radius: 28px;
}

#screenshots .irgeztne-screenshot-slide {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.035);
}

#screenshots .irgeztne-screenshot-slide + .irgeztne-screenshot-slide {
  margin-left: 22px;
}

#screenshots .irgeztne-screenshot-slide img {
  width: 100% !important;
  height: auto !important;
  display: block;
  object-fit: contain !important;
}

#screenshots .irgeztne-screenshot-slide__body {
  padding: 22px 26px 26px;
}

@media (max-width: 760px) {
  #screenshots .irgeztne-screenshots-carousel {
    width: calc(100vw - 24px);
  }

  #screenshots .irgeztne-screenshots-carousel__controls {
    justify-content: flex-start;
  }
}
