.play-now-btn {
  height: 40px;
  border-radius: 12px;
  padding: 0.35rem 1.25rem !important;
  background: linear-gradient(135deg, #7f67ff, #513bd9);
  border: none;
  box-shadow: 0 15px 30px rgba(81, 59, 217, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-now-btn a {
  color: #f5f5ff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.play-now-btn:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 18px 36px rgba(81, 59, 217, 0.65);
}
/* Stream iframe container adjustments */
.stream-iframe-container {
  min-height: 400px;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stream-iframe-container .ratio {
  width: 100%;
  height: 100%;
}

.stream-iframe-container iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 400px;
  border-radius: 12px;
  display: block;
}

:root {
  --alto: #d9d9d9;
  --black: #000000;
  --buttered-rum: #4b3bb699;
  --eunry: #cea48c;
  --star-dust: #a1a1a1;
  --sunglow: #bda4ff;
  --white: #ffffff;
  --white-2: #ffffff14;
  --white-3: #ffffff2b;
  --roo-color: #cbb9ff;
  --font-size-l: 20px;
  --font-size-m: 18px;
  --font-size-s: 17px;
  --font-size-xl: 24px;
  --font-size-xxl: 25px;
  --font-size-xxxl: 92px;
  --font-size-xxxxl: 125px;
  --font-family-inter: "Inter", Helvetica;
  --font-family-jomhuria: "Jomhuria", Helvetica;
  --font-family-mulish: "Mulish", Helvetica;
  --deep-blue: #0f1d2c;
  --mid-blue: #132940;
  --light-blue: #1f3d5a;
  --neon-yellow: #9f84ff;
  --glass: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  overflow-x: hidden;

  /* gradient */
  background: linear-gradient(-45deg, #090c1c, #111832, #0f1125, #1c1a32);
  background-size: 400% 400%;
  animation: gradientShift 18s ease infinite;
  transition: all 0.5s ease;
}

@keyframes bgShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.logo-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.logo-bg img {
  position: absolute;
  opacity: 0.04;
  filter: grayscale(100%);
  user-select: none;
}

.blob {
  position: fixed;
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
  filter: blur(80px);
  animation: blobMove 40s ease-in-out infinite alternate;
}

.blob.yellow {
  background: var(--neon-yellow);
  width: 400px;
  height: 400px;
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.blob.blue {
  background: #00c3ff;
  width: 300px;
  height: 300px;
  bottom: 5%;
  right: -10%;
  animation-delay: 10s;
}

@keyframes blobMove {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, -30px) scale(1.2);
  }

  100% {
    transform: translate(-30px, 60px) scale(1);
  }
}

.jomhuria {
  font-family: var(--font-family-jomhuria);
  color: var(--roo-color);
}

.jomhuria-font {
  font-family: var(--font-family-jomhuria);
}

.mulish {
  font-family: var(--font-family-mulish);
}

.btn-custom {
  background: linear-gradient(180deg,
      rgba(220, 169, 22, 1) 0,
      rgba(227, 186, 70, 1) 100%);
  border-radius: 10px;
  color: var(--white);
  text-shadow: 1px 1px 4px #96720c99;
  -webkit-text-stroke: 0.5px var(--buttered-rum);
}

.btn-custom-outline {
  border: 1px solid var(--sunglow);
  background-color: #dca9160f;
  border-radius: 10px;
  color: var(--white);
  text-shadow: 1px 1px 4px #96720c4c;
  text-stroke: 1px #96720c4a;
}

.btn-custom-outline:hover {
  border: 1px solid var(--sunglow);
  background-color: #c8990b40;
  border-radius: 10px;
  color: var(--white);
  text-shadow: 1px 1px 4px #96720c4c;
  text-stroke: 1px #96720c4a;
}

.header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, calc(100% - 32px));
  z-index: 1000;
  padding: 0.5rem 1.15rem;
  border-radius: 26px;
  background: linear-gradient(120deg,
      rgba(18, 22, 48, 0.72),
      rgba(13, 15, 32, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.25s ease, width 0.35s ease, box-shadow 0.35s ease;
  animation: navExpand 0.9s cubic-bezier(0.19, 1, 0.22, 1) both;
  transform-origin: center;
}

.header::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
  opacity: 0.8;
}

.header.scrolled {
  background: linear-gradient(120deg,
      rgba(12, 14, 30, 0.96),
      rgba(12, 14, 30, 0.9));
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.75);
}

@keyframes navExpand {
  0% {
    transform: translate(-50%, 0) scaleX(0.2) scaleY(0.6);
    opacity: 0;
  }

  60% {
    transform: translate(-50%, 0) scaleX(1.05) scaleY(1.02);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 0) scaleX(1) scaleY(1);
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .header {
  position: fixed;
  top: 0;
  left: 0;
    transform: none;
  width: 100%;
    border-radius: 0;
    padding: 0.75rem 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
    animation: none;
  }

  .header::before {
    inset: 0;
    border-radius: 0;
  }
}

.faq-question {
  background-color: var(--white-2);
  border: 0.25px solid var(--star-dust);
  border-radius: 40px;
  padding: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.faq-question img {
  float: right;
  width: 31px;
  height: 31px;
}

.footer {
  color: var(--alto);
}

.site-footer {
  margin-top: 120px;
  background: linear-gradient(180deg, rgba(6, 8, 22, 0), rgba(6, 8, 22, 0.9) 60%, rgba(6, 8, 22, 0.98) 100%);
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  width: 200%;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  transform: translateX(-50%);
  opacity: 0.35;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 1;
  padding: 40px 24px 30px;
  max-width: 1100px;
  margin: 0 auto;
  color: #f5f5ff;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
}

.footer-logo-block img {
  width: 50px;
  height: 50px;
}

.footer-logo-block p {
  margin: 0;
  font-size: 14px;
}

.footer-social-block {
  text-align: right;
  min-width: 220px;
}

.footer-social-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-social-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.footer-social-buttons a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social-buttons a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

.footer-social-buttons i {
  font-size: 17px;
}

.footer-disclaimer {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
  opacity: 0.85;
}

.creator-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #dad3ff;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, background 0.2s ease;
}

.creator-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  color: #fff;
}

@media (max-width: 991px) {
  .footer-main {
    flex-direction: column;
    text-align: center;
  }

  .footer-social-block {
    text-align: center;
  }

  .footer-social-buttons {
    justify-content: center;
  }
}

.footer-links a {
  display: block;
  color: var(--alto);
  margin-bottom: 1rem;
}

@keyframes rotate-animation {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.fugu-hero-section2 {
  z-index: 0;
  overflow: hidden;
  padding: 100px 0 250px;
}

.fugu-hero-section2:before {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 80%;
  z-index: -2;
  position: absolute;
  background: url(assets/images/coin-bg.html) no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: unset;
}

@media (max-width: 767px) {
  .fugu-hero-section2:before {
    border-radius: 0;
  }
}

.fugu-hero-content2 {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.fugu-hero-content2 p {
  padding: 0 70px;
}

@media (max-width: 550px) {
  .fugu-hero-content2 p {
    padding: 0;
  }
}

.fugu-shape4 {
  z-index: -1;
  position: absolute;
  top: 15%;
  left: 20%;
  -webkit-animation: float 4s ease-in-out infinite;
  animation: float 3s ease-in-out infinite;
  opacity: 0.6;
}

.fugu-shape3 {
  z-index: -1;
  position: absolute;
  top: 73%;
  left: -5%;
  -webkit-animation: float 4s ease-in-out infinite;
  animation: float 3s ease-in-out infinite;
  opacity: 0.6;
}

.fugu-shape2 {
  z-index: -1;
  position: absolute;
  top: 18%;
  left: 89%;
  -webkit-animation: float 4s ease-in-out infinite;
  animation: float 3s ease-in-out infinite;
  opacity: 0.6;
}

@media (max-width: 767px) {
  .fugu-shape4 {
    display: none;
  }

  .fugu-shape2 {
    display: none;
  }

  .fugu-shape3 {
    display: none;
  }
}

.fugu-shape5 {
  z-index: -1;
  position: absolute;
  right: 15%;
  bottom: 6%;
  -webkit-animation: jump 3s ease-in-out infinite;
  animation: jump 3s ease-in-out infinite;
  opacity: 0.35;
}

@media (max-width: 767px) {
  .fugu-shape5 {
    display: none;
  }
}

@-webkit-keyframes float {
  0% {
    transform: translatey(0);
  }

  50% {
    transform: translatey(-20px);
  }

  100% {
    transform: translatey(0);
  }
}

@keyframes float {
  0% {
    transform: translatey(0);
  }

  50% {
    transform: translatey(-20px);
  }

  100% {
    transform: translatey(0);
  }
}

@keyframes jump {
  0% {
    transform: translateY(20px);
  }

  50% {
    transform: translateY(-60px);
  }

  100% {
    transform: translateY(20px);
  }
}

.fugu--hero-section {
  z-index: 0;
  padding: 200px 0 120px;
  background-size: cover;
  position: relative;
  background-position: center bottom;
  background-color: var(--gray-800);
}

@media (max-width: 991px) {
  .fugu--hero-section {
    padding: 175px 0 100px;
  }
}

@media (max-width: 767px) {
  .fugu--hero-section {
    padding: 150px 0 80px;
  }
}

@media (max-width: 575px) {
  .fugu--hero-section {
    padding: 130px 0 80px;
  }
}

.fugu--hero-content {
  max-width: 636px;
}

.fugu--hero-content h1 {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
}

@media (max-width: 991px) {
  .fugu--hero-content {
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .fugu--hero-content {
    max-width: 500px;
  }
}

.fugu--hero-content p {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.5px;
  margin-right: 80px;
  color: #fff;
}

@media (max-width: 991px) {
  .fugu--hero-content p {
    margin-right: 0;
  }
}

.fugu--hero-shape1 {
  position: absolute;
  bottom: -116px;
  right: 14%;
  z-index: -1;
}

@media (max-width: 1600px) {
  .fugu--hero-shape1 {
    right: 3%;
  }
}

@media (max-width: 1400px) {
  .fugu--hero-shape1 {
    right: 0;
  }
}

@media (max-width: 1199px) {
  .fugu--hero-shape1 {
    bottom: 0;
    width: 70%;
  }
}

@media (max-width: 991px) {
  .fugu--hero-shape1 {
    right: 110px;
    width: 100%;
  }
}

.fugu--hero-shape2 {
  width: 18%;
  height: 37%;
  position: absolute;
  background: #2c04fe;
  opacity: 1;
  filter: blur(136.18px);
  border-radius: 100%;
  top: 15%;
  right: 10%;
  z-index: -1;
}

@media (max-width: 1600px) {
  .fugu--hero-shape2 {
    right: 0;
  }
}

.fugu--hero-section2 {
  z-index: 0;
  padding: 230px 0 235px;
  position: relative;
  background-color: var(--warning-600);
}

@media (max-width: 1199px) {
  .fugu--hero-section2 {
    padding: 150px 0 120px;
  }
}

@media (max-width: 767px) {
  .fugu--hero-section2 {
    padding: 150px 0 80px;
  }
}

@media (max-width: 479px) {
  .fugu--hero-section2 {
    padding: 120px 0 80px;
  }
}

.fugu--hero-content2 {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 991px) {
  .fugu--hero-content2 {
    max-width: 565px;
  }
}

@media (max-width: 767px) {
  .fugu--hero-content2 {
    max-width: 445px;
  }
}

.fugu--hero-content2 h1 {
  color: var(--gray-800);
  font-family: "Public Sans", sans-serif;
}

.fugu--hero-content2 p {
  margin-right: 0;
  color: var(--gray-800);
  margin: 0 20px;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.15, 1.15);
  }

  100% {
    transform: scale(1, 1);
  }
}

.fugu--hero-section3 {
  z-index: 0;
  padding: 280px 0 120px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--gray-800);
}

.logo {
  max-height: 50px;
}

.nav-link {
  position: relative;
  display: inline-block;
  /* Ensure the pseudo-element aligns correctly */
  text-decoration: none;
  /* Optional: removes the default underline */
  color: #fff !important;
  font-family: Mulish, sans-serif;
  padding: 8px 15px;
  /* Provides some spacing around the text */
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  /* Height of the underline */
  background-color: var(--roo-color);
  bottom: 0;
  /* Aligns the underline right at the bottom of the text */
  left: 0;
  transition: width 0.3s ease;
  /* Smooth transition for the underline */
}

.nav-link:hover::after {
  width: 100%;
  /* Extends the underline across the full width of the link */
}

.nav-link.active {
  color: var(--roo-color) !important;
}

a {
  text-decoration: none;
}

.btn-custom {
  background-color: #007bff;
  color: #fff;
}

.btn-custom:hover {
  background-color: #0056b3;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23E3BA46' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.fade-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg,
      rgb(28 20 86) 0,
      rgba(52, 58, 64, 0) 100%);
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
}

.text-eunry {
  color: white;
}

.custom-btn {
  position: relative;
  background: linear-gradient(180deg, rgb(247, 183, 51) 0, rgb(252, 74, 26) 100%);
  border-radius: 10px;
  color: var(--white);
  text-shadow: 1px 1px 4px #96720c99;
  -webkit-text-stroke: 0.5px var(--buttered-rum);
  border: none;
  padding: 0;
  color: #fff;
  font-family: Inter, sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-decoration: none;
}

.custom-btn::before {
  content: "";
  width: 60%;
  height: 100%;
  position: absolute;
  left: -30%;
  top: 0;
  background: rgba(231, 124, 74, 0.8);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  transform: rotate(55deg);
  transition: all 0.3s ease;
}

.custom-btn:hover::before {
  left: 50%;
  width: 100%;
}

.custom-btn .btn-text {
  position: relative;
  z-index: 1;
  padding: 20px 30px;
  text-align: center;
  word-wrap: break-word;
  text-decoration: none;
  color: white;
}

.custom-btn .btn-text-small {
  position: relative;
  z-index: 1;
  padding: 20px 10px;
  text-align: center;
  word-wrap: break-word;
  font-size: 1rem;
  text-decoration: none;
  color: white;
}

@media (max-width: 768px) {
  .custom-btn {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .custom-btn {
    font-size: 1rem;
  }

  .custom-btn::before {
    width: 70%;
  }
}

.big-text {
  font-size: 2rem;
  line-height: 0.2;
}

.big-text-2 {
  font-size: 2rem;
  line-height: 0.55;
}

.big-text-3 {
  font-size: 1.5rem;
  line-height: 0.55;
}

@media (min-width: 576px) {
  .big-text {
    font-size: 5rem;
  }

  .big-text-2 {
    font-size: 2.5rem;
  }

  .big-text-3 {
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) {
  .big-text {
    font-size: 6rem;
  }

  .big-text-2 {
    font-size: 3rem;
  }

  .big-text-3 {
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  .big-text {
    font-size: 7rem;
  }

  .big-text {
    font-size: 3.5rem;
  }

  .big-text-3 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1200px) {
  .big-text {
    font-size: 8rem;
  }

  .big-text-2 {
    font-size: 4rem;
  }

  .big-text-3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 991px) {
  .fugu-hero-section2 {
    padding: 150px 0 250px;
  }

  .fugu-hero-section2:before {
    height: 90%;
  }
}

@media (max-width: 767px) {
  .fugu-hero-section2 {
    padding: 150px 0 250px;
  }

  .fugu-hero-section2:before {
    height: 92%;
  }
}

@media (max-width: 479px) {
  .fugu-hero-section2 {
    padding: 150px 0 250px;
  }

  .fugu-hero-section2:before {
    height: 95%;
  }
}

@media (max-width: 767px) {
  .fugu-hero-section2:after {
    content: "";
    left: 0;
    top: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    position: absolute;
  }
}

.fade-background-2 {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  height: 25vh;
  /* background: linear-gradient(
    0deg,
    #e3ba46 10%,
    rgba(227, 186, 70, 0.8) 25%,
    rgba(227, 186, 70, 0.6) 40%,
    rgba(227, 186, 70, 0.4) 55%,
    rgba(227, 186, 70, 0.2) 70%,
    rgba(35, 28, 95, 0) 100%
  ); */
  z-index: -1;
}

@media (min-width: 1081px) {
  .fade-background-2 {
    bottom: 15%;
    /* Higher up than on smaller screens */
  }
}

@media (max-width: 991px) {
  .fade-background-2 {
    bottom: 10%;
  }
}

@media (max-width: 767px) {
  .fade-background-2 {
    bottom: 10%;
    height: 30vh;
  }
}

@media (max-width: 479px) {
  .fade-background-2 {
    bottom: 5%;
    height: 35vh;
  }
}

.fade-waves {
  position: absolute;
  bottom: -15%;
  left: 0;
  width: 100%;
  height: 25vh;
  background: url(assets/images/wavesopacity-1.html) no-repeat;
  background-size: contain;
  z-index: -1;
}

@media (min-width: 1081px) {
  .fade-waves {
    bottom: -10%;
    /* More negative to move it up slightly */
  }
}

@media (max-width: 991px) {
  .fade-waves {
    bottom: -15%;
  }
}

@media (max-width: 767px) {
  .fade-waves {
    bottom: -20%;
    height: 30vh;
    background-size: contain;
  }
}

@media (max-width: 479px) {
  .fade-waves {
    bottom: -33%;
    height: 35vh;
  }
}

.step {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.step img {
  width: 80px;
  height: 80px;
  margin-right: 1.5rem;
}

.step-content h3 {
  margin-bottom: 0.5rem;
  color: #007bff;
}

.step-content p {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .step {
    flex-direction: column;
    text-align: center;
  }

  .step img {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

.custom-card {
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.14),
      rgba(5, 6, 20, 0.85));
  padding: 18px;
  border-radius: 26px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.custom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.65);
  border-color: rgba(255, 215, 128, 0.6);
}

.semicircle {
  position: absolute;
  bottom: -30px;
  right: -60px;
  width: 60px;
  height: 60px;
  background: url(assets/images/semicircular.html) no-repeat;
  background-size: cover;
  z-index: 1;
}

@media (max-width: 767px) {
  .semicircle {
    display: none;
  }
}

.jomhuria {
  font-family: var(--font-family-jomhuria);
  color: var(--roo-color);
}

.step img {
  width: 80px;
  height: 80px;
}

@media (max-width: 768px) {
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step img {
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
  }
}

.custom-card {
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.14),
      rgba(5, 6, 20, 0.85));
  padding: 18px;
  border-radius: 26px;
  margin-bottom: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@media (max-width: 768px) {
  .custom-card {
    padding: 14px;
  }
}

.btn-custom {
  padding: 10px 20px;
  font-size: var(--font-size-m);
}

@media (max-width: 768px) {
  .btn-custom {
    padding: 8px 16px;
    font-size: var(--font-size-s);
  }
}

.fade-background-2 {
  height: 25vh;
}

@media (max-width: 768px) {
  .fade-background-2 {
    height: 30vh;
  }
}

.footer,
.header,
.nav {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {

  .footer,
  .header,
  .nav {
    flex-direction: column;
  }
}

.image-with-svg {
  position: relative;
  width: 100%;
  /* Ensures the container is fully responsive */
  display: flex;
  /* Aligns children inline */
  justify-content: center;
  /* Centers the children */
  align-items: center;
  /* Aligns items vertically in the center */
}

.overlay-svg {
  position: absolute;
  /* Position the SVG absolutely within the relative container */
  top: -45%;
  /* Align to the top of the container */
  width: 100%;
  /* SVG covers the full width of the container */
  height: auto;
  /* Maintain aspect ratio */
  z-index: 2;
  /* Ensures the SVG is above the image */
}

.underlying-image {
  width: 100%;
  /* Image fills the container */
  height: auto;
  /* Maintain aspect ratio */
  display: block;
  /* Removes any space below the image */
  z-index: 1;
  /* Keeps the image below the SVG */
}

/* Default padding for larger screens */
.responsive-padding {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

/* Adjust padding for tablets */
@media (max-width: 768px) {
  .responsive-padding {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }
}

/* Further adjust padding for mobile phones */
@media (max-width: 480px) {
  .responsive-padding {
    padding-top: 15vh;
    padding-bottom: 2vh;
  }
}

/* Targets the whole accordion item for background and spacing */
.accordion-item {
  background-color: rgba(255, 255, 255, 0.08);
  /* Using RGBA for opacity */
  border: 1px solid #a1a1a1;
  /* Adjust border thickness and color */
  border-radius: 25px;
  /* Rounded corners */
  margin-bottom: 10px;
  /* Adds space between accordion items */
}

/* Optionally, you can also set the background color for the header to match */
.accordion-item .accordion-header .accordion-button {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  /* Rounded corners on top */
  padding: 0.8rem 1.25rem;
  /* Adjust padding for better spacing */
  color: #ffffff;
  /* Text color */
}

/* To maintain the background color when the accordion is open */
.accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: rgba(255,
      255,
      255,
      0.15);
  /* Slightly darker for active state */
  border-radius: 25px;
  /* Maintain rounded corners on top */
}

/* Targets the body of each accordion item */
.accordion-item .accordion-collapse {
  border-radius: 25px;
  /* Rounded corners on bottom */
}

.accordion-button:focus {
  box-shadow: none;
  /* Removes the default focus outline */
}

.accordion-button::after {
  background-image: url(assets/images/accordion_btn.html);
  height: 30px;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(assets/images/accordion_btn.html);
  height: 30px;
  transform: rotate(90deg);
}

.accordion-item:first-of-type {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid #a1a1a1;
}

.accordion-item {
  border-bottom: 1px solid #a1a1a1;
  color: #ffffff;
}

/* Style for the accordion container */
/* Styling for the accordion container on all screen sizes */
.containe-accordion {
  margin-top: 85px;
  /* Consistent top margin for all screens */
  margin-left: -120px;
  width: calc(100% + 30px);
}

/* Specific styles for large screens (desktops) */
@media (min-width: 992px) {
  .containe-accordion {
    margin-left: -100px;
    /* Negative margin only for large screens */
    margin-top: 80px;
  }
}

/* Reset styles and adjustments for tablets and smaller screens */
@media (max-width: 991px) {
  .containe-accordion {
    margin-left: 0;
    /* Reset left margin to prevent content overflow */
  }

  .col-lg-6 img {
    display: none;
    /* Hide the image on smaller devices */
  }

  .col-lg-6 {
    padding: 0 15px;
    /* Add padding to ensure content is not too wide */
  }

  .accordion {
    margin-top: 20px;
    /* Additional top margin for better spacing */
  }
}

@media (min-width: 992px) {

  /* Affects screens larger than 991px */
  .containe-accordion {
    position: relative;
    /* Establishes a positioning context */
    left: -15px;
    /* Moves the entire element slightly to the left */
    width: calc(50% + 100px);
    /* Expands width beyond the parent column */
  }
}

@media (max-width: 767px) {

  /* For mobile devices to keep the layout contained */
  .containe-accordion {
    position: relative;
    left: 0;
    width: 100%;
    /* Ensures it fits within small screens without overflow */
  }
}

/*==============================
  Company
==============================*/
.company {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 94%;
  border-radius: 25px 10px 10px 10px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(150deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  position: relative;
  padding: 45px 45px;
  z-index: 2;
  margin: 3% !important;
}

.company__title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 30px;
}

.company__subtitle {
  font-size: 16px;
  line-height: 26px;
  color: #d0d0d0;
  margin-bottom: 15px;
  margin-top: 20px;
  font-weight: 200;
}

.company__text {
  font-size: 16px;
  line-height: 26px;
  color: #d0d0d0;
  margin-bottom: 20px;
}

.company__text b {
  color: #fff;
  font-weight: 500;
}

.company__text:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .company__title {
    font-size: 32px;
    line-height: 42px;
  }
}

@media (min-width: 992px) {
  .company {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .company__subtitle {
    margin-top: 0;
  }
}

#canvas2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* Place the animated background behind the content */
}

.row--relative {
  position: relative;
}

.company {
  position: relative;
  z-index: 1;
  /* Ensure the company content is in front of the animated background */
}

.block-icon {
  position: relative;
  z-index: 2;
  /* Ensure icons are in front of other content if necessary */
}

.screw {
  position: relative;
  z-index: 2;
  /* Ensure screws are in front of other content if necessary */
}

.vanta-canvas {
  border-radius: 25px;
  opacity: 20%;
}

.image-container {
  position: relative;
  overflow: hidden;
}

.image-background {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  max-height: 500px;
  border-radius: 25px;
}

.image-foreground {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  max-height: 500px;
  width: 50%;
}

.svg-container {
  width: 100%;
  height: 0;
  padding-bottom: 8.33%;
  /* Aspect ratio 1440/120 = 12, 100% / 12 = 8.33% */
  position: relative;
}

.svg-container svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

footer {
  background-color: #524c7f;
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  margin-top: -20px;
  /* Adjust margin to overlap the SVG */
}

.footer-section {
  text-align: left;
}

.footer-section h5 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.footer-section p,
.footer-section a {
  font-size: 0.9rem;
  color: #ffffffc7;
  text-decoration: none;
  font-weight: 100;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 20px;
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom img {
  height: 20px;
  margin-left: 10px;
}

.fade_rule {
  height: 1px;
  background-color: #e6e6e6;
  margin: 0 auto;

  background-image: -webkit-gradient(linear,
      left bottom,
      right bottom,
      color-stop(0.02, #524c80),
      color-stop(0.5, white),
      color-stop(0.98, #524c80));
}

.footer-icons .icon {
  height: 14px;
  /* Adjust the height as needed */
  transition: transform 0.3s ease;
  /* Smooth transition for hover effect */
}

.footer-icons a {
  margin-left: 10px;
  /* Spacing between icons */
}

.footer-icons a:hover .icon {
  transform: scale(1.1);
  /* Scales up the icon on hover */
}

/* Base CSS - Ensures images are visible on desktops */
.image-container {
  display: block;
}

/* CSS Media Queries to hide on tablets and phones */
@media (max-width: 991px) {

  /* Covers tablets and mobile devices */
  .image-container {
    display: none;
  }
}

.rules-custom-btn {
  border-radius: 10px;
  text-shadow: 1px 1px 4px #cf9c0adb;
  -webkit-text-stroke: 0.5px var(--buttered-rum);
  border: none;
  padding: 10px;
  padding-right: 25px;
  padding-left: 20px;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: "Jomhuria";
  font-size: xxx-large;
  transition: all 0.3s ease;
  box-shadow: -5px 7px 20px #ffc107;
  line-height: 0.6;
  background-color: #524c7f;
  border: 1px solid var(--roo-color);
}

.rules-custom-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-decoration: none;

  border-radius: 10px;
  text-shadow: 1px 1px 4px #cf9c0adb;
  -webkit-text-stroke: 0.5px var(--buttered-rum);
  border: none;
  padding: 10px;
  padding-right: 25px;
  padding-left: 20px;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: "Jomhuria";
  font-size: xxx-large;
  transition: all 0.3s ease;
  box-shadow: 5px 7px 20px #ffc107;
  line-height: 0.6;
  background-color: #524c7f;
  border: 1px solid var(--roo-color);
}

.podium-cards {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.podium-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 0 1 280px;
  --base-transform: var(--card-transform, none);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), z-index 0.2s ease;
  transform: var(--base-transform);
  animation-duration: 1.1s;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-fill-mode: both;
  will-change: transform;
}

.podium-card .get-bonuses__images {
  margin-bottom: 1rem;
}

.podium-card.podium-first {
  flex: 0 1 320px;
  --card-transform: translateY(-40px);
  z-index: 2;
  animation-name: podiumPop;
  animation-delay: 0.05s;
}

.podium-card.podium-second {
  order: 1;
  --card-transform: rotate(-4deg) translateY(15px);
  animation-name: revealFromCenterLeft;
  animation-delay: 0.3s;
}

.podium-card.podium-first {
  order: 2;
}

.podium-card.podium-third {
  order: 3;
  --card-transform: rotate(4deg) translateY(15px);
  animation-name: revealFromCenterRight;
  animation-delay: 0.35s;
}

.podium-card:hover {
  transform: translateY(-18px) scale(1.03);
  z-index: 5;
}

.podium-card .lead_1,
.podium-card .lead_2,
.podium-card .lead_3 {
  position: relative;
  z-index: 1;
}

.podium-card.podium-second .get-bonuses__images {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-35%, -35%);
  z-index: 0;
  pointer-events: none;
}

.podium-card.podium-second .get-bonuses__images img {
  max-width: 120px;
  opacity: 0.7;
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.4));
  transform-origin: top left;
}

@keyframes podiumPop {
  0% {
    transform: translateY(50px) scale(0.5);
    opacity: 0;
  }

  60% {
    transform: translateY(-10px) scale(1.05);
    opacity: 1;
  }

  100% {
    transform: var(--card-transform, none);
  }
}

@keyframes revealFromCenterLeft {
  0% {
    transform: translateY(-20px) scale(0.3);
    opacity: 0;
  }

  45% {
    transform: translate(-12%, -60px) scale(0.85);
    opacity: 0.7;
  }

  100% {
    transform: var(--card-transform, none);
    opacity: 1;
  }
}

@keyframes revealFromCenterRight {
  0% {
    transform: translateY(-20px) scale(0.3);
    opacity: 0;
  }

  45% {
    transform: translate(12%, -60px) scale(0.85);
    opacity: 0.7;
  }

  100% {
    transform: var(--card-transform, none);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .podium-card {
    animation: none !important;
  }
}

@media (max-width: 991px) {
  .podium-cards {
    align-items: center;
    gap: 1.5rem;
  }

  .podium-card.podium-first {
    --card-transform: translateY(0);
  }

  .podium-card.podium-second,
  .podium-card.podium-third {
    --card-transform: none;
  }
}

.lead-card {
  width: 100%;
  max-width: 320px;
  padding: 34px 28px 30px;
  border-radius: 28px;
  background: linear-gradient(160deg,
      rgba(8, 8, 20, 0.96) 0%,
      rgba(8, 8, 20, 0.85) 45%,
      rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.lead-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.35), transparent 60%);
  opacity: 0.35;
  pointer-events: none;
}

.lead-card * {
  position: relative;
  z-index: 1;
}

.lead_2 {
  color: #f5f5f5;
  border-color: rgba(171, 184, 255, 0.35);
  box-shadow: 0 25px 55px rgba(40, 60, 140, 0.5);
}

.avatar-container-gold,
.avatar-container-silver,
.avatar-container-bronze {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 10px;
}

.avatar-container-gold::before,
.avatar-container-silver::before,
.avatar-container-bronze::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 70%);
  filter: blur(8px);
  z-index: 0;
}

.avatar {
  border-radius: 50%;
  width: 110px;
  height: 110px;
  margin: 0 auto;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55), inset 0 0 12px rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.user_name {
  padding-top: 31px;
  font-weight: 600;
  font-size: 28px;
  text-align: center;
  color: #fff;
  padding-bottom: 19px;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

.wageredText {
  padding: 5px;
  font-size: 16px;
  text-transform: uppercase;
}

.wagered {
  width: 80%;
  margin: 0 auto;
  background: rgba(10, 12, 35, 0.35);
  border-radius: 14px;
  padding: 10px 18px;
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
  gap: 6px;
}

/* .prize-roo {
  color: var(--roo-color);
} */

.prize {
  width: 90%;
  margin: 18px auto 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.lead_2::after {
  position: absolute;
  top: 0;
  right: 0;

  color: #000;
  padding: 5px 10px;
  border-radius: 0 8px 0 10px;
  font-size: 14px;
  font-weight: bold;
}

@media (max-width: 600px) {
  .lead_2::after {
    display: none;
  }
}

.lead_1 {
  color: #ffe8b0;
  border-color: rgba(255, 203, 96, 0.55);
  box-shadow: 0 35px 70px rgba(255, 189, 67, 0.5);
  background: linear-gradient(160deg,
      rgba(255, 196, 71, 0.18) 0%,
      rgba(12, 7, 1, 0.95) 55%);
}

.lead_1::after {
  position: absolute;
  top: 0;
  right: 0;
  color: #000;
  padding: 5px 10px;
  border-radius: 0 8px 0 10px;
  font-size: 14px;
  font-weight: bold;
}

@media (max-width: 600px) {
  .lead_1::after {
    display: none;
  }
}

.lead_3 {
  color: #ffd2c4;
  border-color: rgba(255, 121, 87, 0.45);
  box-shadow: 0 25px 55px rgba(255, 121, 87, 0.45);
  background: linear-gradient(170deg,
      rgba(255, 117, 76, 0.16) 0%,
      rgba(12, 4, 1, 0.95) 55%);
}

.lead_3::after {
  position: absolute;
  top: 0;
  right: 0;
  color: #000;
  padding: 5px 10px;
  border-radius: 0 8px 0 10px;
  font-size: 14px;
  font-weight: bold;
}

@media (max-width: 600px) {
  .lead_3::after {
    display: none;
  }
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.time-box {
  background: #1314326e;
  padding: 5px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
  border: 1px solid var(--roo-color);
}

.time-number {
  font-size: 30px;
  color: var(--roo-color);
  font-weight: bold;
}

.time-label {
  color: #aaa;
  opacity: 0.7;
  font-size: 15px;
}

.countdown-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 28px 32px;
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(160deg,
      rgba(12, 14, 30, 0.85),
      rgba(12, 14, 30, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.countdown-title {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: #bfb3ff;
  margin-bottom: 8px;
}

.countdown-value {
  font-size: 28px;
  font-weight: 700;
  color: #f5f5ff;
  letter-spacing: 0.15em;
}

/*==============================
  Deals
==============================*/
.deals {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 24px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(150deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  padding: 50px 60px;
}

.deals__table-wrap {
  width: 100%;
  position: relative;
}

.deals__table {
  width: 100%;
  min-width: 992px;
  border-spacing: 0;
}

.deals__table thead {
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.deals__table thead th {
  font-size: 16px;
  color: #c7b4ff;
  font-weight: 600;
  padding: 20px 15px;
  line-height: 100%;
  margin-bottom: 0;
  border: none;
  text-transform: uppercase;
}

.deals__table thead th:first-child {
  padding-left: 0;
}

.deals__table thead th:last-child {
  padding-right: 0;
}

.deals__table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.deals__table tbody tr:last-child {
  border-bottom: none;
}

.deals__table tbody td {
  padding: 20px 15px;
}

.deals__table tbody td:first-child {
  padding-left: 0;
}

.deals__table tbody td:last-child {
  padding-right: 0;
}

.deals__text {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}

.deals__text i {
  font-size: 20px;
}

.deals__text--green {
  color: #20be60;
}

/* .deals__text--buy i {
  color: #20be60;
} */
.deals__text--sell i {
  color: #e2293b;
}

.deals__exchange {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.deals__exchange img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 5px;
}

.deals__exchange span {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}

.deals__exchange span.green {
  color: #20be60;
}

.deals__exchange span.red {
  color: #e2293b;
}

.deals__exchange i {
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  margin: 0 10px;
}

.deals {
  position: relative;
}

.chest-decoration {
  position: absolute;
  bottom: 0px;
  right: 20%;
  height: auto;
}

.modal-dialog-scrollable {
  max-height: calc(100% - 3.5rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.table-responsive {
  max-height: 400px;
  overflow-y: auto;
}

.custom-card-how {
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.12),
      rgba(5, 6, 20, 0.9));
  border-radius: 24px;
  color: white;
  padding: 20px 24px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 25px;
  margin-right: 15px;
  border: 1px solid var(--roo-color);
}

.img-container {
  position: relative;
  padding: 0;
}

.img-container img {
  display: block;
  width: 100%;
  height: 120px;
}

.img-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(44 35 83 / 0%), rgb(48 38 108));
  z-index: 1;
  border-radius: 0px 20px 20px 0px;
}

.custom-container {
  padding-top: 100px;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.company {
  position: relative;
}

.icon-circle {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border: 2px solid rgba(255, 255, 255, 0.05);
}

.icon-circle i {
  color: white;
  font-size: 16px;
}

/* TABLE */

.modal-backdrop {
  background-color: rgba(48, 38, 108, 0.8);
}

.modal-content {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(48, 38, 108, 0.2);
}

.modal-header {
  background-color: rgb(48 38 108 / 89%);
  border-bottom: 1px solid rgba(48, 38, 108, 0.2) !important;
  padding: 1rem;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
}

.modal-body {
  padding: 1.5rem;
  background-color: #362b6f;
  color: #ffffff82;
}

.modal__text {
  font-size: 1.1rem;
}

.table-responsive {
  max-height: 400px;
  overflow-y: auto;
  margin-top: 1rem;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
}

.custom-table th,
.custom-table td {
  vertical-align: top;
  border-top: 1px solid rgba(48, 38, 108, 0.2);
}

.custom-table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid rgba(48, 38, 108, 0.2);
  background-color: rgb(48 38 108 / 90%);
  font-weight: bold;
}

.modal-footer {
  background-color: rgb(48 38 108 / 89%);
  border-top: 1px solid rgba(48, 38, 108, 0.2) !important;
  padding: 1rem;
}

.btn-secondary {
  background-color: rgba(48, 38, 108, 0.8);
  border-color: rgba(48, 38, 108, 0.8);
}

.btn-secondary:hover {
  background-color: rgba(48, 38, 108, 0.9);
  border-color: rgba(48, 38, 108, 0.9);
}

.btn-primary {
  background-color: #897226;
  border-color: #897226;
}

.btn-primary:hover {
  background-color: #423815;
  border-color: #897226;
}

.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: #ddd;
  --bs-table-bg: rgb(48 38 108);
  --bs-table-border-color: #ffffff17;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
  --bs-table-active-color: var(--bs-emphasis-color);
  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  --bs-table-hover-color: var(--bs-emphasis-color);
  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
  width: 100%;
  margin-bottom: 0px;
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}

.article__content {
  font-size: 16px;
  line-height: 26px;
  color: #d0d0d0;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .header {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

.home-logo {
  width: 300px;
  height: 300px;
  /* box-sizing: border-box; */
  border: transparent;
  /* border-radius: 50%; */
  overflow: hidden;
  box-shadow: none;
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;

  img {
    width: 100%;
    height: auto;
  }
}

@keyframes float {
  0% {
    /* box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6); */
    transform: translatey(0px);
  }

  50% {
    /* box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2); */
    transform: translatey(-20px);
  }

  100% {
    /* box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6); */
    transform: translatey(0px);
  }
}

.total-given-away {
  font-size: 3rem;
  font-weight: bold;
  color: beige;
}

.given-away {
  color: yellow;
  font-size: 4rem;
  margin-top: -20px;
  font-family: Arial, Helvetica, sans-serif;
}

.dollar-signs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.dollar-signs span {
  font-size: 2rem;
  color: #00ff00;
}

.dollar-signs span:nth-child(odd) {
  color: #000000;
}

.givenAwayWrapper {
  background: url("../img/TOTAL.html\ GIVENAWAY\ final.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
  position: relative;
}

.given-away-text {
  color: #fff;
  font-size: 30px;
  text-align: center;
  position: absolute;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Arial, Helvetica, sans-serif;
}

.given-away-text-dollar {
  color: green;
  font-size: 30px;
  /* text-align: left; */
  position: absolute;
  bottom: 75px;
  left: 42%;
  transform: translateX(-50%);
  font-family: Arial, Helvetica, sans-serif;
}

ul {
  list-style: none;
}

.main {
  max-width: 75rem;
  padding: 3em 1.5em;
}

.main__heading {
  font-weight: 600;
  font-size: 2.25em;
  margin-bottom: 0.75em;
  text-align: center;
  color: #eceff1;
}

.cards {
  position: relative;
}

.cards__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5em;
}

.card {
  --flow-space: 0.5em;
  --hsl: var(--hue), var(--saturation), var(--lightness);
  flex: 1 1 14rem;
  padding: 1.5em 2em;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-items: start;
  gap: 1.25em;
  color: #f9fafb;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.14),
      rgba(5, 6, 20, 0.85));
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.card:nth-child(1) {
  --hue: 165;
  --saturation: 82.26%;
  --lightness: 51.37%;
}

.card:nth-child(2) {
  --hue: 291.34;
  --saturation: 95.9%;
  --lightness: 61.76%;
}

.card:nth-child(3) {
  --hue: 338.69;
  --saturation: 100%;
  --lightness: 48.04%;
}

.card__bullets {
  line-height: 1.4;
}

.card__bullets li::before {
  display: inline-block;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='16' title='check' fill='%23dddddd'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z' /%3E%3C/svg%3E");
  transform: translatey(0.25ch);
  margin-right: 1ch;
}

.card__heading {
  font-size: 1.05em;
  font-weight: 600;
  text-align: center;
}

.card__price {
  font-size: 1em;
  font-weight: 700;
  text-align: center;
}

.flow>*+* {
  margin-top: var(--flow-space, 1.25em);
}

.cta {
  display: block;
  align-self: end;
  margin: 1em 0 0.5em 0;
  text-align: center;
  text-decoration: none;
  color: #111827;
  background: #fbbf24;
  padding: 0.75em;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
}

.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
  opacity: var(--opacity, 0);
  -webkit-mask: radial-gradient(25rem 25rem at var(--x) var(--y),
      #000 1%,
      transparent 50%);
  mask: radial-gradient(25rem 25rem at var(--x) var(--y),
      #000 1%,
      transparent 50%);
  transition: 400ms mask ease;
  will-change: mask;
}

.overlay .card {
  background-color: hsla(var(--hsl), 0.15);
  border-color: hsla(var(--hsl), 1);
  box-shadow: 0 0 0 1px inset hsl(var(--hsl));
}

.overlay .cta {
  display: block;
  grid-row: -1;
  width: 100%;
  background-color: hsl(var(--hsl));
  box-shadow: 0 0 0 1px hsl(var(--hsl));
}

:not(.overlay)>.card {
  transition: 250ms transform ease, 250ms box-shadow ease, 400ms background ease;
  will-change: background, transform, box-shadow;
}

:not(.overlay)>.card:hover {
  --lightness: 95%;
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.75);
}

.container-register {
  margin-top: 200px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 200px;
}

.container-register .text {
  font-size: 55px;
  text-align: center;
}

.container-register .text2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  text-align: center;
  color: white;
  margin-top: 15px;
}

.container-register .how-to-register {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  flex-wrap: wrap;
  font-family: Arial, Helvetica, sans-serif;
}

.container-register .how-to-register .line {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.container-register .how-to-register .line>div {
  margin-left: 50px;
  margin-right: 50px;
  color: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}

.container-register .how-to-register .line div .btn {
  width: 145px;
  /* background: linear-gradient(270deg, #86ea8f 0%, #57a05a 100%); */
  text-align: center;
  line-height: 30px;
  border-radius: 15px;
  margin-top: 25px;
  cursor: pointer;
}

.crew {
  color: #fffb00;
}

@media only screen and (max-width: 900px) {
  .container-register {
    padding: 0px 50px;
  }

  .container-register .text {
    font-size: 40px;
  }

  .container-register .how-to-register .line {
    display: block;
    text-align: center;
  }

  .container-register .how-to-register .line>div:nth-child(2) {
    margin-top: 50px;
  }

  .container-register .how-to-register .line img {
    width: 100%;
    margin-top: 20px;
    margin-bottom: -35px;
  }
}

.get-bonuses__images {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 1s;
}

.get-bonuses__images-bomb {
  width: 209px;
  height: auto;
  position: absolute;
  top: 57%;
  left: 85%;
  animation: float-rotate-left 4s ease-in-out 0s infinite normal running;
}

@keyframes float-rotate-left {
  0% {
    transform: translateY(10px) rotate(0);
  }

  50% {
    transform: translateY(-15px) rotate(20deg);
  }

  to {
    transform: translateY(10px) rotate(0)
  }
}

.get-bonuses__images-ring {
  width: 162px;
  height: auto;
  position: absolute;
  top: 30%;
  left: 8%;
  animation: float 4s ease-in-out 0s infinite normal none running;
}

@keyframes float {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-25px)
  }

  to {
    transform: translateY(0)
  }
}

.get-bonuses__images-bonus {
  position: absolute;
  top: 130%;
  left: 5%;
  animation: float-rotate-right 4s ease-in-out 0s infinite normal running;
}

@keyframes float-rotate-right {
  0% {
    transform: translateY(10px) rotate(0)
  }

  50% {
    transform: translateY(-20px) rotate(-25deg)
  }

  to {
    transform: translateY(10px) rotate(0)
  }
}

.get-bonuses__images-crown {
  width: 90px;
  height: 90px;
  position: absolute;
  top: 170%;
  left: 85%;
  animation: float 4s ease-in-out 0s infinite normal none running;
}

@keyframes float {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-25px)
  }

  to {
    transform: translateY(0)
  }
}

.btn.btn-quarternary {
  color: #fff;
  border-color: transparent !important;
  background: linear-gradient(135deg, #6f5dff 0%, #4c32d9 60%, #3021a8 100%);
  box-shadow: 0 15px 35px rgba(76, 50, 217, 0.6);
}

.shared-container {
  max-width: 1280px
}

.landing-socials {
  display: flex;
  flex-direction: column;
  padding-top: 100px
}

@media screen and (min-width: 1024px)and (max-width:1280px) {
  .landing-socials {
    padding: 78px 38px 0
  }
}

@media screen and (max-width: 1023px) {
  .landing-socials {
    padding-top: 40px
  }
}

@media screen and (min-width: 375px)and (max-width:767px) {
  .landing-socials {
    padding-top: 66px
  }
}

.landing-socials-section {
  -webkit-column-gap: 30px;
  column-gap: 30px;
  display: flex;
  flex-direction: row !important;
  justify-content: center;
  margin-top: 70px
}

@media screen and (max-width: 1023px) {
  .landing-socials-section {
    align-items: center;
    flex-direction: column !important;
    justify-content: space-between
  }
}

.landing-socials-title {
  align-items: center;
  display: flex;
  margin-bottom: 13px
}

.landing-socials-title h2 {
  margin: 0
}

@media screen and (max-width: 1023px) {
  .landing-socials-title {
    flex-direction: column;
    margin-bottom: 0
  }
}

.mid-headline {
  color: #e0edfa;
  font-family: roc-grotesk, sans-serif;
  font-size: 55px;
  font-weight: 800
}

@media screen and (max-width: 1023px) {
  .mid-headline {
    font-size: 42px
  }
}

.mid-headline-primary {
  color: #ffc350
}

@media screen and (max-width: 1023px) {
  .tablet-max-hide {
    display: none !important
  }
}

.custom-social-card {
  background: linear-gradient(150deg,
      rgba(255, 255, 255, 0.14),
      rgba(5, 6, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  height: 357px;
  transition: -webkit-transform .3s ease-in-out 0s;
  transition: transform .3s ease-in-out 0s;
  transition: transform .3s ease-in-out 0s, -webkit-transform .3s ease-in-out 0s;
  width: 291px
}

.custom-social-card:hover {
  -webkit-transform: scale(1.04);
  transform: scale(1.04)
}

@media screen and (min-width: 1024px)and (max-width:1280px) {
  .custom-social-card {
    height: 267px;
    width: 217px
  }
}

@media screen and (max-width: 1023px) {
  .custom-social-card {
    margin-bottom: 40px
  }
}

@media screen and (min-width: 1024px)and (max-width:1280px) {
  .custom-social-card img {
    height: 101px;
    width: 101px
  }
}

.custom-social-card-footer {
  background: linear-gradient(160deg,
      rgba(15, 23, 42, 0.95),
      rgba(15, 23, 42, 0.6));
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top: 1px solid hsla(0, 0%, 61%, .2);
  margin-top: 24px;
  padding: 24px;
  padding-bottom: 0px;
}

@media screen and (min-width: 1024px)and (max-width:1280px) {
  .custom-social-card-footer {
    padding: 18px
  }
}

.custom-social-card-link.shared-btn-primary {
  border-radius: 4px;
  height: 48px;
  text-decoration: none;
  width: 100%
}

@media screen and (min-width: 1024px)and (max-width:1280px) {
  .custom-social-card-link.shared-btn-primary {
    height: 36px
  }
}

.custom-social-card h4 {
  color: rgba(226, 241, 255, .75);
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  margin: 24px 0 0
}

@media screen and (min-width: 1024px)and (max-width:1280px) {
  .custom-social-card h4 {
    font-size: 14px;
    margin: 18px 0 0
  }
}

.custom-social-card h5 {
  color: rgba(226, 241, 255, .75);
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  margin: 0;
  text-transform: uppercase
}

@media screen and (min-width: 1024px)and (max-width:1280px) {
  .custom-social-card h5 {
    font-size: 10px
  }
}

.custom-social-card-icon {
  color: rgba(226, 241, 255, .75);
  height: 48px;
  position: absolute;
  width: 48px
}

@media screen and (min-width: 1024px)and (max-width:1280px) {
  .custom-social-card-icon {
    height: 36px;
    width: 36px
  }
}

.custom-social-card-halo {
  height: 136px;
  width: 136px
}

@media screen and (min-width: 1024px)and (max-width:1280px) {
  .custom-social-card-halo {
    height: 101px;
    width: 101px
  }
}

.custom-social-card .facebook {
  color: #bb17bb
}

.custom-social-card .telegram {
  color: #29B6F6
}

.custom-social-card .kick {
  color: #70e343
}

.custom-social-card .youtube {
  color: #f52c00
}

.custom-social-card .instagram {
  fill: url(#paint0_linear_274_2753)
}


@media screen and (min-width: 1024px)and (max-width:1280px) {
  .custom-social-card-footer {
    padding: 18px
  }
}