/* 
BOT custom css 
*/
:root {
  /* Base Colors */
  --bg-color: #ffffff; /* dark background */
  --card-color: #242526;
  --dark-color: #000000;
  --primary-color: #d90018;
  --soft-primary: rgba(64, 106, 255, 0.1);
  --text-color: hsla(0, 0%, 100%, 0.5);
  --soft-text: hsla(0, 0%, 100%, 0.1);
  --grey-bg: rgba(58, 59, 60, 1);
  --light-primary: #d9001971;
  --text-white: rgb(238, 238, 238);
  --text-grey: #8d8d8d;
  --night-blue: rgba(6, 14, 40, 1);
}

* {
  font-family: "Rubik", sans-serif !important;
}

html,
body,
* {
  font-family: "Rubik", sans-serif !important;
}

body {
  background-color: var(--bg-color);
}

.text-primary {
  color: var(--primary-color) !important;
}

.login-card{
      width: 100%;
    overflow: hidden;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  background-color: grey !important;
}

.splash-logo {
    width: 70%;
    animation: zoomIn 1s ease-in-out forwards; /* runs once */
}

@keyframes zoomIn {
    0% {
        transform: scale(0.4); /* smaller */
        opacity: 0.5;
    }
    100% {
        transform: scale(1);  /* back to normal */
        opacity: 1;
    }
}


input {
  outline: none;
  background: #7474743d !important;
  border: none;
  color: white;
  padding: 0.7rem;
  border-radius: 10px;
}

/* Ensure same style in every state */
input:focus,
input:active,
input:hover {
  outline: none;
  background: #7474743d !important;
  border: none;
  color: white;
  padding: 0.7rem;
  border-radius: 10px;
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  border-radius: 100px;
  padding: 0.7rem;
}

/* Loader container */
.preloader {
  width: 400px;
  height: 100%;
  top: 0;
  position: fixed;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-wrap {
  height: 100vh;
  max-width: 400px;
  max-width: 400px;
  background: var(--bg-color);
  margin: auto;
  overflow: hidden;
  position: relative; /* required for pseudo-element */
}

.bot-card {
  background-color: var(--card-color);
  border-radius: 20px;
  padding: 1rem;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.bot-card .card-fx {
  position: absolute;
  top: 0%;
  left: 9%;
  height: -webkit-fill-available;
  width: -webkit-fill-available;
  z-index: -1;
}

/*! Top bar */
.top-bar {
  width: 100%;
  max-width: 400px;
  height: 8vh;
  background: var(--primary-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 28px 28px;
}

.top-bar .logo {
  width: 108px;
}

.app-page {
  height: 100vh;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll !important;
  scrollbar-width: none;
  padding-top: 8vh !important;
  padding-bottom: 8vh !important;
  position: relative;
  z-index: 1;
}

.app-page .page-fx {
  position: fixed;
  right: -4px;
  top: 0;
  height: 100vh;
  width: -webkit-fill-available;
  opacity: 0.5;
  z-index: -5;
}

.ac-btn {
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  overflow: hidden;
}

.bottom-bar {
  width: 100%;
  max-width: 400px;
  height: 8vh;
  background: black;
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 8px;
  /* border-radius: 16px; */
  box-shadow: 0px -14px 20px rgb(0 0 0 / 20%);
}

.bottom-bar .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: hsl(0deg 0% 100%);
  font-weight: 500;
  height: 100%;
  border-radius: 12px;
  transition: all 0.2s ease-in-out;
}

.bottom-bar .nav-link i {
  font-size: 22px;
  margin-bottom: 2px;
}

.bottom-bar .nav-link span {
  font-size: 10px;
  line-height: 1;
}

.bottom-bar .nav-link.active {
  background: white;
  color: var(--primary-color);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
}

/* canvas */
.bottom-canvs {
  max-height: 90vh !important;
  height: auto !important;
  overflow-y: auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: var(--card-color) !important;
}

.bottom-canvs .btn-primary{
    width: 100%;
    position: fixed;
    border: none;
    border-radius: 0;
    color: white;
    font-size: 15px;
    bottom: 0;
}

.bottom-canvs .btn-primary:disabled{
    background: grey !important; 
}

.tip-box{
    display: block;
    background: #12121247;
    color: #cdcdcd;
    padding: 8px;
    border-radius: 10px;
    font-size: 11px;
    font-style: oblique;
}
 

/*! Home page */
.user-info-box {
  background: var(--card-color);
  border-radius: 20px;
  padding: 1rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.balance-box {
  background-image: url("card-bg-red.png");
  background-size: cover;
  border-radius: 20px;
  padding: 12px;
}

.balance-box .bal-info {
  backdrop-filter: blur(4px);
  background-color: #00000054;
  padding: 12px;
  border-radius: 20px;
}

.balance-box hr {
  border-top: 1px solid rgb(255 255 255);
  margin: 9px;
  opacity: 0.5;
}

.team-card {
  background: linear-gradient(
    190deg,
    rgba(87, 199, 133, 0) 0%,
    rgba(247, 0, 0, 0.46) 99%
  );
  border-radius: 20px;
  padding: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.team-card .col-6 {
  display: grid;
  align-items: center;
}

.team-card h5 {
  font-size: clamp(
    3rem,
    5vw,
    3rem
  ); /* min 1.5rem, scales with viewport, max 3rem */
  margin-bottom: 0;
  background: linear-gradient(
    190deg,
    rgba(166, 0, 0, 1) 0%,
    rgba(247, 0, 0, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.team-card h6 {
  color: transparent;
  font-size: 4rem;
  margin-bottom: 0;
  -webkit-text-stroke: 2px red;
}

.income-stat-box {
  background: var(--card-color);
  border-radius: 20px;
  padding: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.active-box{
        background: var(--card-color);
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.active-box button{
      background: var(--primary-color);
    border: none;
    padding: 0.7rem 2rem;
    color: white;
    font-weight: 500;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.ai-inc-count-box{
       background: #ffffff;
    border-radius: 20px;
    padding: 10px;
    border: 2px solid red;
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-style: dashed;
}

.ai-inc-count-box li{
      padding-bottom: 10px;
      padding-top: 10px;
    border-top: 1px solid #8f8f8f;
}

.no-result-card{
        width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.no-result-card h5{
      margin-top: 10px;
    color: #8f8f8f;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    line-height: 1.2;
    opacity: 0.8;
}

.no-result-card i{
     color: var(--primary-color);
}

.phoenix-card{
          width: 100%;
    height: 217px;
    background: var(--card-color);
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    border: 9px solid #ffffff;
    box-shadow: 0px 0px 1px 0px black;
}

.phoenix-card img{
      width: 100%;
    height: auto;
}

.phoenix-card .phoenix-info{
        padding: 12px;
    background: rgb(125 0 0 / 13%);
    position: absolute;
    bottom: 0;
    width: 100%;
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
}

/*! Wallet */
.wallet-btn{
         background: transparent;
    border: 1px solid black;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 8vh;
    border-radius: 12px;
    min-width: 73px;
}

.wallet-btn i{
      font-size: 26px;
    color: red;
}

.wallet-btn span{
      font-size: 10px;
    line-height: 1;
    color: black;
    font-weight: 500;
    margin-top: -6px;
}

.list-card li{
     background-color: var(--card-color);
    display: flex;
    align-items: center;
    padding: 18px;
    border-radius: 8px;
    color: white;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
    justify-content: flex-start;
}

.list-card li h6{
  margin-bottom: 0;
 }

 .list-card div{
      background: white;
    width: 35px;
    height: 35px;
    border-radius: 100px;
    color: var(--card-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    position: absolute;
    right: 22%;
 }

.list-card li span{
       font-size: 22px;
    background: white;
    color: var(--primary-color);
    position: absolute;
    right: 0px;
    width: 50px;
    height: 41px;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}


/*! profile */
.profile-card{
        width: 100%;
    padding: 0px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.profile-card .profile-dp{
      height: 95px;
}

textarea{
    outline: none;
    background: #7474743d !important;
    border: none;
    color: white;
    padding: 0.7rem;
    border-radius: 10px;
    width: 100%;
}

/*! Team */
.partner-box{
    width: 100%;
    background: var(--card-color);
    padding: 5px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.partner-box img{
    width: 60px;
    border-radius: 20px;
    border: 2px solid white !important;
}

/*! Income */
.inc-card {
      background: #00000000;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #474747;
    border-style: dashed;
    margin-bottom: 20px; 
}

.inc-card .inc-amt{
      color: #00970d !important;
    font-family: monospace !important;
    font-weight: bolder !important;
}

.level-select{
  background-color: transparent !important;
      padding: 5px;
    text-align: center;
    background: transparent;
    color: black;
    border-radius: 100px;
}

.pdf-banner{
    background: linear-gradient(
    190deg,
    rgba(166, 0, 0, 1) 0%,
    rgba(247, 0, 0, 1) 100%
  );
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.video-panel{
      width: 100%;
    border-radius: 20px;
}

.plan-img{
      width: 100%;
    padding: 5px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    border-style: dashed;
    margin-bottom: 1rem;
}