@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #030535;
  --hdr: #141f61;
  --btn-l: #141d5f;
  --btn-r: #449e66;
  --acc: #f0c040;
  --card: #0a0e4a;
  --card2: #0d1255;
  --txt: #e8eaf6;
  --mut: #9fa8da;
  --brd: #1e2d8a;
  --rad: 10px;
}

html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--txt);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
a {
  color: var(--acc);
  transition: color 0.25s;
}
a:hover {
  color: #fff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
}

.cw {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.sec {
  padding: 70px 0;
}
.sec-alt {
  background: #050840;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: 7px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
  line-height: 1;
}
.btn-l {
  background: var(--btn-l);
  color: #fff;
  border: 1px solid #2a3d9e;
}
.btn-l:hover {
  background: #1c2f88;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(20, 29, 95, 0.5);
}
.btn-r {
  background: var(--btn-r);
  color: #fff;
}
.btn-r:hover {
  background: #3a8a57;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(68, 158, 102, 0.45);
}
.btn-g {
  background: linear-gradient(135deg, #f0c040, #d4a800);
  color: #030535;
  font-weight: 800;
}
.btn-g:hover {
  background: linear-gradient(135deg, #ffd060, #f0c040);
  color: #030535;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(240, 192, 64, 0.4);
}
.btn-lg {
  padding: 14px 34px;
  font-size: 16px;
  border-radius: 8px;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

.stitle {
  text-align: center;
  margin-bottom: 40px;
}
.stitle h2 {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 10px;
}
.stitle h2 span {
  color: var(--acc);
}
.stitle p {
  color: var(--mut);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.stitle-ln {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--btn-r), var(--acc));
  border-radius: 2px;
  margin: 12px auto 0;
}

#hdr {
  background: var(--hdr);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.hdr-in {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}
.hdr-logo img {
  height: 48px;
  width: auto;
}
.hdr-nav {
  flex: 1;
}
.hdr-nav ul {
  display: flex;
  gap: 4px;
}
.hdr-nav ul li a {
  color: #b0bce8;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 11px;
  border-radius: 5px;
  transition: all 0.2s;
}
.hdr-nav ul li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.hdr-act {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hdr-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--mut);
  white-space: nowrap;
}
.hdr-dot {
  width: 7px;
  height: 7px;
  background: #44ee76;
  border-radius: 50%;
  animation: pdot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pdot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.35);
  }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 7px;
  border-radius: 5px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mob-nav {
  display: none;
  background: #0c144e;
  border-top: 1px solid var(--brd);
  padding: 12px 0;
}
.mob-nav.open {
  display: block;
}
.mob-nav ul {
  padding: 0 20px;
}
.mob-nav ul li a {
  display: block;
  color: #b0bce8;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s;
}
.mob-nav ul li a:hover {
  color: #fff;
}
.mob-nav-btns {
  display: flex;
  gap: 10px;
  padding: 14px 20px 4px;
}

#hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #030535 0%, #141f61 55%, #0a0e4a 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/bantype.png");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 0;
}
.hero-cnt {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(240, 192, 64, 0.12);
  border: 1px solid rgba(240, 192, 64, 0.35);
  color: var(--acc);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-cnt h1 {
  font-size: clamp(26px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.13;
  margin-bottom: 16px;
}
.hero-cnt h1 span {
  color: var(--acc);
}
.hero-cnt p {
  font-size: 18px;
  color: #b0bce8;
  margin-bottom: 30px;
  line-height: 1.6;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

#info-tbl {
  padding: 60px 0;
}
.tbl-sc {
  overflow-x: auto;
  border-radius: var(--rad);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
  -webkit-overflow-scrolling: touch;
}
table.ci {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--card);
}
table.ci tr:nth-child(odd) {
  background: var(--card2);
}
table.ci td {
  padding: 13px 20px;
  border-bottom: 1px solid rgba(30, 45, 138, 0.45);
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}
table.ci td:first-child {
  color: var(--mut);
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 32%;
  white-space: nowrap;
}
table.ci td:last-child {
  color: var(--txt);
}
table.ci tr:last-child td {
  border-bottom: none;
}
.tbg {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}
.tbg-g {
  background: rgba(68, 158, 102, 0.18);
  color: #6fcf97;
  border: 1px solid rgba(68, 158, 102, 0.35);
}
.tbg-a {
  background: rgba(240, 192, 64, 0.12);
  color: var(--acc);
  border: 1px solid rgba(240, 192, 64, 0.3);
}

#adv {
  padding: 70px 0;
}
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.adv-card {
  background: var(--card2);
  border: 1px solid var(--brd);
  border-radius: var(--rad);
  padding: 26px 22px;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.adv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--btn-r), var(--acc));
  opacity: 0;
  transition: opacity 0.3s;
}
.adv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
  border-color: #2d3ea8;
}
.adv-card:hover::before {
  opacity: 1;
}
.adv-ico {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(68, 158, 102, 0.2),
    rgba(20, 31, 97, 0.4)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.adv-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.adv-card p {
  font-size: 14px;
  color: var(--mut);
  line-height: 1.6;
}

#promo {
  padding: 70px 0;
  background: linear-gradient(180deg, #050840 0%, #030535 100%);
}
.promo-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.promo-card {
  background: linear-gradient(135deg, #0d1255, #141f61);
  border: 2px solid #2d3ea8;
  border-radius: 16px;
  padding: 40px 32px;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}
.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top right,
    rgba(240, 192, 64, 0.07),
    transparent 60%
  );
  pointer-events: none;
}
.promo-sts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.ps-on {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(68, 158, 102, 0.15);
  border: 1px solid rgba(68, 158, 102, 0.4);
  color: #6fcf97;
  padding: 4px 13px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.ps-on .adot {
  width: 7px;
  height: 7px;
  background: #6fcf97;
  border-radius: 50%;
  animation: pdot 1.5s infinite;
}
.ps-tm {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(229, 57, 53, 0.12);
  border: 1px solid rgba(229, 57, 53, 0.3);
  color: #ef9a9a;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.promo-box {
  background: #030535;
  border: 2px dashed #2d3ea8;
  border-radius: 10px;
  padding: 18px 26px;
  margin: 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.promo-val {
  font-family: "Montserrat", monospace;
  font-size: 30px;
  font-weight: 800;
  color: var(--acc);
  letter-spacing: 4px;
}
.promo-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.promo-btns .btn {
  padding: 12px 28px;
}
.promo-cp {
  display: none;
  color: #6fcf97;
  font-size: 13px;
  margin-top: 10px;
  font-weight: 600;
}
.promo-cp.show {
  display: block;
}
.promo-desc {
  margin-top: 18px;
  font-size: 14px;
  color: var(--mut);
  line-height: 1.6;
}
.promo-desc strong {
  color: var(--acc);
}

#tourn {
  padding: 70px 0;
}
.tourn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tc {
  background: var(--card2);
  border: 1px solid var(--brd);
  border-radius: 14px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.tc:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
.tc-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #ff6b35, #e53935);
  color: #fff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
.tc-prize {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--acc);
  margin: 10px 0;
}
.tc h3 {
  font-size: 17px;
  margin-bottom: 7px;
  padding-right: 70px;
}
.tc-desc {
  color: var(--mut);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 14px;
}
.tc-timer {
  display: flex;
  gap: 8px;
  margin: 14px 0;
}
.tunit {
  text-align: center;
  background: rgba(3, 5, 53, 0.8);
  border: 1px solid var(--brd);
  border-radius: 7px;
  padding: 7px 10px;
  min-width: 50px;
}
.tunit .tn {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
}
.tunit .tl {
  font-size: 9px;
  color: var(--mut);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tc .btn {
  margin-top: 6px;
}
.tourn-sw {
  display: none;
}
.tsw-in {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.tsw-in::-webkit-scrollbar {
  height: 3px;
}
.tsw-in::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}
.tsw-in::-webkit-scrollbar-thumb {
  background: var(--brd);
  border-radius: 2px;
}
.tsw-in .tc {
  min-width: 290px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

#video {
  padding: 70px 0;
  background: #050840;
}
.vid-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  max-width: 880px;
  margin: 0 auto;
}
.vid-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 14px;
}

#slot {
  padding: 70px 0;
}
.slot-m {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.slot-reels {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 28px 0;
}
.reel {
  width: 100px;
  height: 100px;
  background: #0d1255;
  border: 2px solid #2d3ea8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #fff;
  overflow: hidden;
  box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.4);
  user-select: none;
}
.reel.spinning {
  animation: rspin 0.09s linear infinite;
}
@keyframes rspin {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
.slot-win {
  display: none;
  background: linear-gradient(
    135deg,
    rgba(68, 158, 102, 0.12),
    rgba(240, 192, 64, 0.08)
  );
  border: 2px solid var(--btn-r);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 16px 0;
  animation: fup 0.4s ease;
}
.slot-win.show {
  display: block;
}
.slot-win h3 {
  color: var(--btn-r);
  font-size: 20px;
  margin-bottom: 8px;
}
.slot-win p {
  color: var(--mut);
  font-size: 14px;
  margin-bottom: 14px;
}
.slot-lose {
  display: none;
  color: var(--mut);
  font-size: 15px;
  margin: 18px 0;
  animation: fin 0.3s ease;
}
.slot-lose.show {
  display: block;
}

#faq {
  padding: 70px 0;
  background: #050840;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--card2);
  border: 1px solid var(--brd);
  border-radius: var(--rad);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  transition: background 0.2s;
  gap: 12px;
}
.faq-q:hover {
  background: rgba(255, 255, 255, 0.04);
}
.faq-ico {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--brd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--mut);
  transition: transform 0.3s;
}
.faq-item.open .faq-ico {
  transform: rotate(45deg);
  border-color: var(--btn-r);
  color: var(--btn-r);
}
.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--mut);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  display: block;
}

#review-cnt {
  padding: 70px 0;
}
.auth-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card2);
  border: 1px solid var(--brd);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 28px;
}
.auth-ava {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--btn-l), var(--btn-r));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  flex-shrink: 0;
}
.auth-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}
.auth-bio {
  font-size: 13px;
  color: var(--mut);
  line-height: 1.45;
}
.auth-bio a {
  color: var(--mut);
  text-decoration: underline;
}
.rev-body {
  max-width: 860px;
  margin: 0 auto;
}
.rev-body h1,
.rev-body h2,
.rev-body h3,
.rev-body h4 {
  margin: 26px 0 12px;
  color: #fff;
}
.rev-body p {
  margin-bottom: 15px;
  color: #d0d5f0;
  line-height: 1.75;
}
.rev-body ul,
.rev-body ol {
  margin: 14px 0 14px 24px;
}
.rev-body ul {
  list-style: disc;
}
.rev-body ol {
  list-style: decimal;
}
.rev-body li {
  margin-bottom: 8px;
  color: #d0d5f0;
}
.rev-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  overflow-x: auto;
  display: block;
}
.rev-body table td,
.rev-body table th {
  padding: 10px 14px;
  border: 1px solid var(--brd);
  text-align: left;
}
.rev-body table th {
  background: var(--card2);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
.rev-body table tr:nth-child(even) td {
  background: rgba(13, 18, 85, 0.4);
}
.rev-body a {
  color: var(--acc);
  text-decoration: underline;
}
.rev-body strong,
.rev-body b {
  color: #fff;
}
.rev-body blockquote {
  border-left: 3px solid var(--btn-r);
  padding: 12px 18px;
  background: rgba(68, 158, 102, 0.05);
  border-radius: 0 8px 8px 0;
  margin: 18px 0;
  color: #b0bce8;
  font-style: italic;
}
.rev-body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 14px 0;
}
.rev-body hr {
  border: none;
  border-top: 1px solid var(--brd);
  margin: 22px 0;
}

#reviews {
  padding: 70px 0;
  background: #050840;
}
.revs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
  margin-bottom: 48px;
}
.rv {
  background: var(--card2);
  border: 1px solid var(--brd);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s;
}
.rv:hover {
  transform: translateY(-3px);
}
.rv-hd {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.rv-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  flex-shrink: 0;
}
.rv-nm {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.rv-st {
  margin-top: 3px;
  display: flex;
  gap: 2px;
}
.rv-st svg {
  fill: var(--acc);
}
.rv-tx {
  font-size: 14px;
  color: var(--mut);
  line-height: 1.6;
}
.rv-dt {
  font-size: 12px;
  color: #4a5899;
  margin-top: 10px;
}

.rfm {
  max-width: 580px;
  margin: 0 auto;
  background: var(--card2);
  border: 1px solid var(--brd);
  border-radius: 14px;
  padding: 30px;
}
.rfm h3 {
  font-size: 20px;
  margin-bottom: 22px;
  text-align: center;
}
.fld {
  margin-bottom: 16px;
}
.fld label {
  display: block;
  font-size: 12px;
  color: var(--mut);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.fld input,
.fld textarea {
  width: 100%;
  background: #030535;
  border: 1px solid var(--brd);
  border-radius: 7px;
  padding: 11px 15px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  transition: border-color 0.2s;
  outline: none;
}
.fld input:focus,
.fld textarea:focus {
  border-color: var(--btn-r);
}
.fld textarea {
  min-height: 100px;
  resize: vertical;
}
.fok {
  display: none;
  background: rgba(68, 158, 102, 0.1);
  border: 1px solid rgba(68, 158, 102, 0.4);
  color: #6fcf97;
  padding: 13px 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  margin-top: 14px;
  animation: fin 0.3s ease;
}
.fok.show {
  display: block;
}

#ftr {
  background: var(--hdr);
  padding: 48px 0 0;
}
.ftr-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ftrlc img {
  height: 42px;
  margin-bottom: 13px;
}
.ftrlc p {
  font-size: 13px;
  color: var(--mut);
  line-height: 1.6;
  max-width: 250px;
}
.ftr-ct {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7986cb;
  margin-bottom: 14px;
}
.ftr-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ftr-nav ul li a {
  color: var(--mut);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.ftr-nav ul li a:hover {
  color: #fff;
}
.ftr-prov {
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.chip {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #9fa8da;
}
.ftr-bot {
  padding: 20px 0;
  text-align: center;
}
.ftr-bot p {
  font-size: 12px;
  color: #4a5899;
  line-height: 1.65;
}
.ftr-legal {
  font-size: 11px;
  color: #353d76;
  margin-top: 8px;
}

#widget {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 998;
  width: calc(100% - 36px);
  max-width: 480px;
  background: linear-gradient(135deg, #141f61, #0a0e4a);
  border: 1px solid #2d3ea8;
  border-radius: 14px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
  animation: wslide 0.5s ease 2s both;
}
@keyframes wslide {
  from {
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
.wt {
  flex: 1;
}
.wt span {
  display: block;
  font-size: 11px;
  color: var(--mut);
  font-family: "Montserrat", sans-serif;
}
.wt strong {
  display: block;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 700;
}
.wb {
  color: var(--acc);
  font-size: 17px;
  font-weight: 800;
}
#widget a {
  text-decoration: none;
}
.wcl {
  background: none;
  border: none;
  color: #4a5899;
  cursor: pointer;
  padding: 4px;
  font-size: 18px;
  transition: color 0.2s;
  flex-shrink: 0;
  line-height: 1;
}
.wcl:hover {
  color: #fff;
}

@keyframes fin {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fup {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ai {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.ai.vis {
  opacity: 1;
  transform: translateY(0);
}

.wp-block-group,
.elementor-element,
.wp-container-1,
.entry-content,
.site-main {
  display: block;
}
#wpadminbar {
  display: none !important;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.wp-image-56324,
.wp-image-56325,
.wp-image-56326 {
  display: none;
}
.yoast-seo-breadcrumb {
  display: none;
}
.x7q2-unused {
  display: none;
  visibility: hidden;
}
.b4f9-ghost {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.m3k1-dummy {
  height: 0;
  width: 0;
  overflow: hidden;
}
.r8k4-noop {
  border: 0;
  background: none;
  padding: 0;
}
.n2m6-void {
  max-height: 0;
  overflow: hidden;
}
.q4p7-fc {
  font-size: 0;
  line-height: 0;
}
.z9v3-pl {
  display: table;
  width: 0;
  height: 0;
}
.w6f1-nl {
  text-decoration: none;
  color: inherit;
  cursor: default;
}
.t5x8-es {
  display: inline-block;
  width: 0;
  height: 0;
}
.k9r2-blk {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
}
.p7v4-wr {
  border-collapse: separate;
  empty-cells: show;
}
.j3m8-sp {
  letter-spacing: 0;
  word-spacing: 0;
}

@media (max-width: 992px) {
  .hdr-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .ftr-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .tourn-grid {
    display: none;
  }
  .tourn-sw {
    display: block;
  }
}
@media (max-width: 768px) {
  .sec {
    padding: 50px 0;
  }
  .hero-cnt {
    padding: 56px 0;
  }
  .ftr-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .promo-box {
    flex-direction: column;
    gap: 10px;
  }
  .promo-val {
    font-size: 24px;
  }
  .reel {
    width: 82px;
    height: 82px;
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
  }
  .hdr-act .btn-l {
    display: none;
  }
  .hdr-online {
    display: none;
  }
  .promo-val {
    font-size: 20px;
    letter-spacing: 2px;
  }
}
