body {
  font-family: "Inter", sans-serif;
  background-color: #0c1013;
  color: #e7edea;
}
body header {
  background: rgba(12, 16, 19, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
}
body header .navbar-brand {
  display: flex;
  gap: 10px;
  align-items: center;
}
body header .navbar-brand img {
  max-width: 34px;
}
body header .navbar-brand .logo-text {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
}
body header .navbar-brand .logo-text::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00b87c;
  margin-left: 6px;
  vertical-align: middle;
}
body a {
  color: #00b87c;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* header start  */
.nav-link {
  position: relative;
  font-weight: 500;
  font-size: 13px;
  color: rgba(231, 237, 234, 0.62);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 0 !important;
  margin: 0 14px;
  transition: color 0.25s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #00b87c;
  transition: width 0.25s ease;
}
.nav-link:hover, .nav-link.active {
  color: #fff;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  padding: 6px 10px;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url(../images/hamburger-menu.png);
}

/* header end  */
.alert-sec {
  border: none;
  text-align: center;
  padding: 11px 5px;
  margin-bottom: 0 !important;
  background: rgba(0, 184, 124, 0.14);
  border-bottom: 1px solid rgba(0, 184, 124, 0.22);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  font-size: 13.5px;
  letter-spacing: 0.3px;
}

/* banner start  */
.banner {
  position: relative;
  padding: 90px 0 100px 0;
  background: #0c1013;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(760px 420px at 12% 0%, rgba(0, 184, 124, 0.2), transparent 65%), radial-gradient(620px 420px at 92% 100%, rgba(184, 0, 182.6666666667, 0.14), transparent 65%);
}
.banner-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.028) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 78%);
}

.banner-wrapper {
  position: relative;
  z-index: 1;
  text-align: left;
}

.banner-wrapper h2 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgb(20.8, 255, 178.6304347826);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.banner-wrapper h2::before {
  content: "";
  width: 34px;
  height: 2px;
  background: #00b87c;
  flex: 0 0 auto;
}

.banner-wrapper h1 {
  color: #fff;
  font-size: 54px;
  line-height: 1.08;
  margin-bottom: 22px;
}

.banner-wrapper h1 span {
  color: #00b87c;
  position: relative;
  white-space: nowrap;
}
.banner-wrapper h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 10px;
  background: rgba(0, 184, 124, 0.18);
  z-index: -1;
}

.banner-wrapper p {
  color: rgba(231, 237, 234, 0.62);
  font-size: 16.5px;
  line-height: 1.7;
  font-weight: 400;
  max-width: 500px;
  margin: 0;
}

.banner-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.banner-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.banner-meta div strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.banner-meta div span {
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(231, 237, 234, 0.62);
}

/* hero media */
.hero-media {
  position: relative;
  z-index: 1;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(0, 184, 124, 0.45);
  border-radius: 20px;
}
.hero-media img {
  position: relative;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.hero-badge {
  position: absolute;
  z-index: 2;
  left: -22px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #11171a;
  border: 1px solid rgba(0, 184, 124, 0.35);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}
.hero-badge i {
  font-size: 18px;
  color: #00b87c;
}
.hero-badge strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  color: #fff;
  line-height: 1.3;
}
.hero-badge span {
  font-size: 11.5px;
  color: rgba(231, 237, 234, 0.62);
}

/* banner end  */
/* bet-card start  */
.bet-card {
  background-color: #0c1013;
  padding: 0 0 20px 0;
}

.single-card {
  background: #11171a;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  border-left: 3px solid #00b87c;
  border-radius: 4px 18px 18px 4px;
  overflow: hidden;
}

.card-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 34px;
  background: transparent;
}

.card-desc h2 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgb(20.8, 255, 178.6304347826);
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}
.card-desc h2::before {
  content: "\f06a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0;
}

.card-desc p {
  margin: 0;
  color: rgba(231, 237, 234, 0.62);
  font-size: 14.5px;
  line-height: 1.75;
}

.card-desc ul li {
  color: #e7edea;
  margin: 5px 0;
  font-weight: 500;
  font-size: 15px;
}
.card-desc ul li i {
  margin-right: 6px;
  color: #00b87c;
}

.card-logo {
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
  background-color: #161d21;
}
.card-logo img {
  width: 70%;
}

.card-score {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 220px;
  background-color: rgba(0, 184, 124, 0.12);
}

.stars i {
  color: #00b87c;
  font-size: 22px;
}

.score span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 54px;
  color: #00b87c;
}

.security-label span {
  color: #e7edea;
  font-weight: 500;
  font-size: 14px;
}
.security-label span i {
  color: #00b87c;
  margin-right: 3px;
}

.card-btn-wrapper {
  padding: 14px;
  background-color: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.card-btn {
  background-color: #00b87c;
  color: #04140e;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  height: 46px;
  border-radius: 6px;
  transition: 0.25s;
}
.card-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(0, 184, 124, 0.35);
  color: #04140e;
}

/* bet-card end  */
/* title wrapper start  */
.title-wrapper {
  margin-bottom: 52px;
  text-align: center;
}

.title-wrapper h2 {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}

.title-wrapper h1 {
  color: #fff;
  font-size: 36px;
}

.title-wrapper h1 span,
.title-wrapper h2 span {
  color: #00b87c;
}

.title-wrapper p {
  color: rgba(231, 237, 234, 0.62);
  font-size: 15px;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

.title-wrapper.text-start p {
  margin: 0;
}

.title-wrapper.text-start h2 {
  display: inline-block;
}
.title-wrapper.text-start h2::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: #00b87c;
  margin-bottom: 18px;
}

/* title wrapper end  */
/* games start */
.games {
  background: #0c1013;
  padding: 100px 0;
  position: relative;
}

.game-col:nth-child(even) .single-game {
  transform: translateY(30px);
}

.single-game {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #11171a;
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform 0.35s ease, border-color 0.3s, box-shadow 0.35s;
}
.single-game a {
  display: block;
  overflow: hidden;
}
.single-game img {
  display: block;
  width: 100%;
  transition: transform 0.6s ease;
}
.single-game .game-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.single-game .game-caption .game-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(231, 237, 234, 0.62);
}
.single-game .game-caption .game-play {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #00b87c;
  text-decoration: none;
  white-space: nowrap;
}
.single-game .game-caption .game-play i {
  font-size: 11px;
  margin-left: 5px;
  transition: transform 0.3s ease;
  display: inline-block;
}
.single-game:hover {
  border-color: rgba(0, 184, 124, 0.55);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.55);
}
.single-game:hover img {
  transform: scale(1.06);
}
.single-game:hover .game-play i {
  transform: translateX(5px);
}

.game-col:nth-child(odd) .single-game:hover {
  transform: translateY(-10px) rotate(-1.4deg);
}

.game-col:nth-child(even) .single-game:hover {
  transform: translateY(20px) rotate(1.4deg);
}

/* games end */
/* bonus start  */
.bonus {
  padding: 100px 0;
  background: #11171a;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.bonus-list {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.bonus-row {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 30px 18px 30px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  transition: background-color 0.3s, padding-left 0.3s;
}
.bonus-row:hover {
  background: rgba(255, 255, 255, 0.02);
  padding-left: 16px;
}
.bonus-row:hover .bonus-index {
  color: #00b87c;
}

.bonus-index {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.16);
  min-width: 52px;
  transition: color 0.3s;
}

.bonus-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(0, 184, 124, 0.14);
  border: 1px solid rgba(0, 184, 124, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}
.bonus-icon i {
  font-size: 18px;
  color: #00b87c;
}

.bonus-text {
  flex: 1 1 auto;
}

.single-bonus h2,
.bonus-text h2 {
  margin: 0 0 8px 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.2px;
  color: #fff;
}

.single-bonus p,
.bonus-text p {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(231, 237, 234, 0.62);
}

/* bonus end  */
/* faq start  */
.faq {
  padding: 100px 0;
  background: #0c1013;
}

.accordion-item {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09) !important;
  margin-bottom: 0 !important;
}

.accordion-button {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #e7edea;
  background-color: transparent;
  padding: 24px 44px 24px 0;
  border: none;
  border-radius: 0 !important;
  transition: color 0.25s;
}
.accordion-button:hover {
  color: #00b87c;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  color: #00b87c;
}

.accordion-button:focus {
  border: none;
  outline: 0;
  box-shadow: none;
}

.accordion-button::after {
  background-image: none !important;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-right: 8px;
  border-right: 2px solid #00b87c;
  border-bottom: 2px solid #00b87c;
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(-135deg);
}

.accordion-body {
  background-color: transparent;
  padding: 0 44px 26px 0;
  color: rgba(231, 237, 234, 0.62);
  font-size: 14.5px;
  line-height: 1.8;
  border: none;
}

/* faq end  */
/* why choose us start  */
.why-choose-us {
  padding: 100px 0;
  background: #0c1013;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.content-wrapper h1 {
  font-weight: 700;
  margin: 20px 0;
  color: #fff;
}
.content-wrapper h1 span {
  color: #00b87c;
}

.content-wrapper h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.content-wrapper h2::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: #00b87c;
  flex: 0 0 auto;
}

.content-wrapper p {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(231, 237, 234, 0.62);
  text-align: left;
}

.content-wrapper ul li {
  font-weight: 400;
  font-size: 15px;
  color: rgba(231, 237, 234, 0.62);
  margin: 8px 0;
}

.content-wrapper strong {
  color: #fff;
}

.content-wrapper img {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
}

.content-media {
  position: relative;
}
.content-media::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 1px solid rgba(0, 184, 124, 0.35);
  border-radius: 16px;
}
.content-media img {
  position: relative;
}

/* why choose us end */
/* analyze start  */
.analyze {
  padding: 42px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(520px 260px at 8% 0%, rgba(0, 184, 124, 0.18), transparent 70%), #11171a;
  border: 1px solid rgba(0, 184, 124, 0.28);
  border-radius: 20px;
}

.analyze h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  display: block;
}
.analyze h2::before {
  display: none;
}

.analyze p {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(231, 237, 234, 0.62);
  margin-bottom: 0;
}

.analyze .list-inline-item {
  margin: 6px;
}

.analyze img {
  border: 0;
  border-radius: 0;
}

.analyze ul img {
  width: 34px;
  padding: 0;
}

.analyze ul li {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, transform 0.3s;
}
.analyze ul li:hover {
  border-color: rgba(0, 184, 124, 0.6);
  transform: translateY(-4px);
}

.analyze-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.analyze-logo img {
  max-width: 34px;
  border: 0;
}
.analyze-logo span {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
}

/* analyze end  */
/* leading-swc start  */
.leading-swc {
  padding: 90px 0;
  background: #0c1013;
}

.leading-swc-wrapper {
  position: relative;
  overflow: hidden;
  padding: 52px 48px;
  background: radial-gradient(600px 300px at 100% 0%, rgba(184, 0, 182.6666666667, 0.16), transparent 70%), linear-gradient(120deg, rgba(0, 184, 124, 0.16), rgba(0, 184, 124, 0.04) 60%), #11171a;
  border: 1px solid rgba(0, 184, 124, 0.3);
  border-radius: 22px;
}

.leading-swc-wrapper h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}

.leading-swc-wrapper p {
  color: rgba(231, 237, 234, 0.62);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0;
}

.primary-btn {
  text-decoration: none;
  display: inline-block;
  padding: 15px 38px;
  text-align: center;
  background: #00b87c;
  color: #04140e;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.primary-btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 rgba(0, 184, 124, 0.35);
  color: #04140e;
}

.ghost-btn {
  text-decoration: none;
  display: inline-block;
  padding: 15px 32px;
  text-align: center;
  background: transparent;
  color: #e7edea;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  transition: border-color 0.25s, color 0.25s, background-color 0.25s;
}
.ghost-btn:hover {
  border-color: rgba(0, 184, 124, 0.6);
  background: rgba(0, 184, 124, 0.14);
  color: #fff;
}

/* leading-swc end  */
/* footer start  */
footer {
  padding: 26px 0;
  background: #11171a;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.list-inline-item.active a {
  color: #00b87c;
}

.footer-page-link li a {
  text-decoration: none;
  color: rgba(231, 237, 234, 0.62);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.25s;
}
.footer-page-link li a:hover {
  color: #00b87c;
}

.copyright {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 400;
}
.copyright span {
  color: #00b87c;
}

.short-disclaimer {
  padding: 28px 20px;
  background-color: #11171a;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
}
.short-disclaimer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
}

/* footer end  */
/* BreadCrumb start  */
.breadcrumb-cc {
  position: relative;
  overflow: hidden;
  background: radial-gradient(700px 340px at 20% 0%, rgba(0, 184, 124, 0.2), transparent 68%), radial-gradient(600px 340px at 90% 100%, rgba(184, 0, 182.6666666667, 0.12), transparent 68%), #0c1013;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
  padding: 90px 0;
}

.breadcrumb-cc h1 {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.6px;
  text-transform: none;
}

.breadcrumb-cc p {
  color: rgba(231, 237, 234, 0.62);
  font-weight: 400;
  margin-bottom: 0;
}

.breadcrumb-cc a {
  text-decoration: none;
  color: #00b87c;
  font-weight: 600;
}

/* BreadCrumb end  */
/* content start  */
.content {
  padding: 90px 0;
  background-color: #0c1013;
}
.content p,
.content li {
  color: rgba(231, 237, 234, 0.62);
  font-size: 15px;
  line-height: 1.8;
}
.content strong {
  color: #fff;
}

.content h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.content h3::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: #00b87c;
  flex: 0 0 auto;
}

/* content end  */
.banner-card-sec-title h1 {
  color: #fff;
  font-size: 30px;
}
.banner-card-sec-title h1 span {
  color: #00b87c;
}

.banner-card-sec-title p {
  margin-bottom: 0;
  color: rgba(231, 237, 234, 0.62);
  font-size: 14px;
  font-weight: 400;
}
