:root {
  --tenjl-bg: #050505;
  --tenjl-bg-2: #090806;
  --tenjl-panel: #101010;
  --tenjl-panel-2: #17130b;
  --tenjl-card: #121212;
  --tenjl-gold: #d6a84f;
  --tenjl-gold-2: #f5d67b;
  --tenjl-text: #fff8e8;
  --tenjl-muted: #b9ad96;
  --tenjl-border: rgba(214, 168, 79, .28);
  --tenjl-border-strong: rgba(245, 214, 123, .46);
  --tenjl-shadow: 0 24px 70px rgba(0, 0, 0, .55);
  --tenjl-radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.tenjl-site {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 5%, rgba(214, 168, 79, .16), transparent 34%),
    radial-gradient(circle at 92% 22%, rgba(245, 214, 123, .1), transparent 30%),
    linear-gradient(180deg, #050505 0%, #090806 42%, #050505 100%);
  color: var(--tenjl-text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.65;
  padding-bottom: 86px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.tenjl-container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.tenjl-skip-link {
  position: fixed;
  top: -90px;
  left: 16px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: var(--tenjl-radius);
  background: var(--tenjl-gold-2);
  color: #120d04;
  font-weight: 900;
}

.tenjl-skip-link:focus {
  top: 16px;
}

.tenjl-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(5, 5, 5, .9);
  border-bottom: 1px solid var(--tenjl-border);
  backdrop-filter: blur(18px);
}

.tenjl-header-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(214, 168, 79, .08), transparent);
}

.tenjl-header-inner {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.tenjl-brand {
  flex: 0 0 auto;
}

.tenjl-brand img {
  width: 138px;
  height: auto;
}

.tenjl-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
}

.tenjl-nav a {
  padding: 10px 11px;
  border-radius: var(--tenjl-radius);
  color: var(--tenjl-muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.tenjl-nav a:hover,
.tenjl-nav a.active {
  color: var(--tenjl-text);
  background: rgba(214, 168, 79, .12);
}

.tenjl-lang-switch {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--tenjl-border);
  border-radius: var(--tenjl-radius);
  background: rgba(255, 255, 255, .04);
}

.tenjl-lang-switch a {
  padding: 6px 9px;
  border-radius: 6px;
  color: var(--tenjl-muted);
  font-size: 12px;
  font-weight: 900;
}

.tenjl-lang-switch a.active {
  color: #120d04;
  background: linear-gradient(135deg, var(--tenjl-gold), var(--tenjl-gold-2));
}

.tenjl-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--tenjl-border);
  border-radius: var(--tenjl-radius);
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}

.tenjl-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--tenjl-gold-2);
}

.tenjl-hero,
.tenjl-page-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 54px;
}

.tenjl-hero::before,
.tenjl-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(214, 168, 79, .07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(214, 168, 79, .05) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: .28;
  pointer-events: none;
}

.tenjl-hero-grid,
.tenjl-page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 36px;
  align-items: center;
}

.tenjl-hero-routes-first {
  padding-top: 42px;
}

.tenjl-hero-routes-first .tenjl-hero-grid {
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
}

.tenjl-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid var(--tenjl-border);
  border-radius: 999px;
  background: rgba(214, 168, 79, .08);
  color: var(--tenjl-gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tenjl-hero h1,
.tenjl-page-hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--tenjl-text);
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
}

.tenjl-page-hero h1 {
  font-size: clamp(34px, 5vw, 60px);
}

.tenjl-hero p,
.tenjl-page-hero p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--tenjl-muted);
  font-size: 17px;
}

.tenjl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.tenjl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: var(--tenjl-radius);
  font-weight: 950;
  line-height: 1.2;
}

.tenjl-btn-primary {
  color: #120d04;
  background: linear-gradient(135deg, var(--tenjl-gold), var(--tenjl-gold-2));
  box-shadow: 0 14px 34px rgba(214, 168, 79, .25);
}

.tenjl-btn-ghost {
  border: 1px solid var(--tenjl-border);
  color: var(--tenjl-text);
  background: rgba(255, 255, 255, .04);
}

.tenjl-hero-media,
.tenjl-page-media {
  border: 1px solid var(--tenjl-border);
  border-radius: var(--tenjl-radius);
  background: linear-gradient(145deg, rgba(214, 168, 79, .14), rgba(255, 255, 255, .03));
  box-shadow: var(--tenjl-shadow);
  overflow: hidden;
}

.tenjl-hero-media img,
.tenjl-page-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tenjl-hero-route-panel {
  position: relative;
  z-index: 2;
  padding: 18px;
  border: 1px solid var(--tenjl-border-strong);
  border-radius: var(--tenjl-radius);
  background:
    linear-gradient(145deg, rgba(214, 168, 79, .15), rgba(255, 255, 255, .035)),
    rgba(10, 10, 10, .92);
  box-shadow: var(--tenjl-shadow);
}

.tenjl-route-panel-head {
  margin-bottom: 14px;
}

.tenjl-route-panel-head span {
  display: inline-flex;
  margin-bottom: 7px;
  color: var(--tenjl-gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tenjl-route-panel-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.tenjl-route-panel-head p {
  margin: 8px 0 0;
  color: var(--tenjl-muted);
  font-size: 14px;
}

.tenjl-hero-route-list {
  display: grid;
  gap: 12px;
}

.tenjl-hero-route-card {
  padding: 16px;
  border: 1px solid var(--tenjl-border);
  border-radius: var(--tenjl-radius);
  background:
    radial-gradient(circle at right top, rgba(245, 214, 123, .14), transparent 34%),
    rgba(14, 14, 14, .96);
}

.tenjl-route-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--tenjl-muted);
  font-size: 13px;
  font-weight: 900;
}

.tenjl-route-top strong {
  color: var(--tenjl-gold-2);
}

.tenjl-route-main {
  margin: 12px 0 8px;
}

.tenjl-route-main h3,
.tenjl-route-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.tenjl-route-domain {
  margin: 4px 0 0;
  color: var(--tenjl-gold-2);
  font-size: 17px;
  font-weight: 950;
  word-break: break-word;
}

.tenjl-route-desc,
.tenjl-hero-route-card p {
  margin: 0;
  color: var(--tenjl-muted);
  font-size: 14px;
}

.tenjl-hero-route-card a {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
  padding: 11px 14px;
  border-radius: var(--tenjl-radius);
  color: #120d04;
  background: linear-gradient(135deg, var(--tenjl-gold), var(--tenjl-gold-2));
  font-weight: 950;
}

.tenjl-hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 24px;
}

.tenjl-section {
  padding: 58px 0;
}

.tenjl-section-head {
  max-width: 780px;
  margin-bottom: 24px;
}

.tenjl-section-head h2,
.tenjl-content-block h2,
.tenjl-policy-card h2 {
  margin: 0;
  color: var(--tenjl-text);
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.12;
}

.tenjl-section-head p,
.tenjl-content-block p,
.tenjl-policy-card p {
  margin: 12px 0 0;
  color: var(--tenjl-muted);
}

.tenjl-routes-section {
  background: linear-gradient(180deg, rgba(214, 168, 79, .06), rgba(255, 255, 255, .02));
  border-top: 1px solid rgba(214, 168, 79, .12);
  border-bottom: 1px solid rgba(214, 168, 79, .12);
}

.tenjl-route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tenjl-route-card,
.tenjl-info-card,
.tenjl-policy-card,
.tenjl-faq-card,
.tenjl-feature-grid article,
.tenjl-step-grid article,
.tenjl-status-grid article,
.tenjl-hero-mini-grid article,
.tenjl-content-block {
  border: 1px solid var(--tenjl-border);
  border-radius: var(--tenjl-radius);
  background:
    linear-gradient(145deg, rgba(214, 168, 79, .09), rgba(255, 255, 255, .025)),
    var(--tenjl-card);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}

.tenjl-route-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.tenjl-route-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(245, 214, 123, .12);
}

.tenjl-route-card > * {
  position: relative;
  z-index: 1;
}

.tenjl-route-card h3 {
  margin-top: 22px;
  font-size: 25px;
}

.tenjl-route-card p {
  margin: 8px 0 0;
  color: var(--tenjl-muted);
}

.tenjl-route-card a {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: var(--tenjl-radius);
  color: #120d04;
  background: linear-gradient(135deg, var(--tenjl-gold), var(--tenjl-gold-2));
  font-weight: 950;
}

.tenjl-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tenjl-game-card {
  overflow: hidden;
  border: 1px solid var(--tenjl-border);
  border-radius: var(--tenjl-radius);
  background: var(--tenjl-card);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}

.tenjl-game-card img {
  width: 100%;
  aspect-ratio: 10 / 7;
  object-fit: cover;
}

.tenjl-game-card div {
  padding: 16px;
}

.tenjl-game-card h3 {
  margin: 0;
  font-size: 20px;
}

.tenjl-game-card p {
  margin: 8px 0 14px;
  color: var(--tenjl-muted);
  font-size: 14px;
}

.tenjl-game-card a,
.tenjl-feature-grid a,
.tenjl-text-link {
  color: var(--tenjl-gold-2);
  font-weight: 950;
}

.tenjl-feature-band {
  background: rgba(255, 255, 255, .025);
}

.tenjl-feature-grid,
.tenjl-status-grid,
.tenjl-step-grid {
  display: grid;
  gap: 18px;
}

.tenjl-feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tenjl-feature-grid-6 {
  grid-template-columns: repeat(3, 1fr);
}

.tenjl-status-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tenjl-step-grid {
  grid-template-columns: repeat(4, 1fr);
}

.tenjl-feature-grid article,
.tenjl-status-grid article,
.tenjl-step-grid article,
.tenjl-hero-mini-grid article {
  padding: 18px;
}

.tenjl-card-number,
.tenjl-status-grid span,
.tenjl-hero-mini-grid strong {
  display: inline-flex;
  color: var(--tenjl-gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.tenjl-step-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #120d04;
  background: linear-gradient(135deg, var(--tenjl-gold), var(--tenjl-gold-2));
  font-size: 14px;
  font-weight: 950;
}

.tenjl-feature-grid h3,
.tenjl-status-grid h2,
.tenjl-step-grid h3,
.tenjl-hero-mini-grid h2 {
  margin: 9px 0 0;
  font-size: 20px;
  line-height: 1.2;
}

.tenjl-feature-grid p,
.tenjl-status-grid p,
.tenjl-step-grid p,
.tenjl-hero-mini-grid p {
  margin: 8px 0 0;
  color: var(--tenjl-muted);
  font-size: 14px;
}

.tenjl-split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.tenjl-content-block {
  padding: 24px;
}

.tenjl-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.tenjl-policy-card {
  padding: 24px;
}

.tenjl-faq-list {
  display: grid;
  gap: 14px;
}

.tenjl-faq-card {
  padding: 20px;
}

.tenjl-faq-card h3 {
  margin: 0;
  font-size: 21px;
}

.tenjl-faq-card p {
  margin: 9px 0 0;
  color: var(--tenjl-muted);
}

.tenjl-footer {
  padding: 56px 0 26px;
  border-top: 1px solid var(--tenjl-border);
  background: #050505;
}

.tenjl-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 28px;
}

.tenjl-footer-brand img {
  width: 142px;
  margin-bottom: 14px;
}

.tenjl-footer-brand p {
  margin: 0;
  max-width: 680px;
  color: var(--tenjl-muted);
  font-size: 14px;
}

.tenjl-footer-panel {
  padding: 18px;
  border: 1px solid rgba(214, 168, 79, .14);
  border-radius: var(--tenjl-radius);
  background: rgba(255, 255, 255, .025);
}

.tenjl-footer-panel h2 {
  margin: 0 0 12px;
  font-size: 17px;
}

.tenjl-footer-links {
  display: grid;
  gap: 8px;
}

.tenjl-footer-links a {
  color: var(--tenjl-muted);
  font-size: 14px;
  line-height: 1.4;
}

.tenjl-footer-links a:hover {
  color: var(--tenjl-gold-2);
}

.tenjl-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(214, 168, 79, .14);
  color: var(--tenjl-muted);
  font-size: 13px;
}

.tenjl-float-right {
  position: fixed;
  right: 14px;
  bottom: 112px;
  z-index: 950;
  display: grid;
  gap: 9px;
}

.tenjl-float-right a,
.tenjl-float-right button {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--tenjl-border);
  border-radius: 50%;
  background: rgba(5, 5, 5, .86);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .38);
  cursor: pointer;
  overflow: hidden;
}

.tenjl-float-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tenjl-bottom-entry {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 940;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.tenjl-bottom-entry a {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: min(520px, calc(100% - 32px));
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(245, 214, 123, .5);
  border-radius: var(--tenjl-radius);
  color: #130d03;
  background: linear-gradient(135deg, #8f631a, #f5d67b, #b98524);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
  font-weight: 950;
}

.tenjl-bottom-entry img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
}

.tenjl-error-card {
  min-height: 320px;
  display: grid;
  place-items: center;
  border: 1px solid var(--tenjl-border);
  border-radius: var(--tenjl-radius);
  background:
    radial-gradient(circle at center, rgba(245, 214, 123, .18), transparent 48%),
    var(--tenjl-card);
  box-shadow: var(--tenjl-shadow);
}

.tenjl-error-card strong {
  display: block;
  font-size: clamp(82px, 12vw, 160px);
  line-height: 1;
  color: var(--tenjl-gold-2);
}

.tenjl-error-card span {
  margin-top: -70px;
  color: var(--tenjl-muted);
  font-weight: 950;
}

@media (max-width: 1100px) {
  .tenjl-nav a {
    padding: 9px 8px;
    font-size: 13px;
  }

  .tenjl-brand img {
    width: 126px;
  }
}

@media (max-width: 980px) {
  .tenjl-menu-toggle {
    display: block;
  }

  .tenjl-nav {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--tenjl-border);
    border-radius: var(--tenjl-radius);
    background: rgba(5, 5, 5, .97);
    box-shadow: var(--tenjl-shadow);
  }

  body.tenjl-menu-open .tenjl-nav {
    display: flex;
  }

  .tenjl-nav a {
    padding: 13px 14px;
    font-size: 15px;
  }

  .tenjl-hero-grid,
  .tenjl-page-hero-grid,
  .tenjl-footer-grid,
  .tenjl-split-grid {
    grid-template-columns: 1fr;
  }

  .tenjl-hero-routes-first {
    padding-top: 28px;
  }

  .tenjl-hero-routes-first .tenjl-hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .tenjl-hero-route-panel {
    order: -1;
  }

  .tenjl-hero-copy {
    order: 2;
  }

  .tenjl-route-grid,
  .tenjl-feature-grid,
  .tenjl-feature-grid-6,
  .tenjl-status-grid,
  .tenjl-step-grid,
  .tenjl-policy-grid,
  .tenjl-hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .tenjl-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tenjl-hero,
  .tenjl-page-hero {
    padding-top: 54px;
  }
}

@media (max-width: 640px) {
  body.tenjl-site {
    padding-bottom: 78px;
  }

  .tenjl-container {
    width: min(100% - 24px, 1160px);
  }

  .tenjl-header-inner {
    min-height: 68px;
    gap: 10px;
  }

  .tenjl-brand img {
    width: 116px;
  }

  .tenjl-nav {
    top: 68px;
    left: 12px;
    right: 12px;
  }

  .tenjl-lang-switch a {
    padding: 5px 7px;
  }

  .tenjl-hero,
  .tenjl-page-hero {
    padding: 34px 0 38px;
  }

  .tenjl-hero-routes-first {
    padding-top: 18px;
  }

  .tenjl-hero h1,
  .tenjl-page-hero h1 {
    font-size: 34px;
  }

  .tenjl-hero p,
  .tenjl-page-hero p {
    font-size: 15px;
  }

  .tenjl-hero-route-panel {
    padding: 12px;
  }

  .tenjl-route-panel-head h2 {
    font-size: 24px;
  }

  .tenjl-hero-route-card {
    padding: 13px;
  }

  .tenjl-route-main h3 {
    font-size: 20px;
  }

  .tenjl-route-domain {
    font-size: 16px;
  }

  .tenjl-hero-route-card a {
    min-height: 44px;
  }

  .tenjl-card-grid {
    grid-template-columns: 1fr;
  }

  .tenjl-section {
    padding: 42px 0;
  }

  .tenjl-float-right {
    right: 10px;
    bottom: 96px;
  }

  .tenjl-float-right a,
  .tenjl-float-right button {
    width: 42px;
    height: 42px;
  }

  .tenjl-footer-bottom {
    flex-direction: column;
  }

  .tenjl-bottom-entry a {
    min-width: calc(100% - 24px);
    padding: 8px 12px;
  }

  .tenjl-bottom-entry img {
    width: 34px;
    height: 34px;
  }
}
.tenjl-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 22px;
  align-items: start;
}

.tenjl-footer-links a {
  color: var(--tenjl-muted);
  font-size: 14px;
  line-height: 1.35;
}

.tenjl-footer-panel {
  padding: 18px;
  min-height: auto;
}
.tenjl-footer-disclaimer {
  margin-top: 10px !important;
  color: rgba(245, 214, 123, .82) !important;
  font-size: 13px !important;
}

.tenjl-footer-grid {
  grid-template-columns: 1.35fr .8fr .8fr;
  gap: 22px;
  align-items: start;
}

.tenjl-footer-links {
  display: grid;
  gap: 7px;
}

.tenjl-footer-links a {
  font-size: 14px;
  line-height: 1.35;
}

.tenjl-footer-panel {
  padding: 18px;
}

@media (max-width: 980px) {
  .tenjl-footer-grid {
    grid-template-columns: 1fr;
  }
}
.tenjl-header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.tenjl-brand img {
  width: 132px;
  height: auto;
}

.tenjl-nav {
  margin-left: 0;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tenjl-nav a {
  padding: 9px 10px;
  border-radius: 999px;
  color: var(--tenjl-muted);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.tenjl-nav a:hover,
.tenjl-nav a.active {
  color: #120d04;
  background: linear-gradient(135deg, var(--tenjl-gold), var(--tenjl-gold-2));
}

.tenjl-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tenjl-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px;
  border: 1px solid var(--tenjl-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
}

.tenjl-lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 34px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--tenjl-muted);
  font-size: 12px;
  font-weight: 950;
}

.tenjl-lang-switch a.active {
  color: #120d04;
  background: linear-gradient(135deg, var(--tenjl-gold), var(--tenjl-gold-2));
}

.tenjl-flag {
  display: inline-flex;
  font-size: 16px;
  line-height: 1;
}

.tenjl-header-route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #120d04;
  background: linear-gradient(135deg, var(--tenjl-gold), var(--tenjl-gold-2));
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(214, 168, 79, .18);
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .tenjl-header-inner {
    grid-template-columns: auto auto;
  }

  .tenjl-nav {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--tenjl-border);
    border-radius: var(--tenjl-radius);
    background: rgba(5, 5, 5, .97);
    box-shadow: var(--tenjl-shadow);
  }

  body.tenjl-menu-open .tenjl-nav {
    display: flex;
  }

  .tenjl-nav a {
    border-radius: var(--tenjl-radius);
    padding: 13px 14px;
    font-size: 15px;
  }

  .tenjl-header-actions {
    justify-self: end;
  }

  .tenjl-menu-toggle {
    display: inline-block;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .tenjl-header-inner {
    min-height: 68px;
    gap: 8px;
  }

  .tenjl-brand img {
    width: 112px;
  }

  .tenjl-nav {
    top: 68px;
    left: 12px;
    right: 12px;
  }

  .tenjl-header-route {
    display: none;
  }

  .tenjl-lang-switch {
    gap: 3px;
    padding: 3px;
  }

  .tenjl-lang-switch a {
    min-height: 32px;
    padding: 5px 7px;
    font-size: 11px;
  }

  .tenjl-flag {
    font-size: 15px;
  }

  .tenjl-menu-toggle {
    width: 40px;
    height: 40px;
  }
}