:root {
  color-scheme: dark;
  --bg: #080604;
  --panel: rgba(24, 17, 11, 0.94);
  --panel-soft: rgba(255, 255, 255, 0.035);
  --gold: #e4b84a;
  --gold-light: #ffe7a5;
  --text: #eee5d8;
  --muted: #c7bcae;
  --line: rgba(228, 184, 74, 0.28);
  --danger: #e36b6b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 0, rgba(132, 72, 18, 0.2), transparent 34rem),
    linear-gradient(180deg, #120c07 0, var(--bg) 42rem);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

a {
  color: var(--gold-light);
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  color: #fff4cc;
}

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

.site-wrapper {
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(100% - 2rem, 1040px);
  margin-inline: auto;
}

.hdcontainer {
  padding-top: 1rem;
}

.header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 104px;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(44, 27, 13, 0.96), rgba(13, 9, 6, 0.96));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.logo {
  flex: 0 0 82px;
}

.logo img {
  width: 82px;
  filter: drop-shadow(0 6px 18px rgba(228, 184, 74, 0.2));
}

.slogan {
  color: var(--gold);
  font-size: clamp(0.78rem, 2vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.slogan2 {
  margin-left: auto;
  width: min(40%, 360px);
}

.slogan3 {
  position: relative;
}

.slogan3_img {
  width: 100%;
  opacity: 0.84;
}

.slogan_hyperlink {
  position: absolute;
  inset: 0;
}

main {
  position: relative;
  padding: 1.5rem 0 3rem;
}

.middle {
  display: flex;
  justify-content: center;
  padding: 0.65rem 0 1.6rem;
}

.middle_top,
.playweb-wrap,
.playweb-button {
  width: 100%;
}

.playweb-wrap {
  max-width: 650px;
  margin-inline: auto;
}

.btn_playweb {
  display: block;
  border-radius: 999px;
  transition: transform 180ms ease, filter 180ms ease;
}

.btn_playweb:hover,
.btn_playweb:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.btn_playweb img:nth-child(2) {
  display: none;
}

.content {
  margin: 0 auto;
  padding: clamp(1.15rem, 3.5vw, 2.35rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.3);
}

.content > :first-child {
  margin-top: 0;
}

.content > :last-child {
  margin-bottom: 0;
}

.content h1,
.content h2,
.content h3 {
  line-height: 1.3;
  text-wrap: balance;
}

.content h1 {
  margin: 0 0 1.25rem;
  color: var(--gold-light);
  font-size: clamp(1.75rem, 4.2vw, 2.65rem);
}

.content h2 {
  margin: 2.2rem 0 0.8rem;
  color: var(--gold);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
}

.content h3 {
  margin: 1.55rem 0 0.45rem;
  color: #f2d893;
  font-size: 1.08rem;
}

.content p {
  margin: 0.65rem 0 1rem;
}

.content ul,
.content ol {
  margin: 0.65rem 0 1.25rem;
  padding-left: 1.45rem;
}

.content li {
  margin: 0.38rem 0;
}

.content strong {
  color: #fff0c1;
}

.editorial-note,
.safety-note,
.alert-note {
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(228, 184, 74, 0.09);
}

.alert-note {
  border-left-color: var(--danger);
  background: rgba(227, 107, 107, 0.08);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1rem 0 1.5rem;
}

.quick-links a {
  display: block;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel-soft);
  color: var(--muted);
  text-decoration: none;
}

.quick-links a strong {
  color: var(--gold-light);
}

.quick-links a:hover,
.quick-links a:focus-visible {
  border-color: var(--gold);
  background: rgba(228, 184, 74, 0.08);
}

.section_left {
  position: fixed;
  z-index: 8;
  top: 145px;
  left: max(0.75rem, calc(50vw - 760px));
  width: 185px;
}

.section_left .banner {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #160e08;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.4);
}

.banner_lbl {
  padding: 0.45rem 0.35rem;
  color: var(--gold-light);
  font-size: 0.66rem;
  text-align: center;
  overflow-wrap: anywhere;
}

.social_icon {
  color: inherit;
  text-decoration: none;
}

.section_right {
  position: fixed;
  z-index: 8;
  top: 180px;
  right: max(0.75rem, calc(50vw - 760px));
}

.section_right .ftbtn {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: center;
}

.section_right .ftbtn img {
  width: 46px;
}

.section_right .eventlivechat img {
  width: 150px;
  margin-top: 0.65rem;
}

.subcontainer {
  max-width: 920px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  list-style: none;
}

.breadcrumb li + li::before {
  margin-right: 0.45rem;
  color: var(--gold);
  content: "/";
}

.livechat-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.3rem;
  border: 1px solid #f2d893;
  border-radius: 999px;
  background: linear-gradient(180deg, #f2cd68, #b67c14);
  color: #170f07;
  font-weight: 800;
  text-decoration: none;
}

footer {
  border-top: 1px solid var(--line);
  background: #070503;
}

.ftnavtop {
  padding: 1rem;
  border-bottom: 1px solid rgba(228, 184, 74, 0.14);
}

.ftnavtop_lst {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ftnavtop_lst a {
  color: var(--gold-light);
  font-size: 0.92rem;
}

.ftrow {
  display: grid;
  grid-template-columns: 1.25fr 1.5fr 0.8fr;
  gap: 1.5rem;
  padding: 2rem 0;
}

.ftlogo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.ftlogo > img {
  width: 76px;
}

.ftlogo_txt {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.ftlogo_txt span {
  display: block;
  color: var(--gold-light);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

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

.ftcol_nav_lbl,
.ftlbl {
  margin-bottom: 0.55rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ftcol_nav_lbl {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ftcol_nav_lbl img {
  width: 16px;
}

.ftcol_nav_lst {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ftcol_nav_lst li {
  margin: 0.3rem 0;
}

.ftcol_nav_lst a {
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: none;
}

.ftcol_two .ftbtn {
  display: flex;
  gap: 0.55rem;
}

.ftcol_two .ftbtn img {
  width: 38px;
}

.ftchat {
  display: inline-flex;
  margin-top: 0.7rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.82rem;
  text-decoration: none;
}

.ftchatmb {
  display: none;
}

.ft_bottom {
  padding: 1.2rem 0 1.7rem;
  border-top: 1px solid rgba(228, 184, 74, 0.14);
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.ft_bottom p {
  margin: 0.25rem 0;
}

@media (max-width: 1440px) {
  .section_left,
  .section_right {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 1rem, 1040px);
  }

  .header {
    min-height: 82px;
    padding: 0.6rem 0.75rem;
    border-radius: 12px;
  }

  .logo {
    flex-basis: 62px;
  }

  .logo img {
    width: 62px;
  }

  .slogan2 {
    width: 42%;
  }

  main {
    padding-top: 0.8rem;
  }

  .middle {
    padding-bottom: 1rem;
  }

  .btn_playweb img:nth-child(1) {
    display: none;
  }

  .btn_playweb img:nth-child(2) {
    display: block;
  }

  .content {
    padding: 1.15rem;
    border-radius: 12px;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

  .ftrow {
    grid-template-columns: 1fr;
    padding: 1.35rem 0;
  }

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

  .ftlogo {
    justify-content: center;
  }

  .ftcol_two {
    text-align: center;
  }

  .ftcol_two .ftbtn {
    justify-content: center;
  }

  .ftchatpc {
    display: none;
  }

  .ftchatmb {
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 1.2rem;
  }
}

@media (max-width: 480px) {
  .slogan2 {
    display: none;
  }

  .slogan {
    margin-left: auto;
    text-align: right;
  }
}
