:root {
  color-scheme: dark;
  --bg: #071820;
  --panel: #102831;
  --ink: #f0f7f8;
  --muted: #b3c8cc;
  --line: #29434c;
  --accent: #8ce8d2;
  --gold: #f0c885
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.7 system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif
}

a {
  color: inherit;
  text-underline-offset: 5px
}

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

button {
  font: inherit
}

a:focus-visible,summary:focus-visible,button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 6px
}

.skip {
  position: absolute;
  top: -100px;
  padding: 12px;
  background: var(--ink);
  color: var(--bg);
  z-index: 20
}

.skip:focus {
  top: 0
}

.wrap {
  width: min(1180px,calc(100% - 64px));
  margin: auto
}

.site-header {
  border-bottom: 1px solid var(--line)
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 94px
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -.7px
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain
}

.brand small {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500
}

.site-nav {
  display: flex;
  gap: 27px;
  align-items: center
}

.site-nav a {
  text-decoration: none;
  font-size: 15px;
  color: var(--muted)
}

.site-nav a:hover,.site-nav a[aria-current=page] {
  color: var(--accent)
}

.menu {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  padding: 8px 14px
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px
}

h1,h2,h3 {
  line-height: 1.12;
  letter-spacing: -.04em;
  margin: 0 0 22px
}

h1 {
  font-size: clamp(40px,6vw,76px);
  font-weight: 650
}

h2 {
  font-size: clamp(28px,3.8vw,43px);
  font-weight: 600
}

h3 {
  font-size: 23px;
  letter-spacing: -.02em
}

p {
  margin: 0 0 22px;
  color: var(--muted)
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  padding: 74px 0 62px;
  align-items: center
}

.hero h1 em {
  font-style: normal;
  color: var(--accent)
}

.hero .lead {
  max-width: 550px;
  font-size: 19px
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background: var(--accent);
  color: #09242a;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 5px
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink)
}

.feature-art {
  background: #0c3540;
  border: 1px solid #35606a;
  border-radius: 12px;
  overflow: hidden;
  transform: rotate(1.5deg)
}

.feature-art img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover
}

.art-caption {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--accent)
}

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  color: var(--muted);
  font-size: 14px
}

.section {
  padding: 64px 0
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px
}

.section-head h2 {
  margin-bottom: 0
}

.text-link {
  color: var(--accent);
  font-size: 15px;
  white-space: nowrap
}

.grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 22px
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 26px
}

.card p {
  font-size: 16px;
  margin-bottom: 0
}

.card h3 a {
  text-decoration: none
}

.card h3 a:hover {
  color: var(--accent)
}

.card .number {
  display: block;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 26px
}

.card.game {
  padding: 0;
  overflow: hidden
}

.game img {
  width: 100%;
  height: 215px;
  object-fit: contain;
  padding: 22px;
  background: #123440
}

.game .card-body {
  padding: 24px
}

.game .tag {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px
}

.callout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 9px
}

.callout h2 {
  font-size: 30px;
  margin-bottom: 12px
}

.callout p {
  margin: 0
}

.page-head {
  padding: 56px 0 42px;
  max-width: 880px
}

.page-head h1 {
  font-size: clamp(38px,5vw,62px)
}

.page-head p {
  font-size: 19px
}

.breadcrumb {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 30px
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0,760px);
  gap: 65px;
  padding-bottom: 70px
}

.toc {
  border-top: 1px solid var(--line);
  padding-top: 20px
}

.toc strong {
  font-size: 14px;
  color: var(--accent)
}

.toc a {
  display: block;
  margin: 14px 0;
  font-size: 15px;
  text-decoration: none;
  color: var(--muted)
}

.article section {
  margin-bottom: 40px
}

.article h2 {
  font-size: 29px;
  letter-spacing: -.025em
}

.article li {
  color: var(--muted);
  margin-bottom: 12px
}

.article ul,.article ol {
  padding-left: 24px
}

.article .story-image {
  width: 100%;
  border-radius: 8px;
  margin: 0 0 28px
}

.notice {
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  background: var(--panel);
  margin: 26px 0
}

.notice p:last-child {
  margin: 0
}

details {
  border-bottom: 1px solid var(--line);
  padding: 21px 0
}

summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4
}

details p {
  margin-top: 18px;
  max-width: 760px
}

.faq-list {
  padding-bottom: 70px;
  max-width: 880px
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 24px
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 35px
}

.footer-top p {
  max-width: 470px;
  font-size: 14px
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px
}

.copyright {
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 22px
}

.article a {
  color: var(--accent)
}

@media(max-width:850px) {
  .hero {
    gap: 30px
  }

  .site-nav {
    gap: 16px
  }

  .grid {
    grid-template-columns: repeat(2,minmax(0,1fr))
  }

  .article-layout {
    grid-template-columns: 170px minmax(0,1fr);
    gap: 30px
  }

}

@media(max-width:640px) {
  .wrap {
    width: calc(100% - 36px)
  }

  .header-row {
    min-height: 80px;
    flex-wrap: wrap;
    padding: 14px 0;
    gap: 14px
  }

  .brand {
    font-size: 21px
  }

  .menu {
    display: block
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    padding: 8px 0;
    gap: 18px
  }

  .js .site-nav {
    display: none
  }

  .js .site-nav.open {
    display: flex
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 42px 0;
    gap: 35px
  }

  .hero h1 {
    font-size: 48px
  }

  .feature-art {
    transform: none
  }

  .strip {
    flex-wrap: wrap;
    justify-content: start;
    gap: 8px 22px
  }

  .section {
    padding: 42px 0
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 12px
  }

  .grid {
    grid-template-columns: 1fr
  }

  .callout {
    grid-template-columns: 1fr;
    padding: 26px
  }

  .page-head {
    padding-top: 36px
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .toc {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px
  }

  .toc strong {
    width: 100%
  }

  .toc a {
    margin: 0
  }

  .footer-top {
    flex-direction: column;
    gap: 12px
  }

  .game {
    display: grid;
    grid-template-columns: 115px 1fr
  }

  .game img {
    height: 100%;
    min-height: 180px;
    padding: 12px
  }

  .game .card-body {
    padding: 20px
  }

  .game h3 {
    font-size: 21px
  }

  .game p {
    font-size: 15px
  }

  .art-caption {
    padding: 16px;
    font-size: 13px
  }

}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

}

.brand img {
  width: 64px;
  height: 64px
}

.header-row {
  min-height: 108px
}

.directory-title {
  font-size: 25px;
  letter-spacing: -.025em
}

.directory-title a {
  text-decoration: none
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 8px;
  margin: 0;
  padding: 0
}

.breadcrumb li+li:before {
  content: "/";
  margin-right: 8px;
  color: #829ca5
}

.breadcrumb li[aria-current] {
  color: var(--ink)
}

.related-pages {
  border-top: 1px solid var(--line);
  padding: 34px 0 56px
}

.related-pages h2 {
  font-size: 27px
}

.related-pages>div {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px
}

.related-pages a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px
}

.related-pages a:hover {
  background: var(--panel);
  color: var(--accent)
}

.site-footer {
  padding-bottom: 115px
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  border: 0;
  padding: 0;
  max-width: calc(100vw - 36px)
}

.floating-contact summary {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  background: var(--accent);
  color: #08252c;
  font-size: 16px;
  font-weight: 750;
  border: 1px solid #a4f2df;
  border-radius: 40px;
  padding: 14px 21px;
  box-shadow: 0 5px 26px #0007;
  min-height: 52px
}

.floating-contact summary::-webkit-details-marker {
  display: none
}

.floating-contact[open] summary span {
  transform: rotate(45deg)
}

.floating-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: 284px;
  max-width: calc(100vw - 36px);
  max-height: calc(100dvh - 130px);
  overflow-y: auto;
  background: #112c36;
  border: 1px solid #416671;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 8px 35px #0008
}

.floating-panel p {
  font-size: 14px;
  margin: 5px 8px 10px;
  color: var(--muted)
}

.floating-panel>a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 8px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px
}

.floating-panel>a:hover {
  background: #1c4350
}

.contact-symbol {
  width: 34px;
  height: 34px;
  border: 1px solid #5f8996;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 13px;
  flex-shrink: 0
}

.floating-panel small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin: 12px 8px 4px
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
  margin-bottom: 24px
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  padding: 16px;
  text-decoration: none;
  border-radius: 8px;
  min-height: 72px
}

.contact-card:hover {
  background: var(--panel)
}

@media(max-width:640px) {
  .brand img {
    width: 58px;
    height: 58px
  }

  .header-row {
    min-height: 90px
  }

  .related-pages>div,.contact-cards {
    grid-template-columns: 1fr
  }

  .floating-contact {
    right: 18px;
    bottom: max(16px,env(safe-area-inset-bottom))
  }

  .floating-contact summary {
    font-size: 15px;
    padding: 13px 18px
  }

  .site-footer {
    padding-bottom: 110px
  }

}

:root {
  --bg: #071329;
  --panel: #102340;
  --ink: #f4f7fc;
  --muted: #c5d1e3;
  --line: #314764;
  --accent: #ffd96e;
  --gold: #ffd96e
}

body {
  background: radial-gradient(ellipse at 90% 0,#173e5c 0,transparent 800px),var(--bg)
}

.wrap {
  width: min(1260px,calc(100% - 120px))
}

.header-row {
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px 0
}

.brand {
  color: var(--accent);
  font-size: 29px
}

.brand img {
  width: 78px;
  height: 78px
}

.brand small {
  color: #d4e5f5;
  letter-spacing: 1.2px
}

.site-nav {
  flex-wrap: wrap;
  gap: 9px
}

.site-nav a {
  border: 1px solid #50617a;
  background: #ffffff08;
  color: #eff4fb;
  border-radius: 30px;
  padding: 9px 15px;
  font-weight: 600;
  font-size: 15px
}

.site-nav a:hover,.site-nav a[aria-current=page] {
  background: var(--accent);
  color: #101e34;
  border-color: var(--accent)
}

.home-hero {
  display: grid;
  grid-template-columns: 1.45fr .8fr;
  gap: 70px;
  padding: 70px 0;
  align-items: center
}

.home-hero h1 {
  font-size: clamp(38px,4.6vw,65px)
}

.home-hero h1 span {
  color: var(--accent)
}

.hero-intro {
  font-size: 21px
}

.brand-panel {
  background: linear-gradient(145deg,#21415e,#11243f);
  border: 1px solid #55708a;
  border-radius: 26px;
  padding: 36px;
  text-align: center
}

.brand-panel img {
  width: 132px;
  height: auto;
  margin: 0 auto 22px
}

.brand-panel h2 {
  font-size: 29px
}

.brand-panel a {
  color: var(--accent)
}

.home-section {
  padding: 48px 0;
  border-top: 1px solid var(--line)
}

.home-section>h2 {
  font-size: 37px;
  color: var(--accent);
  margin-bottom: 24px
}

.home-section>p {
  max-width: 1030px;
  font-size: 18px
}

.info-grid {
  display: grid;
  gap: 22px
}

.info-grid.four {
  grid-template-columns: repeat(4,minmax(0,1fr))
}

.info-grid.three {
  grid-template-columns: repeat(3,minmax(0,1fr))
}

.info-card {
  border: 1px solid var(--line);
  background: linear-gradient(135deg,#142b49,#0c1a31);
  border-radius: 18px;
  padding: 27px
}

.info-card h3 {
  font-size: 23px;
  line-height: 1.3
}

.info-card h3 a {
  text-decoration: none
}

.info-card p {
  font-size: 16px
}

.info-card p:last-child {
  margin-bottom: 0
}

.site-facts {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 22px;
  margin: 18px 0 44px
}

.site-facts>div {
  border: 1px solid #536078;
  border-radius: 18px;
  text-align: center;
  padding: 30px 16px;
  background: #111f35
}

.site-facts strong {
  display: block;
  color: var(--accent);
  font-size: 42px;
  line-height: 1.2
}

.site-facts span {
  display: block;
  margin-top: 12px;
  font-size: 15px
}

.home-game-grid {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 18px
}

.home-game-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  padding: 18px;
  text-decoration: none
}

.home-game-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  margin: 0 0 18px
}

.home-game-item h3 {
  font-size: 20px;
  line-height: 1.25
}

.home-game-item p {
  font-size: 15px;
  line-height: 1.6
}

.home-game-item>span {
  color: var(--accent);
  font-size: 15px;
  font-weight: 700
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px
}

.two-columns li {
  color: var(--muted);
  margin: 12px 0
}

.kraken-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center
}

.kraken-feature img {
  width: 100%;
  height: auto!important;
  object-fit: contain;
  border-radius: 18px
}

.kraken-feature h2 {
  font-size: 36px;
  color: var(--accent)
}

.full-artwork {
  height: auto!important;
  aspect-ratio: auto!important;
  object-fit: contain!important
}

.home-faq {
  margin-bottom: 24px
}

.home-faq details p {
  max-width: 1000px
}

.game-detail {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 38px;
  padding: 35px 0;
  border-top: 1px solid var(--line);
  align-items: center
}

.game-detail img {
  width: 240px;
  height: auto
}

.game-detail h2 {
  font-size: 32px;
  color: var(--accent)
}

.article section {
  margin-bottom: 36px
}

.article h2 {
  color: var(--accent)
}

.article h3 {
  font-size: 22px
}

.article-layout {
  grid-template-columns: 230px minmax(0,830px);
  gap: 55px
}

.article p {
  font-size: 18px
}

.footer-directory {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 35px
}

.footer-directory h2 {
  font-size: 20px;
  letter-spacing: 0;
  color: var(--accent)
}

.footer-directory>div>a:not(.brand) {
  display: block;
  font-size: 15px;
  margin: 9px 0;
  text-decoration: none;
  color: var(--muted)
}

.footer-directory p {
  font-size: 15px;
  margin-top: 18px
}

.site-footer {
  background: #051023;
  padding-bottom: 32px
}

.support-rail {
  position: fixed;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 45;
  padding: 8px;
  background: #030b1ee8;
  border-radius: 20px
}

.support-rail>a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 13px;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  position: relative
}

.support-rail .tg {
  background: #1686b6
}

.support-rail .wa {
  background: #187c49
}

.support-rail .fb {
  background: #1268d3;
  font-size: 30px
}

.support-rail .chat {
  background: #7333c5;
  font-size: 13px
}

.support-rail .email {
  background: #a7650b
}

.rail-label {
  position: absolute;
  right: 54px;
  background: #fff;
  color: #10213a;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none
}

.support-rail a:hover .rail-label,.support-rail a:focus-visible .rail-label {
  opacity: 1
}

.floating-contact {
  display: none
}

.contact-symbol {
  color: #ffe193
}

.button {
  background: var(--accent);
  color: #11243a
}

.button.secondary {
  background: transparent;
  color: var(--ink)
}

@media(max-width:1050px) {
  .info-grid.four,.info-grid.three {
    grid-template-columns: repeat(2,minmax(0,1fr))
  }

  .home-game-grid {
    grid-template-columns: repeat(3,minmax(0,1fr))
  }

  .home-hero {
    gap: 30px
  }

  .footer-directory {
    grid-template-columns: repeat(2,minmax(0,1fr))
  }

  .article-layout {
    gap: 30px;
    grid-template-columns: 190px minmax(0,1fr)
  }

}

@media(max-width:700px) {
  .wrap {
    width: calc(100% - 36px)
  }

  .header-row {
    padding: 14px 0;
    gap: 12px
  }

  .brand {
    font-size: 25px
  }

  .brand img {
    width: 62px;
    height: 62px
  }

  .brand small {
    font-size: 11px
  }

  .menu {
    display: block
  }

  .js .site-nav {
    display: none
  }

  .js .site-nav.open {
    display: flex
  }

  .site-nav {
    width: 100%
  }

  .site-nav a {
    font-size: 14px;
    padding: 8px 12px
  }

  .home-hero {
    grid-template-columns: 1fr;
    padding: 35px 0;
    gap: 28px
  }

  .home-hero h1 {
    font-size: 40px
  }

  .hero-intro {
    font-size: 19px
  }

  .brand-panel {
    padding: 26px
  }

  .brand-panel img {
    width: 100px
  }

  .home-section {
    padding: 35px 0
  }

  .home-section>h2 {
    font-size: 29px
  }

  .info-grid.four,.info-grid.three,.two-columns,.kraken-feature {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .site-facts {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px
  }

  .site-facts strong {
    font-size: 34px
  }

  .home-game-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px
  }

  .home-game-item {
    padding: 14px
  }

  .home-game-item h3 {
    font-size: 19px
  }

  .home-game-item p {
    font-size: 15px
  }

  .footer-directory {
    grid-template-columns: 1fr 1fr;
    gap: 26px
  }

  .footer-directory>div:first-child {
    grid-column: 1/-1
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .game-detail {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .game-detail img {
    width: 180px;
    margin: auto
  }

  .support-rail {
    display: none
  }

  .floating-contact {
    display: block
  }

  .site-footer {
    padding-bottom: 110px
  }

  .article p {
    font-size: 17px
  }

}

@media(max-width:360px) {
  .home-game-grid,.footer-directory {
    grid-template-columns: 1fr
  }

  .home-hero h1 {
    font-size: 35px
  }

}

@media(max-height:500px) {
  .support-rail {
    gap: 4px;
    padding: 4px
  }

  .support-rail>a {
    width: 38px;
    height: 38px
  }

}