* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --blue: #0068e8;
  --blue2: #0b7cff;
  --deep: #004fc6;
  --text: #07306f;
  --muted: #6e8099;
  --line: #c7e5ff;
  --bg: #edf6ff;
  --card: rgba(255, 255, 255, 0.88);
  --shadow: 0 10px 28px rgba(27, 108, 205, 0.16);
  --radius: 14px;
  --wrap: 1100px;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Be Vietnam Pro", Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 8% 8%,
      rgba(153, 211, 255, 0.32),
      transparent 280px
    ),
    linear-gradient(180deg, #f5fbff 0%, #edf6ff 42%, #eaf3fb 100%);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button,
input {
  font: inherit;
}
.page-wrap {
  width: min(var(--wrap), calc(100% - 28px));
  margin-inline: auto;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

/* HEADER GIỐNG BẢN ĐẦU */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  box-shadow: 0 3px 12px rgba(0, 61, 160, 0.12);
  border-top: 8px solid #5b4324;
}
.top-strip {
  width: min(1600px, calc(100% - 24px));
  min-height: 94px;
  margin: auto;
  display: grid;
  grid-template-columns: 128px 250px 320px 1fr auto;
  gap: 18px;
  align-items: center;
  background:
    radial-gradient(circle at 20% 40%, rgba(255, 227, 173, 0.5), transparent 180px),
    linear-gradient(90deg, rgba(191, 227, 255, 0.26), rgba(255, 247, 232, 0.86) 38%, rgba(205, 232, 255, 0.5));
  border-bottom: 2px solid #d2e8ff;
}
.strip-left {
  height: 48px;
  display: grid;
  place-items: center;
  gap: 0;
  padding: 0 10px;
  font-weight: 900;
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
  border-radius: 24px;
  background: linear-gradient(180deg, #1e87ff, #0058dd);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.22), 0 8px 18px rgba(0, 87, 216, 0.18);
}
.strip-left strong {
  color: #ffea6a;
  font-size: 14px;
}
.hot-label {
  line-height: 1;
}
.brand-logo img {
  width: 230px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}
.brand-event {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.brand-event b {
  color: #7ac10d;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.55);
}
.brand-event span {
  color: #0a58cf;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.header-tools {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}
.header-tools a {
  display: grid;
  place-items: center;
  gap: 3px;
  color: #4a5f87;
  font-size: 15px;
  font-weight: 600;
}
.header-tools img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.header-clock {
  color: #334c74;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.auth-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn {
  height: 58px;
  border: none;
  border-radius: 30px;
  padding: 0 34px;
  font-size: 26px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #0f73f7, #0358db);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.06);
}
.btn-outline {
  color: #4a628d;
  background: linear-gradient(180deg, #eef6ff, #ddeafe);
  border: 2px solid #78b0ff;
}
.btn-register {
  min-width: 210px;
  padding-inline: 40px;
}
.btn-register em {
  position: absolute;
  top: -14px;
  right: 20px;
  min-width: 56px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff544f, #ffb000);
  color: #fff84f;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(255, 114, 65, 0.32);
}
.btn-trial {
  min-width: 170px;
  padding-inline: 26px;
}
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: #0a58cf;
  font-size: 28px;
  cursor: pointer;
}
.main-nav {
  min-height: 76px;
  background: linear-gradient(180deg, #edf3fb, #e8eef8);
  border-top: 1px solid #dce8f6;
  border-bottom: 1px solid #d3deee;
  display: flex;
  justify-content: center;
  gap: 14px;
  align-items: center;
  font-size: 18px;
  color: #445b86;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.main-nav a {
  position: relative;
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
}
.main-nav a.active,
.main-nav a:hover {
  color: var(--blue);
  font-weight: 800;
}
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #0d73f6, #005de3);
}

/* HERO FULL WIDTH NHƯ BAN ĐẦU */
.hero-area {
  position: relative;
  background: #e6f4ff;
}
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-slide {
  display: none;
}
.hero-slide.active {
  display: block;
  animation: fade 0.35s ease;
}
@keyframes fade {
  from {
    opacity: 0.45;
  }
  to {
    opacity: 1;
  }
}
.hero-slide img {
  width: 100%;
  height: 344px;
  object-fit: cover;
  object-position: center;
}
.hero-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: #005bd8;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}
.hero-btn.prev {
  left: 16px;
}
.hero-btn.next {
  right: 16px;
}
.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.slider-dots button {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}
.slider-dots button.active {
  background: #0068e8;
}

/* NOTICE */
.notice-bar {
  padding: 14px 0 6px;
  background: transparent;
}
.notice-card {
  min-height: 72px;
  display: grid;
  grid-template-columns: 74px auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.94));
  border: 1px solid #cbe2ff;
  box-shadow: 0 8px 20px rgba(0, 89, 216, 0.08);
}
.notice-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  justify-self: center;
}
.notice-label {
  color: #0d6cf0;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}
.notice-ticker {
  min-width: 0;
  overflow: hidden;
  position: relative;
}
.notice-track {
  display: inline-flex;
  align-items: center;
  gap: 42px;
  white-space: nowrap;
  color: #4e648d;
  font-size: 14px;
  font-weight: 600;
  padding-right: 42px;
  animation: notice-scroll 34s linear infinite;
}
.notice-all {
  min-width: 104px;
  height: 36px;
  padding: 0 18px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #0f7cff, #0059dd);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(0, 89, 216, 0.16);
}
@keyframes notice-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* SECTION COMMON */
.section {
  padding-top: 34px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  text-align: center;
  margin-bottom: 18px;
}
.section-heading > span {
  height: 1px;
  background: linear-gradient(90deg, transparent, #8bc9ff, transparent);
}
.section-heading h2 {
  color: #0065df;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.section-heading p {
  color: #7b8ca7;
  font-size: 15px;
  margin-top: 6px;
}

/* AMBASSADOR */
.ambassador-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 20px;
  align-items: center;
  padding: 22px;
  min-height: 520px;
}
.ambassador-left h3 {
  color: #005bd8;
  font-size: 16px;
  font-weight: 950;
  text-align: center;
  margin-bottom: 12px;
}
.ambassador-left img {
  height: 300px;
  width: 130%;
  object-fit: contain;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fcff, #eef8ff);
}
.video-box {
  height: 300px;
  border-radius: 9px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #70839a, #1f2c3d 75%);
  box-shadow: inset 0 -50px 60px rgba(0, 0, 0, 0.34);
}
.stadium {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, #fff 0 3px, transparent 4px),
    radial-gradient(circle at 44% 8%, #fff 0 3px, transparent 4px),
    radial-gradient(circle at 72% 19%, #fff 0 3px, transparent 4px),
    repeating-radial-gradient(
      ellipse at 50% 130%,
      transparent 0 18px,
      rgba(255, 255, 255, 0.08) 19px 20px
    );
}
.video-box button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0065df;
  font-size: 22px;
  cursor: pointer;
}
.video-control {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 12px;
}

/* CASINO */
.casino-card {
  overflow: hidden;
  min-height: 420px;
}
.casino-tabs {
  height: 45px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #dff0ff;
}
.casino-tabs button {
  border: none;
  background: transparent;
  color: #315171;
  font-size: 13px;
  font-weight: 850;
  border-right: 1px solid rgba(0, 112, 255, 0.08);
}
.casino-tabs .active {
  background: #fff;
  color: #005bd8;
}
.casino-body {
  min-height: 360px;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  padding: 20px 24px;
  background:
    radial-gradient(
      circle at 78% 48%,
      rgba(126, 203, 255, 0.45),
      transparent 200px
    ),
    linear-gradient(180deg, #fff, #eff8ff);
}
.casino-title {
  width: 240px;
  max-width: 100%;
  margin-bottom: 10px;
}
.casino-heading {
  margin-bottom: 10px;
}
.casino-kicker {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #dcecff;
  color: #005bd8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.casino-title-text {
  color: #16426c;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 10px;
}
.casino-copy {
  max-width: 420px;
  color: #526d8d;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.rebate {
  display: inline-block;
  color: #0066dd;
  background: #e7f4ff;
  border-radius: 16px;
  padding: 6px 13px;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 14px;
}
.rebate b {
  color: #0b75ff;
}
.providers {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.providers img {
  width: 48px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #d4eaff;
  padding: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.casino-visual {
  display: flex;
  justify-content: flex-end;
}
.casino-visual img {
  width: 340px;
  max-width: 100%;
  object-fit: contain;
}

/* JACKPOT */
.jackpot-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}
.jackpot-side {
  min-height: 560px;
  padding: 24px 18px 18px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.jackpot-side-left {
  background-image: url("../../q7sm4r.katawee.net/system-requirement/Web.PortalNew/UK255-01/e0e28cc470/images/a827bb79f73cd76e4b1dee6bbef5cf6e.png");
}
.jackpot-side-right {
  background-image: url("../../q7sm4r.katawee.net/system-requirement/Web.PortalNew/UK255-01/e0e28cc470/images/ab644b8e75acf74ad2d6b6ec2a08acd7.png");
}

.jackpot-side-title {
  display: none;
}
.jackpot-side-body {
  margin-top: 74px;
  min-height: 400px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 10px 14px;
  overflow: hidden;
}
.jackpot-side-body-left {
  margin-inline: 18px;
}
.jackpot-hot-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.jackpot-hot-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #7fb2ff;
}
.jackpot-hot-item:last-child {
  border-bottom: none;
}
.jackpot-hot-item img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 91, 216, 0.12);
}
.jackpot-hot-item strong {
  display: block;
  color: #ff8a00;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}
.jackpot-hot-item b {
  color: #ff9f17;
  font-size: 16px;
  font-weight: 700;
}
.jackpot-center {
  min-height: 560px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-top: 12px;
  overflow: hidden;
}
.jackpot-hero {
  width: min(100%, 800px);
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 0;
}
.jackpot-number {
  position: absolute;
  top: 188px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 2px;
  padding: 0;
  margin: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
  z-index: 3;
}
.jackpot-number span {
  width: 44px;
  height: 64px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fffef8, #fff0b9);
  color: #f24a1e;
  font-size: 42px;
  font-weight: 950;
  box-shadow:
    inset 0 -6px 0 rgba(203, 108, 0, 0.14),
    0 8px 18px rgba(190, 109, 0, 0.12);
}
.jackpot-number span:nth-child(4),
.jackpot-number span:nth-child(8) {
  width: 16px;
}
.jackpot-games-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 10px;
  margin-top: 138px;
}
.jackpot-arrow {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #0f79ff, #005bde);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(0, 91, 216, 0.18);
}
.jackpot-games-rail {
  width: 100%;
  overflow: hidden;
  padding: 8px 0 4px;
}
.jackpot-games-track {
  display: inline-flex;
  gap: 20px;
  align-items: stretch;
  white-space: nowrap;
  animation: jackpot-games-scroll 22s linear infinite;
}
.jackpot-game-card {
  width: 154px;
  flex: 0 0 auto;
  padding: 8px 8px 12px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
  border: 3px solid #d89d20;
  box-shadow: 0 10px 20px rgba(0, 91, 216, 0.08);
}
.jackpot-game-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 8px;
}
.jackpot-game-card p {
  color: #005de3;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
  white-space: normal;
}
.jackpot-breakers {
  position: relative;
  height: 422px;
  overflow: hidden;
}
.jackpot-breakers-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: jackpot-breakers-scroll 16s linear infinite;
}
.jackpot-breaker-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #7fb2ff;
}
.jackpot-breaker-item img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid #ffd76a;
}
.jackpot-breaker-item strong {
  display: block;
  color: #435b80;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
}
.jackpot-breaker-item span {
  display: block;
  color: #5d7292;
  font-size: 15px;
  line-height: 1.35;
  margin-bottom: 4px;
}
.jackpot-breaker-item b {
  color: #ff9c14;
  font-size: 16px;
  font-weight: 800;
}
@keyframes jackpot-breakers-scroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes jackpot-games-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* GAMES */
.game-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 7px;
  margin-bottom: 18px;
}
.game-tabs button {
  border: none;
  height: 31px;
  min-width: 96px;
  border-radius: 17px;
  color: #426080;
  background: #dcecff;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.game-tabs .active {
  color: #fff;
  background: linear-gradient(180deg, #1e86ff, #0064e7);
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.game-grid article {
  text-align: center;
}
.game-grid img {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 9px;
  border: 4px solid #f1c95d;
  box-shadow: 0 8px 16px rgba(0, 88, 200, 0.16);
}
.game-grid p {
  min-height: 28px;
  padding: 0 8px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #385b80;
  background: #dcecff;
  font-size: 12px;
  line-height: 1.2;
}

/* TABLE */
.table-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}
.table-tabs button {
  width: 190px;
  height: 36px;
  border: none;
  border-radius: 20px;
  color: #315171;
  font-weight: 850;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 91, 216, 0.08);
}
.table-tabs .active {
  color: #fff;
  background: linear-gradient(180deg, #0b78ff, #0058df);
}
.bet-card {
  overflow: hidden;
  padding: 12px 0;
  min-height: 360px;
}
.bet-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.bet-card th {
  color: #58708e;
  font-weight: 850;
  padding: 12px;
}
.bet-card td {
  padding: 10px 12px;
  border-top: 1px solid #e1efff;
  color: #263d5e;
}
.bet-card td:first-child:before {
  content: "";
  width: 26px;
  height: 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1c3455, #ffc531);
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
.bet-card td:last-child {
  text-align: right;
  color: #006bdd;
  font-weight: 700;
}
.bet-card td.positive {
  color: #006bdd;
}
.bet-card td.negative {
  color: #df4a4a;
}

/* APP */
.app-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}
.app-phones {
  min-height: 420px;
  display: grid;
  place-items: center;
}
.app-phones img {
  width: 390px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(0, 70, 170, 0.14));
}
.download-card {
  padding: 28px 20px;
  text-align: center;
  min-height: 420px;
}
.download-card p {
  color: #516b8d;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.5;
}
.os-row {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-bottom: 20px;
}
.os-row img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin: 0 auto 7px;
}
.os-row b {
  display: block;
  color: #516b8d;
  font-size: 18px;
  margin-bottom: 8px;
}
.os-row button {
  border: none;
  height: 28px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(180deg, #0c78ff, #005be0);
  border-radius: 16px;
  font-weight: 850;
}
.gift-block {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  text-align: left;
  border: 1px dashed #9fd2ff;
  border-radius: 16px;
  padding: 12px;
  background: #f8fcff;
}
.gift-block img {
  width: 120px;
  height: 132px;
  object-fit: contain;
}
.gift-block h3 {
  color: #0065df;
  font-size: 18px;
  margin-bottom: 5px;
}
.gift-block p {
  margin: 0;
  font-size: 13px;
}

/* FOOTER */
.footer {
  margin-top: 58px;
  background: #20283b;
  color: #d6deed;
  padding: 28px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}
.footer-logo img {
  height: 54px;
  object-fit: contain;
  margin-bottom: 8px;
}
.footer p {
  color: #bac5d8;
  line-height: 1.6;
  font-size: 12px;
}
.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  color: #dce5f2;
  font-size: 13px;
}

/* AUTH MODAL GIỐNG LÚC ĐẦU */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 26, 0.62);
  z-index: 100;
  display: none;
  place-items: center;
  padding: 16px;
}
.auth-overlay.show {
  display: grid;
}
.auth-modal {
  position: relative;
  width: min(900px, 92vw);
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  border-radius: 36px;
  background: linear-gradient(135deg, #fff, #eef8ff);
  box-shadow: 0 24px 64px rgba(0, 20, 70, 0.32);
}
.modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: #fff;
  color: #555;
  font-size: 28px;
  line-height: 30px;
  cursor: pointer;
  z-index: 3;
}
.modal-left {
  position: relative;
  padding: 36px 24px 28px;
  text-align: center;
  overflow: hidden;
}
.modal-left:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to top, #e9f7ff, transparent);
}
.modal-logo {
  width: 300px;
  max-width: 88%;
  margin: 0 auto;
}
.modal-left h3 {
  margin-top: 10px;
  color: #0066dd;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 950;
}
.modal-people {
  position: relative;
  z-index: 2;
  height: 200px;
  margin: 20px auto 10px;
  display: grid;
  place-items: end center;
}
.modal-people img {
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 12px rgba(0, 91, 216, 0.16));
}
.modal-name-row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 14px;
  align-items: center;
  color: #0068e8;
  font-size: 17px;
  font-weight: 950;
}
.modal-name-row i {
  width: 2px;
  height: 32px;
  background: #0068e8;
}
.modal-right {
  margin: 32px 28px;
  padding: 22px 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, #e9f6ff, #e1f1ff);
  box-shadow:
    inset 0 0 28px #fff,
    0 14px 38px rgba(0, 83, 160, 0.14);
}
.auth-tabs {
  height: 50px;
  padding: 3px;
  border-radius: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #d6e8fb;
  margin-bottom: 18px;
}
.auth-tabs button {
  border: none;
  border-radius: 24px;
  background: transparent;
  color: #2a8bea;
  font-size: 19px;
  font-weight: 950;
  cursor: pointer;
}
.auth-tabs .active {
  color: #fff;
  background: linear-gradient(180deg, #0877f5, #0057d8);
  box-shadow: 0 4px 0 #20a7ff;
}
.field-wrap {
  position: relative;
  margin-bottom: 10px;
}
.modal-right input {
  width: 100%;
  height: 50px;
  margin-bottom: 0;
  border-radius: 9px;
  border: 1px solid #73baff;
  background: #fff;
  outline: none;
  padding: 0 20px;
  color: #333;
  font-size: 18px;
  box-shadow: inset 0 2px 6px rgba(0, 64, 150, 0.1);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.modal-right input.is-valid {
  border-color: #21a55a;
  background: #f6fff9;
}
.modal-right input.is-invalid {
  border-color: #df4a4a;
  background: #fff7f7;
}
.modal-right small {
  display: none;
  margin: 5px 0 0 6px;
  color: #5d7b9b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}
.modal-right small.show {
  display: block;
}
.modal-right small.hint-error {
  color: #df4a4a;
}
.modal-right small.hint-ok {
  color: #21a55a;
}
.pass-wrap input {
  padding-right: 62px;
}
.pass-toggle {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dcecff;
  color: #0068e8;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}
.phone-input {
  height: 50px;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 108px 1fr;
  border: 1px solid #73baff;
  border-radius: 9px;
  background: #fff;
  overflow: hidden;
  box-shadow: inset 0 2px 6px rgba(0, 64, 150, 0.1);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.phone-input b {
  display: grid;
  place-items: center;
  color: #8a94a5;
  border-right: 2px solid #d6deea;
  font-size: 16px;
}
.phone-input input {
  margin: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.phone-input.is-valid {
  border-color: #21a55a;
  background: #f6fff9;
}
.phone-input.is-invalid {
  border-color: #df4a4a;
  background: #fff7f7;
}
.modal-right label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333;
  font-size: 16px;
  margin: 3px 0 16px 6px;
}
.modal-right label input {
  width: 16px;
  height: 16px;
  margin: 0;
}
.modal-right label a {
  color: #1685ff;
  text-decoration: underline;
}
.submit-auth {
  position: relative;
  display: block;
  margin: 0 auto 24px;
  width: 240px;
  height: 56px;
  border: none;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(180deg, #0877f5, #0054d6);
  font-size: 21px;
  font-weight: 950;
  cursor: pointer;
  box-shadow:
    0 4px 0 #20a7ff,
    0 8px 18px rgba(0, 70, 190, 0.3);
}
.submit-auth:disabled {
  cursor: not-allowed;
  opacity: 0.85;
}
.submit-auth span {
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  min-width: 128px;
  height: 24px;
  border-radius: 12px;
  background: linear-gradient(180deg, #b71919, #7e0808);
  color: #ffd65e;
  display: grid;
  place-items: center;
  font-size: 13px;
}
.toast-msg {
  min-height: 24px;
  margin: -10px 0 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    color 0.2s ease;
}
.toast-msg.show {
  opacity: 1;
}
.toast-success {
  color: #1d9950;
}
.toast-error {
  color: #df4a4a;
}
.spinner {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 8px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  vertical-align: -2px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.agent-box {
  height: 110px;
  border-radius: 20px;
  border: 1px solid #65b7ff;
  background:
    radial-gradient(circle at 78% 45%, #fff, transparent 35%),
    linear-gradient(135deg, #ecf8ff, #fff 50%, #d7efff);
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 10px;
  align-items: center;
  text-align: center;
  color: #0068e8;
  overflow: hidden;
  padding: 8px 14px;
}
.agent-box b {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}
.agent-box strong {
  display: block;
  font-size: 22px;
  line-height: 1.25;
}
.agent-box img {
  height: 96px;
  object-fit: contain;
}

.mobile-tabbar {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .top-strip {
    grid-template-columns: 170px 150px 1fr auto auto;
  }
  .brand-logo img {
    width: 150px;
  }
  .header-tools {
    gap: 18px;
  }
  .jackpot-layout {
    grid-template-columns: 190px 1fr 190px;
  }
}
@media (max-width: 860px) {
  body {
    padding-bottom: 66px;
  }
  .notice-card {
    grid-template-columns: 52px 1fr auto;
    gap: 10px;
    padding: 10px 12px;
  }
  .notice-icon {
    width: 38px;
    height: 38px;
  }
  .notice-label {
    grid-column: 2 / 4;
    font-size: 15px;
  }
  .notice-ticker {
    grid-column: 2 / 4;
  }
  .notice-track {
    gap: 28px;
    font-size: 13px;
  }
  .notice-all {
    grid-row: 1;
    grid-column: 3;
    min-width: 82px;
    height: 32px;
    padding: 0 14px;
    font-size: 13px;
  }
  .top-strip {
    min-height: 84px;
    padding: 10px 0 8px;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo menu"
      "auth auth";
    gap: 10px 12px;
  }
  .strip-left,
  .brand-event,
  .header-tools,
  .header-clock {
    display: none;
  }
  .brand-logo {
    grid-area: logo;
    align-self: center;
  }
  .brand-logo img {
    width: 152px;
    height: 46px;
    object-position: left center;
  }
  .header-right {
    grid-area: auth;
    align-items: stretch;
    gap: 0;
  }
  .auth-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .auth-actions .btn-trial {
    display: none;
  }
  .auth-actions .btn {
    height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(0, 87, 216, 0.14);
  }
  .auth-actions .btn-primary {
    background: linear-gradient(180deg, #0f84ff, #005de0);
    box-shadow:
      0 5px 0 rgba(0, 88, 195, 0.16),
      0 10px 18px rgba(0, 87, 216, 0.18);
  }
  .auth-actions .btn-outline {
    color: #005bd8;
    background: linear-gradient(180deg, #ffffff, #eef6ff);
    border: 2px solid #7cbcff;
  }
  .btn-register {
    min-width: 0;
    padding-inline: 14px;
  }
  .btn-register em {
    top: -8px;
    right: 12px;
    min-width: 42px;
    height: 20px;
    font-size: 9px;
  }
  .menu-toggle {
    display: block;
    grid-area: menu;
    align-self: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(180deg, #edf5ff, #dcecff);
    border: 1px solid #b9d8ff;
    color: #0b67e6;
    font-size: 24px;
    box-shadow: 0 8px 18px rgba(0, 89, 216, 0.12);
  }
  .main-nav {
    display: none;
    width: min(100%, calc(100vw - 24px));
    margin: 6px auto 0;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 0;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #d9eaff;
    border-radius: 20px;
    box-shadow: 0 18px 34px rgba(0, 72, 170, 0.14);
    overflow: hidden;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    min-height: 0;
    padding: 14px 18px;
    border-top: 1px solid #e6f3ff;
    font-size: 16px;
    font-weight: 700;
    justify-content: flex-start;
    line-height: 1.2;
    white-space: normal;
  }
  .main-nav a:first-child {
    border-top: none;
  }
  .main-nav a.active::after {
    left: 18px;
    right: auto;
    width: 44px;
    bottom: 0;
  }
  .hero-slide img {
    height: auto;
    aspect-ratio: 1920/450;
  }
  .section-heading h2 {
    font-size: 23px;
  }
  .ambassador-card,
  .casino-body,
  .jackpot-layout,
  .app-layout,
  .footer-grid,
  .auth-modal {
    grid-template-columns: 1fr;
  }
  .ambassador-card,
  .casino-card,
  .rank-card,
  .bet-card,
  .download-card {
    min-height: auto;
  }
  .video-box {
    height: 175px;
  }
  .casino-body,
  .jackpot-center,
  .app-phones {
    min-height: auto;
  }
  .jackpot-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .jackpot-side {
    min-height: auto;
    padding: 18px 10px 12px;
    background-size: 100% 100%;
  }
  .jackpot-side-body {
    min-height: auto;
    margin-top: 58px;
  }
  .jackpot-breakers {
    height: 390px;
  }
  .jackpot-side-body-left {
    margin-inline: 10px;
  }
  .jackpot-center {
    padding-top: 8px;
    order: -1;
  }
  .jackpot-hero {
    width: min(100%, 430px);
  }
  .jackpot-number {
    top: 142px;
    margin: 0;
  }
  .jackpot-number span {
    width: 30px;
    height: 44px;
    font-size: 26px;
  }
  .jackpot-number span:nth-child(4),
  .jackpot-number span:nth-child(8) {
    width: 12px;
  }
  .jackpot-games-wrap {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 92px;
  }
  .jackpot-arrow {
    display: none;
  }
  .jackpot-games-rail {
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .jackpot-games-track {
    animation: none;
    gap: 12px;
    padding-inline: 2px;
  }
  .jackpot-game-card {
    width: 104px;
  }
  .jackpot-game-card p {
    font-size: 12px;
  }
  .casino-tabs {
    display: flex;
    overflow-x: auto;
  }
  .casino-tabs button {
    min-width: 96px;
  }
  .casino-body {
    text-align: center;
  }
  .casino-title {
    margin-inline: auto;
  }
  .providers {
    justify-content: center;
  }
  .casino-visual {
    justify-content: center;
  }
  .rank-card {
    width: min(330px, 100%);
    margin-inline: auto;
  }
  .game-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .bet-card {
    overflow-x: auto;
  }
  .bet-card table {
    min-width: 650px;
  }
  .footer-links {
    justify-content: flex-start;
  }
  .auth-overlay {
    padding: 14px 12px 78px;
  }
  .auth-modal {
    width: min(430px, calc(100vw - 24px));
    min-height: auto;
    max-height: calc(100vh - 96px);
    border-radius: 30px;
    overflow: auto;
    grid-template-columns: 1fr;
  }
  .modal-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 22px 14px;
    border-bottom: 1px solid #d8ebff;
    background: linear-gradient(180deg, #f7fbff, #e9f5ff);
  }
  .modal-left:after {
    display: none;
  }
  .modal-logo {
    width: 176px;
    max-width: 68%;
    margin: 0 auto 10px;
  }
  .modal-left h3 {
    margin-top: 0;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    text-align: center;
  }
  .modal-people,
  .modal-name-row {
    display: none;
  }
  .modal-right {
    margin: 0;
    border-radius: 0;
    padding: 18px 20px 24px;
    background: linear-gradient(180deg, #eaf5ff 0%, #dbeeff 100%);
  }
  .modal-right form {
    width: 100%;
  }
  .auth-tabs {
    height: 56px;
    padding: 5px;
    margin-bottom: 16px;
    border-radius: 999px;
  }
  .auth-tabs button {
    font-size: 17px;
  }
  .field-wrap {
    margin-bottom: 14px;
  }
  .modal-right input,
  .phone-input {
    height: 54px;
    font-size: 16px;
    border-radius: 16px;
  }
  .modal-right input {
    padding-left: 18px;
    padding-right: 50px;
  }
  .phone-input {
    grid-template-columns: 92px 1fr;
    border-radius: 16px;
  }
  .phone-input b {
    font-size: 14px;
  }
  .pass-toggle {
    top: 13px;
    right: 14px;
  }
  .modal-right small {
    margin: 8px 4px 0;
    font-size: 13px;
    line-height: 1.38;
    text-align: left;
  }
  .modal-right label {
    margin: 2px 4px 16px;
    font-size: 15px;
    line-height: 1.35;
    align-items: center;
  }
  .submit-auth {
    width: 100%;
    max-width: none;
    height: 58px;
    margin: 2px auto 24px;
    font-size: 20px;
    box-shadow:
      0 6px 0 #20a7ff,
      0 14px 24px rgba(0, 70, 190, 0.22);
  }
  .submit-auth span {
    min-width: 144px;
    bottom: -12px;
  }
  .toast-msg {
    margin: -4px 0 12px;
  }
  .agent-box {
    height: auto;
    grid-template-columns: 1fr 88px;
    gap: 12px;
    padding: 14px 14px 12px;
    border-radius: 20px;
    text-align: left;
  }
  .agent-box b,
  .agent-box strong {
    font-size: 18px;
    line-height: 1.15;
  }
  .agent-box img {
    height: 76px;
    justify-self: end;
  }
  .mobile-tabbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid #cbe5ff;
    box-shadow: 0 -8px 20px rgba(0, 72, 170, 0.14);
  }
  .mobile-tabbar a {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    color: #355878;
    font-size: 11px;
    font-weight: 850;
  }
  .mobile-tabbar i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #dcecff;
    color: #0068e8;
    font-style: normal;
  }
}
@media (max-width: 520px) {
  .page-wrap {
    width: calc(100% - 22px);
  }
  .notice-bar {
    padding-top: 10px;
  }
  .notice-card {
    grid-template-columns: 38px 1fr;
    gap: 8px 10px;
    padding: 10px;
  }
  .notice-icon {
    width: 32px;
    height: 32px;
  }
  .notice-label {
    grid-column: 2;
    font-size: 14px;
  }
  .notice-ticker {
    grid-column: 1 / -1;
  }
  .notice-track {
    font-size: 12px;
  }
  .notice-all {
    grid-column: 2;
    justify-self: end;
    min-width: 74px;
    height: 30px;
    font-size: 12px;
  }
  .section-heading {
    grid-template-columns: 32px 1fr 32px;
    gap: 8px;
  }
  .section-heading h2 {
    font-size: 20px;
  }
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .game-grid img {
    width: 96px;
    height: 96px;
  }
  .jackpot-number span {
    width: 22px;
    height: 34px;
    font-size: 19px;
  }
  .jackpot-number span:nth-child(4),
  .jackpot-number span:nth-child(8) {
    width: 10px;
  }
  .jackpot-side {
    padding: 16px 8px 12px;
  }
  .jackpot-breakers {
    height: 330px;
  }
  .jackpot-side-body {
    margin-top: 52px;
  }
  .jackpot-hot-item,
  .jackpot-breaker-item {
    grid-template-columns: 56px 1fr;
    gap: 10px;
  }
  .jackpot-hot-item img,
  .jackpot-breaker-item img {
    width: 52px;
    height: 52px;
  }
  .jackpot-hot-item strong,
  .jackpot-breaker-item strong {
    font-size: 15px;
  }
  .jackpot-hot-item b,
  .jackpot-breaker-item b {
    font-size: 14px;
  }
  .jackpot-breaker-item span {
    font-size: 13px;
  }
  .jackpot-game-card {
    width: 86px;
    border-radius: 20px;
  }
  .jackpot-game-card p {
    font-size: 10px;
  }
  .os-row {
    gap: 24px;
  }
  .gift-block {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .gift-block img {
    margin: auto;
  }
  .modal-close {
    right: 6px;
    top: 6px;
    width: 36px;
    height: 36px;
    border-width: 2px;
    font-size: 26px;
  }
  .auth-overlay {
    padding: 12px 8px 74px;
  }
  .auth-modal {
    width: calc(100vw - 16px);
    border-radius: 26px;
    max-height: calc(100vh - 86px);
  }
  .modal-left {
    padding: 18px 14px 10px;
  }
  .modal-logo {
    width: 154px;
    max-width: 72%;
  }
  .modal-left h3 {
    font-size: 14px;
  }
  .modal-right {
    padding: 16px 14px 22px;
  }
  .auth-tabs {
    height: 52px;
  }
  .auth-tabs button {
    font-size: 16px;
  }
  .modal-right input,
  .phone-input {
    height: 52px;
    font-size: 15px;
  }
  .phone-input {
    grid-template-columns: 86px 1fr;
  }
  .modal-right label {
    font-size: 14px;
  }
  .submit-auth {
    height: 56px;
    font-size: 19px;
  }
  .agent-box {
    grid-template-columns: 1fr 78px;
    padding: 12px;
  }
  .agent-box b,
  .agent-box strong {
    font-size: 17px;
  }
  .agent-box img {
    height: 68px;
  }
}

.wrapper {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  height: 100%;
  font-family: "SFProDisplay-Regular";
}
.header-top {
  position: relative;
  height: 110px;
  background: url("_%40assets/images/shared/header/header_top_bg.html") repeat-x
    center/contain;
}
.header-top > .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.header-bottom {
  height: 80px;
  background: url("_%40assets/images/shared/header/header_bottom_bg.html") repeat-x
    center/contain;
}
.header-bottom > .wrapper {
  position: unset;
}
.logo {
  position: relative;
  width: 193px;
  height: 80px;
  background: url("_%40assets/images/shared/header/logo.html") no-repeat
    center/contain;
}
.logo > a {
  display: block;
  height: 100%;
}
.header-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 14px;
  margin: 0 24px 0 0;
  padding: 0;
  list-style: none;
}
.header-nav li a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #3f4f75;
  text-decoration: none;
  cursor: pointer;
}
.header-nav .partner-btn {
  position: relative;
}
.header-nav .partner-btn::after {
  content: "";
  position: absolute;
  display: block;
  top: -18px;
  right: -23px;
  width: 38px;
  height: 28px;
  background: url("_%40assets/images/shared/header/partner-ad.html") no-repeat
    center/contain;
  z-index: 2;
}
.time {
  position: absolute;
  right: 0;
  top: 0;
  color: #3f4f75;
}
.btns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex: auto;
  flex: auto;
}
.btns button {
  width: 148px;
  height: 44px;
  padding: 0;
  color: #3f4f75;
  text-transform: capitalize;
  text-align: center;
  font-size: 20px;
  border: none;
  outline: none;
}
.btns button.trial {
  height: 44px;
  width: 160px;
  color: #fff;
  border-radius: 109px;
  background-color: #0053df;
}
.btns button.trial:hover {
  color: #3f4f75;
}
.btns button.trial i {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  background: url("_%40assets/images/shared/header/freeplay.html");
}
.btns button.login {
  height: 44px;
  width: 160px;
  color: #fff;
  border-radius: 109px;
  background-color: #0053df;
}
.btns button.login:hover {
  color: #3f4f75;
}
.btns button.reg {
  position: relative;
  margin: 0 6px;
  color: #3f4f75;
  border-radius: 44px;
  box-shadow: 3px 1px 6.8px 0 rgba(31, 121, 255, 0.4);
  border: solid 1px #63a2ff;
  background-color: #e3f1ff;
}
.btns button.reg:before {
  content: "";
  position: absolute;
  top: -23px;
  right: 2px;
  width: 38px;
  height: 28px;
  background: url("_%40assets/images/shared/header/68k.html") no-repeat
    center/contain;
}
.btns button:hover {
  color: #1f79ff;
  border-radius: 44px;
  box-shadow: 3px 1px 6.8px 0 rgba(31, 121, 255, 0.4);
  color: #1f79ff;
}
