/**
* Template Name: Gp - v4.6.0
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

:root {
  --token: #f4c444;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
}

a {
  color: #ffc451;
  text-decoration: none;
}

a:hover {
  color: #ffd584;
  text-decoration: none;
}

h1 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h2 {
  color: #fff;
  font-weight: bold;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}
/*--------------------------------------------------------------
  # Background Video
  --------------------------------------------------------------*/
video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
  transition: 1s opacity;
}
/*--------------------------------------------------------------
  # Launch Timer ( clock )
  --------------------------------------------------------------*/
#clock html,
body {
  height: 100%;
}

#clock body {
  background: #0f3854;
  background: radial-gradient(ellipse at center, #0a2e38 0%, #000000 70%);
  background-size: 100%;
}

#clock p {
  margin: 0;
  padding: 0;
}

#clock {
  font-family: "Share Tech Mono", monospace;
  color: #ffffff;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 250px;
  transform: translate(-50%, -50%);
  color: #daf6ff;
  text-shadow: 0 0 20px #0aafe6, 0 0 20px rgba(10, 175, 230, 0);
}
#clock .time {
  letter-spacing: 0.05em;
  font-size: 80px;
  padding: 5px 0;
}
#clock .date {
  letter-spacing: 0.1em;
  font-size: 24px;
}
#clock .text {
  letter-spacing: 0.1em;
  font-size: 12px;
  padding: 20px 0 0;
}
/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 10px;
  z-index: 996;
  background: #ffc107;
  width: 35px;
  height: 35px;
  border: 2px solid #000;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #151515;
  line-height: 0;
}
.back-to-top:hover {
  background: #000000c4;
}
.back-to-top:hover i {
  color: #ffc451;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: transparent;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #ffc451;
  border-top-color: #151515;
  border-bottom-color: transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 5px;
  background: transparent;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #000000c4;
}
#header .logo {
  font-size: 22px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}
#header .logo a {
  color: #fff;
}
#header .logo a span {
  color: #ffc107;
}
#header .logo img {
  max-height: 40px;
}
.bi-bank::before {
  content: "\f62e";
  vertical-align: 0;
}
/* --- Project title styling --- */
.logo-text {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px; /* same as nav text */
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.2s ease;
  line-height: 1;
}

.site-logo {
  height: 40px; /* just slightly taller than font size */
  width: auto;
  border-radius: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.95;
}

.logo-text:hover .site-logo {
  transform: scale(1.05);
  opacity: 1;
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .logo-text {
    margin-right: 30px;
  }
}

.logo-text .highlight {
  color: #f0b90b; /* BNB yellow accent */
}

.logo-text:hover {
  color: #f0b90b;
}

/* --------------------------------------------------------------
   # Mobile Header Spacing Fix
-------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Keep header content aligned neatly on mobile */
  #header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 6px;
    padding: 6px 10px;
  }

  /* Ensure logo and text align perfectly */
  .logo-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 1.1;
  }

  .site-logo {
    height: 16px;
    width: auto;
    position: relative;
    top: 1px; /* fine-tune vertical alignment */
  }

  /* Keep wallet button in same line, no overlap */
  .wallet-container {
    margin-left: auto;
    display: flex;
    align-items: center;
  }

  .connect-btn {
  padding: 4px 10px;       /* smaller padding */
  font-size: 14px;         /* smaller text */
  border-radius: 6px;      /* optional: make it slightly rounded */
}

.wallet-container .btn-sm {
  padding: 3px 8px;
  font-size: 13px;
}

  /* Hide any unnecessary nav spacing */
  #navbar {
    display: none; /* keep it hidden or toggleable for mobile */
  }
}

/*--------------------------------------------------------------
#  Get Started Button 
--------------------------------------------------------------*/
.wallet-container {
  position: relative;
  display: inline-block;
}

.connect-btn {
  background: #f0b90b;
  border: none;
  color: #000;
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.connect-btn:hover {
  background: #ffcc00;
  transform: scale(1.03);
}

/* Dropdown styles */
.wallet-dropdown {
  display: none;
  position: absolute;
  right: 0;
  background: #1f1f1f;
  border: 1px solid #333;
  border-radius: 10px;
  min-width: 160px;
  z-index: 100;
  text-align: left;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.wallet-dropdown a,
.wallet-dropdown button {
  display: block;
  width: 100%;
  color: #fff;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 6px 8px;
}

.wallet-dropdown a:hover,
.wallet-dropdown button:hover {
  background: #ffcc00;
}

.wallet-container:hover .wallet-dropdown {
  display: block;
}

.connect-btn {
  color: #fff;
  border-radius: 5px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  border: 1px solid #000;
  background: #ffc107;
  width: auto;
  font-size: 15px;
  font-weight: 600;
}
.connect-btn:hover {
  background: #624a09;
  color: #fff;
  border-color: #ffc451;
}
@media (max-width: 992px) {
  .connect-btn {
    padding: 7px 20px 8px 20px;
  }
}
.deposit-btn {
  color: #000000;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
  width: 245px;
  height: 50px;
  padding: 9px 10px 9px 10px;
  white-space: nowrap;
  font-size: 19px;
  margin-bottom: 60px;
  margin-top: 50px;
  background-color: #ffc107;
  box-shadow: 0px 0px 5px 1px;
  border: 1px solid black;
  display: inline-block;
  margin-bottom: 150px;
}
.deposit-btn:hover {
  color: rgba(14, 13, 13, 0.8);
  background-color: #f4c444;
}
/*.withdraw-btn {
  color: #000000;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
  height: 50px;
  padding: 9px 10px 9px 10px;
   white-space: nowrap; 
  font-size: 19px;
    margin-bottom: 20px;
    margin-top: 20px; 
  background-color: #ffc107;
  box-shadow: 0px 0px 5px 0px;
  border: 1px solid black;
  display: inline-block;
}

.withdraw-btn:hover {
  color: #000000;
  background-color: #f4c444;
} */
.approve-btn {
  color: #000;
  border-radius: 7px;
  border: 1px solid #000;
  max-height: 30px;
  padding-bottom: 7px;
  font-size: 16px;
  font-weight: bold;
  background-color: #ffc107;
  box-shadow: 0px 0px 5px 1px;
  width: 80px;
  flex: inherit;
  display: inline-flex;
  /* position: static; */
}
@media (max-width: 250px) {
  .approve-btn {
    color: #000;
    border-radius: 7px;
    border: 1px solid #000;
    max-height: 30px;
    padding-bottom: 7px;
    font-size: 16px;
    font-weight: bold;
    background-color: #ffc107;
    box-shadow: 0px 0px 5px 1px;
    width: 80px;
    flex: inherit;
    display: inline-table;
    margin-left: 0px;
  }
}
.btn-invest {
  color: #000000;
  border-radius: 7px;
  width: 100%;
  max-height: 40px;
  padding-top: 7px;
  padding-bottom: 7px;
  white-space: nowrap;
  /* transition: 0.3s; */
  font-size: 16px;
  font-weight: bold;
  margin-top: 15px;
  display: inline-block;
  background-color: #ffc107; /* invest button back color */
  box-shadow: 0px 0px 5px 1px;
  border: 1px solid black;
}
.btn-invest:hover {
  color: #000000;
  background-color: #f4c444;
}
.btn-reinvest {
  color: #000000;
  border-radius: 7px;
  width: 100%;
  max-height: 40px;
  padding-top: 7px;
  padding-bottom: 7px;
  white-space: nowrap;
  /* transition: 0.3s; */
  font-size: 16px;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 10px;
  display: inline-block;
  background-color: #ffc107;
  box-shadow: 0px 0px 5px 1px;
  border: 1px solid black;
}

.btn-reinvest:hover {
  color: #000000;
  background-color: #f4c444;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.nav-logo {
  width: 22px;
  padding-right: 5px;
  padding-top: 3px;
}
.nav-logo2 {
  width: 22px;
  padding-right: 5px;
  padding-bottom: 0px;
}
.contract-logo {
  width: 22px;
  padding-right: 5px;
}
.navbar {
  padding: 0;
  margin: auto;
  margin-left: 142px; /* adjust value (20–80px) depending on desired spacing */
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: start;
  justify-content: center;
  /* padding: 10px 0 10px 30px; */
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  /* transition: 0.3s; */
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover {
  color: #f4c444;
}
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #ffc107;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.nav-divider {
  width: 1px;
  height: 22px;
  margin-right: 15px;
  margin-left: 15px;
  background-color: #e4ebf3;
}

.mobile-margin-top-10 {
  margin-top: 10px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  font-weight: 400;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  background-color: var(--token);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100%;
  padding-bottom: 50px;
}

#hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  position: relative;
  text-align: center;
  padding-top: 0.5rem !important;
  padding-bottom: 0 !important;
}

.hero-logo {
  padding-left: 0px;
  padding-bottom: 30px;
  max-width: 700px;
}

#hero h1 {
  margin: 0;
  padding-bottom: 50px;
  padding-top: 150px;
  font-weight: bold;
  line-height: 64px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 50px;
}

@media (min-width: 1200px) {
  .col-xl-6 {
    flex: 0 0 auto;
    width: 100%;
  }
}
#hero h1 span {
  color: #fff;
}

#hero h2 {
  color: #000000;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  margin-top: 0.2rem;   /* reduce gap above text */
  margin-bottom: 0.6rem; /* reduce gap below subtitle text */
}
#hero .icon-box {
  /* total avax invested, reffs, lott. contract box */
  background-color: #000000c4;
  padding: 10px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0px 5px 20px rgb(255 255 255 / 30%),
    inset 0px 0px 0px rgb(0 0 0 / 32%);
  border-radius: 10px;
  height: 100%;
  overflow-wrap: anywhere;
  text-align: center;
  color: white;
  margin-top: 0.2rem;   /* pull icon boxes closer upward */
}
#hero img.responsive-banner {
  margin-bottom: 0.2rem;
}
#hero .icon-box:hover {
  /* total avax invested, reffs, lott. contract box */
  padding: 10px;
  transition: ease-in-out 0.8s;
  border: 1px solid rgb(255, 191, 0);
  box-shadow: 0px 5px 20px rgb(255 191 0 / 30%),
    inset 0px 0px 0px rgb(0 0 0 / 32%);
  border-radius: 10px;
  height: 100%;
  overflow-wrap: anywhere;
  text-align: center;
  color: white;
}
#hero .icon-box2 {
  background-color: #000000c4;
  padding: 10px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0px 5px 20px rgb(255 255 255 / 30%),
    inset 0px 0px 0px rgb(0 0 0 / 32%);
  border-radius: 10px;
  height: 100%;
  overflow-wrap: anywhere;
  text-align: center;
  color: #fff;
  display: inherit;
  justify-content: space-evenly;
  align-content: center;
  width: 380px;
}
#hero .icon-box i {
  font-size: 15px;
  line-height: 1;
  color: #fff;
}
#hero .icon-box h2 {
  padding: 0;
  line-height: 1;
  font-size: 18px;
}

.hero-row {
  padding: 15px;
}
.hero-row2 {
  padding: 25px;
  display: grid;
}

#hero h4 {
  color: #fff;
  font-size: 22px;
}

#hero .icon-box h3 a {
  color: rgba(255, 255, 255, 0.5);
  transition: ease-in-out 0.3s;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero {
    height: auto;
    padding-bottom: 100px;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
  #hero .container {
    padding-top: 74px;
  }
}
.avax {
  /* color: #ffc107; */
  color: white;
  font-weight: bold;
}
.totals-text {
  color: #fff;
  font-size: 15px;
}
.totals {
  line-height: 1;
  padding: 5px;
}
.disclaimer {
  font-size: 13px;
  padding: 15px 10px 15px 10px;
  transition: ease-in-out 0.3s;
  height: auto;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 35px;
  margin-right: 20px;
  border-radius: 10px;
  max-width: 1300px;
}

.disclaimer i {
  padding-right: 1px;
  font-size: 15px;
  color: #ffc451;
  line-height: 2;
}

.usd {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  width: auto;
}

#eth-to-spend1:disabled {
  background-color: #0d111e;
  color: rgba(255, 255, 255, 0.4);
}

#eth-to-spend2:disabled {
  background-color: #0d111e;
  color: rgba(255, 255, 255, 0.4);
}

#eth-to-spend3:disabled {
  background-color: #0d111e;
  color: rgba(255, 255, 255, 0.4);
}

#eth-to-spend4:disabled {
  background-color: #0d111e;
  color: rgba(255, 255, 255, 0.4);
}
/* Stats */

.stats-container {
  /* dashboard box */
  font-size: 18px;
  text-align: left;
  background-color: #000000c4;
  transition: ease-in-out 0.3s;
  height: 100%;
  width: auto;
  text-align: center;
  margin-top: 30px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 32px;
  padding-bottom: 32px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  /* border: 1px solid #E84142; */
  box-shadow: 0px 5px 20px rgb(255 255 255 / 30%),
    inset 0px 0px 0px rgb(0 0 0 / 32%);
}
.stats-container:hover {
  border: 1px solid rgb(255, 191, 0);
  box-shadow: 0px 5px 20px rgb(255 191 0 / 30%),
    inset 0px 0px 0px rgb(0 0 0 / 32%);
}
.stats-container ul {
  list-style: none;
  justify-content: space-evenly;
  display: flex;
  flex-wrap: wrap;
  padding-left: unset;
  width: auto;
  margin-bottom: 40px;
}

.stats-referral-container {
  padding-bottom: unset;
}

.stats-referral-container ul {
  margin-bottom: unset;
}

.referral-link {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 40px;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 15px;
  width: auto;
  overflow-wrap: anywhere;
}

.referral-link i {
  padding-left: 10px;
  padding-right: 5px;
}

.stats-icon-box {
  background-color: #000000c4;
  padding: 10px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0px 5px 20px rgb(255 255 255 / 30%),
    inset 0px 0px 0px rgb(0 0 0 / 32%);
  border-radius: 10px;
  height: 100%;
  overflow-wrap: anywhere;
  text-align: center;
  color: white;
}
.stats-icon-box:hover {
  border: 1px solid rgb(255, 191, 0);
  box-shadow: 0px 5px 20px rgb(255 191 0 / 30%),
    inset 0px 0px 0px rgb(0 0 0 / 32%);
}
.stats-referral-box:hover {
  border: 1px solid rgb(255, 191, 0);
  box-shadow: 0px 5px 20px rgb(255 191 0 / 30%),
    inset 0px 0px 0px rgb(0 0 0 / 32%);
}
@media only screen and (max-width: 480px) {
  .stats-icon-box {
    border: none;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.4);
  }
}

/* REFERRAL BOX (MATCHES OTHER CARDS) */
.referral-box {
  background: rgba(255, 255, 255, 0.08);  /* same as stat cards */
  background-color: #000000c4;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 30px auto 50px;
  width: 80%;
  max-width: 900px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10; /* bring it above overlapping elements */
  backdrop-filter: none !important;
}

/* TEXT STYLES */
.referral-box strong {
  color: #ffc107;
  font-weight: 600;
}

.referral-box .ref-text {
  display: block;
  margin-top: 0.5rem;
  word-wrap: break-word;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Courier New", monospace;
  font-size: 1.2rem;
}



.referral-box .ref-text2 {
  display: block;
  margin-top: 0.5rem;
  word-wrap: break-word;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Courier New", monospace;
  font-size: 1.2rem;
}

/* COPY BUTTON ICON */
.referral-box i {
  color: #ffc107;
  cursor: pointer;
  margin-left: 8px;
  transition: transform 0.2s ease;
  position: relative;
  z-index: 20;
}

video, canvas, .background-overlay {
  pointer-events: none; /* prevent background from intercepting clicks */
}

.referral-box i:hover {
  transform: scale(1.2);
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .referral-box {
    width: 90%;
    padding: 1rem;
    font-size: 0.9rem;
  }
}

.overview {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  margin-left: 15px;
  margin-bottom: 20px;
}

.overview strong {
  padding-right: 5px;
}

.overview i {
  display: inline-flex;
  padding-right: 5px;
  font-size: 17px;
  color: #ffc451;
  line-height: 1.5;
}

.overview #user-balance {
  color: #ffc451;
  padding-left: 5px;
  padding-right: 5px;
}

.overview #max-investment {
  color: #ffc451;
  padding-left: 5px;
  padding-right: 5px;
}

.stats-icon-box #user-total-deposits {
  color: #fff;
}

.stats-icon-box #user-dividends-and-referrals {
  color: #fff;
}

.stats-icon-box #user-total-withdrawn {
  color: #fff;
}

.stats-icon-box #user-total-referrals {
  color: #fff;
}

.stats-icon-box strong {
  font-weight: bolder;
  font-size: 16px;
}

.stats-referral-box {
  padding: 20px 15px 20px 15px;
  transition: ease-in-out 0.3s;
  height: 100%;
  font-size: 15px;
  width: 150px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
.stats-icon-box h4 {
  font-weight: 700;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding-bottom: 100px;
  overflow: hidden;
}

.section-title-plans {
  padding-bottom: 20px;
  padding-top: 40px;
  color: rgb(255, 255, 255);
}

.section-title {
  padding-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #fff;
  margin: 4px 10px;
}
.section-title p {
  margin: 0;
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.8);
}
section #withdraw {
  padding-bottom: 1px !important;
  overflow: hidden;
}

#withdraw .btn-text strong {
  font-weight: 700 !important; /* ensure it overrides any previous rule */
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services {
  /*  padding-top: 40px; */
  background-color: transparent;
}

.form-control {
  background-color: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.form-control:focus {
  color: #fff;
  background-color: #000;
}

.services .lottery-container {
  /*lottery box */
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: #000000c4;
  box-shadow: 0px 5px 20px rgb(255 255 255 / 30%),
    inset 0px 0px 0px rgb(0 0 0 / 32%);

  border-radius: 10px;
  /* height: 100%; */
  /* min-width: 300px; */

  justify-content: space-around;
  padding: 20px 25px 15px 25px;
}

.services .approve-container {
  /* approve box */
  /* border: 1px solid #E84142; */
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: #000000c4;
  box-shadow: 0px 5px 20px rgb(255 255 255 / 30%),
    inset 0px 0px 0px rgb(0 0 0 / 32%);

  border-radius: 10px;
  height: 100%;
  /* min-width: 300px; */

  justify-content: space-around;
  padding: 20px 25px 20px 25px;
}

.services .icon-box {
  background-color: #000000c4;
  padding: 25px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 191, 000, 0.1);

  border-radius: 10px;
  height: 100%;
  overflow-wrap: anywhere;
  text-align: center;
  color: white;
}

.services .icon-box .icon .img-fluid {
  /* width: 1024px;
  height: 516px; */
  max-width: 100%;
  margin-right: 5px;
}
.services .icon-box .icon {
  margin: 0 auto;
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}
.services .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon h5 {
  margin-bottom: 0;
  line-height: 1.6;
  text-align: left;
}
.services .icon-box .icon h4 {
  margin-bottom: 0;
  line-height: 1.5;
  text-align: left;
}

.services .icon-box h4 {
  font-weight: 700;
  font-size: 20px;
}

.services .icon-box h5 {
  color: rgba(255, 255, 255, 0.7); /* plan text */
  font-size: 15px;
}

.services .icon-box h4 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  border: 1px solid rgb(255, 191, 0);
  box-shadow: 0px 5px 20px rgb(255 191 0 / 30%),
    inset 0px 0px 0px rgb(0 0 0 / 32%);
  transition: 0.1s ease-in;
}
.main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
}
#services .btn {
  width: 100%;
  border: 2px solid #323232;
  text-align: center;
  cursor: pointer;
  background: #ffc107;
  overflow: hidden;
  position: relative;
}
#services .btn:hover {
  width: 100%;
  border: 2px solid #323232;
  text-align: center;
  cursor: pointer;
  background: #0e0e0e;
  overflow: hidden;
  position: relative;
}
#services .btn p {
  color: #000000;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.4s;
}
#services .btn:hover p {
  color: #ffc107;
}
#services .btn span {
  position: absolute;
  transition: all 0.4s;
}
#services .btn span:nth-child(2),
#services .btn span:nth-child(3) {
  width: 100%;
  height: 2px;
  background-color: #ffbf00;
}
#services .btn span:nth-child(2) {
  top: 0;
  left: 0;
  transform: translateX(-100%);
}
#services .btn span:nth-child(3) {
  bottom: 0;
  left: 0;
  transform: translateX(100%);
}

#services .btn span:nth-child(4),
#services .btn span:nth-child(5) {
  width: 2px;
  height: 100%;
  background-color: #ffbf00;
}
#services .btn span:nth-child(4) {
  top: 0;
  right: 0;
  transform: translateY(-100%);
}
#services .btn span:nth-child(5) {
  bottom: 0;
  left: 0;
  transform: translateY(100%);
}
#services .btn:hover span {
  transform: translate(0);
}
.deposits {
  /* margin-right: 1rem; */
  /* margin-left: 1rem; */
  padding: 15px;
  /* width: inherit;
  }
  @media only screen and (max-width: 350px) {
    /* horizontal scrollbar for tables if mobile screen */
}
.table-dark {
  overflow-x: auto;
  display: block;
}
.img-fluid {
  border-radius: 7px;         /* Controls how rounded the corners are */
  overflow: hidden;            /* Ensures content inside doesn't spill out */
  display: block;              /* Removes unwanted inline spacing */
  width: 100%;                 /* Keeps responsiveness */
}

.table-dark {
  --bs-table-bg: #000;
  border-color: rgba(170, 151, 151, 0.3);
  /* padding: 50px; */
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.table-deposits {
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.6);
  margin: auto;
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}
.table-deposits th, .table-deposits td {
  padding: 8px 10px;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 870px) {
  .table-deposits {
    border-radius: 10px;
    color: white;
    font-size: 9px;
    display: block;
  }
  .thead-dark th {
    background-color: #2c3e50;
    color: #fff;
    font-weight: bold;
  }
  .no-data td {
    text-align: center;
    color: #777;
    font-style: italic;
    padding: 15px;
  }
  .table-deposits tr:hover:not(.no-data) {
    background-color: #f5f5f5;
  }

  .main-wrapper h2 {
    justify-content: center;
    display: flex;
    font-size: 200px;
  }
}
.timer {
  padding: 20px;
}
.number {
  display: grid;
  margin: 5px;
}

.table > :not(:first-child) {
  border-top: unset;
}
.mt-1 {
  margin-top: 0.25rem !important;
  justify-content: space-evenly;
}
@media (min-width: 768px) {
  .col-md-4 {
    flex: auto;
    /*   width: 0%; */
  }
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
#footer {
  background: #000000c4;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
  padding: 17px;
}
#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 10px 0 10px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 10px;
}
#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
#footer .footer-top .footer-info h3 span {
  color: #ffc451;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #ffc451;
  color: #151515;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ffc451;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #ffc451;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}
#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ffc451;
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #ffcd6b;
}
#footer .copyright {
  text-align: center;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/*--------------------------------------------------------------
  # Frequently Asked Questions
  --------------------------------------------------------------*/

.faq .faq-list {
  padding: 40px;
  background: #000000c4;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0px 5px 20px rgb(255 255 255 / 30%),
    inset 0px 0px 0px rgb(0 0 0 / 32%);
}
.faq .faq-list:hover {
  border: 1px solid rgb(255, 191, 0);
  box-shadow: 0px 5px 20px rgb(255 191 0 / 30%),
    inset 0px 0px 0px rgb(0 0 0 / 32%);
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 20px;
  border-radius: 5px;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
}
.faq .faq-list a {
  color: #fff;
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  /* padding: 0 30px; */
  outline: none;
  cursor: pointer;
}
.faq .faq-list i {
  font-size: 19px;
  /* margin-left: 100px; */
  color: #ffc107;
}
.faq .faq-list span {
  color: #fff;
  margin-left: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.faq .faq-list h2 {
  padding-bottom: 30px;
  padding-top: 20px;
  display: flex;
  font-weight: 600;
  flex-wrap: wrap;
  color: #ffc107;
  justify-content: center;
  font-family: cursive;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #ffc451;
}
.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  color: #ffffff;
  margin: auto;
  display: table;
}
@media (min-width: 280) {
  .faq .faq-list p {
    padding-left: 0px;
    margin: auto;
    display: table;
  }
}

.faq .faq-list b {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  color: #ffffff;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: rgba(255, 255, 255, 0.8);
}
.faq .faq-list a.collapsed:hover {
  color: #ffc451;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}
.faqbox {
  margin: auto;
  display: contents;
}

/*--------------------------------------------------------------
  # Youtube Video's
  --------------------------------------------------------------*/
iframe {
  margin-bottom: 25px;
}
.youtube {
  position: relative;
  padding-bottom: 80px;
  margin-top: 50px;
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 1200px) {
  .youtube {
    display: grid;
    padding-bottom: 100px;
  }
}
/*--------------------------------------------------------------
  # Dropdown Button
  --------------------------------------------------------------*/
/* Style The Dropdown Button */
.dropbtn {
  background-color: transparent;
  color: white;
  border: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
}

.dropbtn:hover {
  background-color: transparent;
  color: #ffc451;
  border: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  /* position: relative; */
  display: flex;
  justify-content: center;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000000c4;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 10px;
  margin-top: 25px;
}

/* Links inside the dropdown */
.dropdown-content a {
  padding: 12px 16px;
  border-radius: 10px;
  /*  justify-content: start; */
  font-size: 15px;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #000000c4;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: transparent;
}
/*--------------------------------------------------------------
  # Placeholder
  --------------------------------------------------------------*/
@import url(https://fonts.googleapis.com/css?family=Cabin:400);

.webdesigntuts-workshop {
  text-align: center;
  width: 100%;
}

.webdesigntuts-workshop:before,
.webdesigntuts-workshop:after {
  content: "";
  display: block;
  left: 50%;
  margin: 0 0 0 -400px;
  position: absolute;
  width: 800px;
}

.webdesigntuts-workshop:before {
  background: #000000c4;
  background: -webkit-linear-gradient(left, #e59285, #444, #e59285);
  background: -moz-linear-gradient(left, #e59285, #444, #e59285);
  background: -o-linear-gradient(left, #e59285, #444, #e59285);
  background: -ms-linear-gradient(left, #e59285, #444, #e59285);
  background: linear-gradient(left, #e59285, #444, #e59285);
  top: 192px;
}

.webdesigntuts-workshop:after {
  background: #000000c4;
  background: -webkit-linear-gradient(left, #151515, #000, #e57462);
  background: -moz-linear-gradient(left, #151515, #000, #e57462);
  background: -o-linear-gradient(left, #151515, #000, #e57462);
  background: -ms-linear-gradient(left, #151515, #000, #e57462);
  background: linear-gradient(left, #151515, #000, #e57462);
  top: 191px;
}

.webdesigntuts-workshop form {
  background: #000000c4;
  background: -webkit-linear-gradient(#c2ac6a, #111);
  background: -moz-linear-gradient(#c2ca7a, #111);
  background: -o-linear-gradient(#9e7e1d, #111);
  background: -ms-linear-gradient(#796836, #111);
  background: linear-gradient(#523f09, #111);
  border: 1px solid #000;
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px #c2ac6c;
  display: contents;
  font-size: 0px;
  position: relative;
  z-index: 1;
  width: fit-content;
}

.webdesigntuts-workshop input {
  background: #000000c4;
  border: 1px solid #444;
  border-radius: 5px;
  box-shadow: 0 2px 0 #000;
  color: rgb(255, 255, 255);
  display: block;
  float: left;
  font-family: "Cabin", helvetica, arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  height: 40px;
  margin: 0;
  text-shadow: 0 -1px 0 #000;
  position: relative;
  z-index: 10;
}
@media (min-width: 1200px) {
  .webdesigntuts-workshop input {
    background: #000000c4;
    border: 1px solid #444;
    border-radius: 5px;
    box-shadow: 0 2px 0 #000;
    color: #fff;
    float: left;
    font-family: "Cabin", helvetica, arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    height: 40px;
    text-shadow: 0 -1px 0 #000;
    position: relative;
    z-index: 10;
  }
}

/* Ensure no overlay divs block it */
.webdesigntuts-workshop, 
.webdesigntuts-workshop * {
  pointer-events: auto;
}
.main, .btn {
  z-index: 1;
}

.ie .webdesigntuts-workshop input {
  line-height: 40px;
}

.webdesigntuts-workshop input::-webkit-input-placeholder {
  color: #888;
}

.webdesigntuts-workshop input:-moz-placeholder {
  color: #888;
}

.webdesigntuts-workshop input:focus {
  -webkit-animation: glow 800ms ease-out infinite alternate;
  -moz-animation: glow 800ms ease-out infinite alternate;
  -o-animation: glow 800ms ease-out infinite alternate;
  -ms-animation: glow 800ms ease-out infinite alternate;
  animation: glow 800ms ease-out infinite alternate;
  border-color: #9b7e28;
  box-shadow: 0 0 5px rgba(0, 255, 0, 0.2), inset 0 0 5px rgba(0, 255, 0, 0.1),
    0 2px 0 #000;
  color: #efe;
  outline: none;
}

.webdesigntuts-workshop input:focus::-webkit-input-placeholder {
  color: #efe;
}

.webdesigntuts-workshop input:focus:-moz-placeholder {
  color: #efe;
}

.webdesigntuts-workshop button {
  background: #000000c4;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -o-box-sizing: content-box;
  -ms-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid #444;
  border-left-color: #000;
  border-radius: 0 5px 5px 0;
  box-shadow: 0 2px 0 #000;
  color: #fff;
  display: block;
  float: left;
  font-family: "Cabin", helvetica, arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  height: 40px;
  line-height: 40px;
  margin: 0;
  padding: 0;
  position: relative;
  text-shadow: 0 -1px 0 #000;
  width: 80px;
}

.webdesigntuts-workshop button:hover,
.webdesigntuts-workshop button:focus {
  background: #000000c4;
  color: #ffd350;
  outline: none;
}

.webdesigntuts-workshop button:active {
  background: #000000c4;
  box-shadow: 0 1px 0 #000, inset 1px 0 1px #222;
  top: 1px;
}

@-webkit-keyframes glow {
  0% {
    border-color: #947b32;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.2), inset 0 0 5px rgba(0, 255, 0, 0.1),
      0 2px 0 #000;
  }
  100% {
    border-color: #ffd350;
    box-shadow: 0 0 20px rgb(255, 191, 0), inset 0 0 10px rgb(255, 191, 0),
      0 2px 0 #000;
  }
}

@-moz-keyframes glow {
  0% {
    border-color: #aa8824;
    box-shadow: 0 0 5px rgba(255, 191, 0, 0.6),
      inset 0 0 5px rgba(255, 191, 0, 0.1), 0 2px 0 #000;
  }
  100% {
    border-color: #ffd760;
    box-shadow: 0 0 20px rgba(255, 191, 0, 0.6),
      inset 0 0 10px rgba(255, 191, 0, 0.4), 0 2px 0 #000;
  }
}

@-o-keyframes glow {
  0% {
    border-color: #9b8133;
    box-shadow: 0 0 5px rgba(255, 191, 0, 0.2),
      inset 0 0 5px rgba(255, 191, 0, 0.1), 0 2px 0 #000;
  }
  100% {
    border-color: #ffd65c;
    box-shadow: 0 0 20px rgba(255, 191, 0, 0.6),
      inset 0 0 10px rgba(255, 191, 0, 0.4), 0 2px 0 #000;
  }
}

@-ms-keyframes glow {
  0% {
    border-color: #967d31;
    box-shadow: 0 0 5px rgba(255, 191, 0, 0.2),
      inset 0 0 5px rgba(255, 191, 0, 0.1), 0 2px 0 #000;
  }
  100% {
    border-color: #ffd969;
    box-shadow: 0 0 20px rgba(255, 191, 0, 0.6),
      inset 0 0 10px rgba(255, 191, 0, 0.4), 0 2px 0 #000;
  }
}

@keyframes glow {
  0% {
    border-color: #806b2c;
    box-shadow: 0 0 5px rgba(255, 191, 0, 0.2),
      inset 0 0 5px rgba(255, 191, 0, 0.1), 0 2px 0 #000;
  }
  100% {
    border-color: #ffd75e;
    box-shadow: 0 0 20px rgba(255, 191, 0, 0.6),
      inset 0 0 10px rgba(255, 191, 0, 0.4), 0 2px 0 #000;
  }
}
/*--------------------------------------------------------------
# Withdraw button
--------------------------------------------------------------*/
/* === Global Monospace Font (unify all UI + tables) === */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;700&display=swap");

html, body, button, a, span, strong, div, p, h1, h2, h3, h4, h5, h6, 
input, label, table, th, td {
  font-family: "Roboto Mono", monospace !important;
  letter-spacing: 0.5px;
  font-weight: 400;
}

#withdraw {
  text-align: center;
}

/* Keep your existing .btn2 style, just tweak */
#withdraw .btn2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #000;
  font-weight: bold;
  border-radius: 10px;
  height: 50px;
  padding: 10px 20px;
  font-size: 18px;
  background-color: #ffc107;
  box-shadow: 0px 0px 5px 0px;
  border: 1px solid black;
  cursor: pointer;
  overflow: hidden; /* ensures border animations stay inside */
}

.btn-text {
  position: relative;
  z-index: 2; /* keep text above animated borders */
}

#user-withdraw-countdown {
  font-weight: bold;
  position: relative;
  z-index: 2;
}

/* Animation borders only apply to spans with class .border-anim */
#withdraw a .border-anim {
  position: absolute;
  display: block;
}

/* Keep your animated border rules, but target .border-anim classes */
#withdraw a .border-anim.top {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f7b900);
  animation: animate1 1s linear infinite;
}

#withdraw a .border-anim.right {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #f5b801);
  animation: animate2 1s linear infinite;
  animation-delay: 0.25s;
}

#withdraw a .border-anim.bottom {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #f5b801);
  animation: animate3 1s linear infinite;
  animation-delay: 0.5s;
}

#withdraw a .border-anim.left {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #f5b801);
  animation: animate4 1s linear infinite;
  animation-delay: 0.75s;
}


@keyframes animate4 {
  0% {
    bottom: -100%;
  }
  50%,
  100% {
    bottom: 100%;
  }
}

/* Banner layout styles (moved outside keyframes) */
.banner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1px;  /* less space above */
  margin-bottom: 1px; /* some breathing room below */
}

.responsive-banner {
  width: 100%;
  max-width: 650px;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* Optional: make it smaller on mobile */
@media (max-width: 600px) {
  .responsive-banner {
    max-width: 95%;
  }
}
