* {
  padding:0px;
  margin:0px;
  /* font-size:16px; */
  /* color:#3d3d3d; */
  /* font-family: 'Courier New', monospace; */
  /* font-weight: 900; */
  position: relative;
}
html {
  /* transition: 0.3s; */
}
body {
  background:#000;
}
/* html, body, * {
  scrollbar-width: none;
}
html::-webkit-scrollbar, body::-webkit-scrollbar, *::-webkit-scrollbar {
  display: none;
} */

/* Works in Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 12px;      /* scrollbar width */
  height: 12px;     /* scrollbar height (horizontal) */
}

::-webkit-scrollbar-track {
  background: transparent; /* no background */
}

::-webkit-scrollbar-thumb {
  background-color: #313131;   /* dark black */
  border-radius: 8px;       /* rounded edges */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #222;   /* slightly lighter on hover */
}

/* Works in Firefox */
* {
  scrollbar-width: auto;       /* "auto" | "thin" */
  scrollbar-color: #313131 transparent; /* thumb color | track color */
}

/* Price Ticker Banner */
.price-ticker-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: linear-gradient(90deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  border-bottom: 1px solid #222;
  z-index: 9999;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.price-ticker-banner {
  /* Isolate ticker from rest of page reflows */
  contain: strict;
  isolation: isolate;
}

.price-ticker-content {
  display: inline-flex;
  white-space: nowrap;
  gap: 40px; /* Consistent gap between groups */
  /* Force GPU layer - isolates from CPU reflows */
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.price-ticker-content:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.price-ticker-group {
  display: inline-flex;
  gap: 40px;
  /* No padding - parent gap handles spacing between groups */
}

.price-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
}

.token-name {
  color: #888;
  font-weight: bold;
}

.token-price {
  color: #fff;
}

.token-change {
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
}

.token-change.positive {
  color: #00ff88;
  background: rgba(0, 255, 136, 0.1);
}

.token-change.negative {
  color: #ff4444;
  background: rgba(255, 68, 68, 0.1);
}

.main-loader {
  position:fixed;
  width:100%;
  height:100vh;
  backdrop-filter: blur(10px);
  background:#0000007d;
  z-index:1000000;
  transition:all 1.5s;
}
.main-loader-container {
  position: absolute;
  top: calc(50% - 100px);
  left: calc(50% - 100px);
  transition:all 1s;
  /* transform: translate(-50%, -50%); */
  border-radius: 400px;
}
.main-loader-spinner {
  border: 5px dotted #FFF;
  /* padding: 5px; */
  /* padding-top: 5px; */
  padding-bottom: 3px;
  border-radius: 500px;
  padding: 10px;
  top: -9px;
  left: -10px;
  width: 200px;
  position: absolute;
  height: 200px;
  animation: spin 10s linear infinite;
  transition:all 0.5s;
}
.main-loader img {
  width:200px;
  border-radius:300px;
  border: 5px solid #fff;
  transition:all 0.5s;
}
.main-loader.hidden {
  opacity:0;
}
.hidden .main-loader-container .main-loader-spinner {
  width:450px;
  height:450px;
  left:-125px;
  top:-125px;
}
.hidden .main-loader-container .typing-container {
  bottom:80px;
}
.hidden .main-loader-container img {
  transform:scale(0);
}
.background-container {
  display:flex;
  align-items: flex-start;
  align-items: start;
  justify-content:center;
  width:100%;
  height:100vh;
  position:fixed;
  top:0;
  left:0;
  z-index:0;
  pointer-events:none;
  background: #00ff8d06;
  background: url(https://res.cloudinary.com/dkt7hv91e/image/upload/v1720215609/green1.png);
  background-repeat: no-repeat;
  background-size: cover;
  /* opacity: 0.5; */
}
.background-element {
  width: 1024px;
  max-width: 100%;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 10%, transparent), linear-gradient(to right, transparent, black 10%, black 70%, transparent);
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}
.m-r-10 { margin-right: 10px; }
.m-r-15 { margin-right: 15px; }
.m-l-10 { margin-left: 10px; }
.m-l-15 { margin-left: 15px; }
.text-white-shadow {
  color: #fff;
  text-shadow: 1px 1px #000;
}
.fren-tooltip .hoverover {
  cursor:help;
  display:block;
}
.fren-tooltip {
  text-align: center;
  font-size: 12px;
  min-width: 16px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  padding: 1px;
  border: 1px solid #ffffff;
  color: #fff;
  border-radius: 22px;
  margin-left: 9px;
  cursor: pointer;
  position:relative;
  transition: all 0.5s;
}
.fren-tooltip:hover {
  background: #fff;
  color: #3d3d3d;
  cursor:help;
}
#app {
  min-height: 100vh;
  overflow:hidden;
  opacity:0;
  padding-top: 32px; /* Space for price ticker */
  /* padding:20px; */
  background-image: radial-gradient(circle at 10% 20%, rgba(66, 211, 255, 0.1) 0%, transparent 20%), radial-gradient(circle at 90% 30%, rgba(149, 0, 255, 0.1) 0%, transparent 20%), radial-gradient(circle at 50% 80%, rgba(0, 255, 170, 0.1) 0%, transparent 30%);
}
.header-menu {
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  position: fixed;
  padding: 10px;
  text-align: center;
  width: 100%;
  /* background: #ffffff21; */
  /* backdrop-filter: blur(4px); */
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: auto;
}
.header-menu span {
  color: #fff;
  /* text-decoration: underline; */
  /* font-weight: 100; */
  cursor: pointer;
  background: #000;
  border: 1px solid #ffffff00;
  padding: 6px 20px;
  margin: 0px;
  border-left: none;
  border-right: none;
  /* font-style: italic; */
  /* text-transform: uppercase; */
  transition: all 0.3s;
  box-shadow: 3px 3px #fff;
  border: 1px solid;
}
.header-menu span:first-of-type {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 10px;
  /* border-left: 2px solid #fff; */
  padding-left: 35px;
  border-right: none;
  margin-right:-2px;
}
.header-menu span:last-of-type {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 10px;
  box-shadow: 3px 3px #fff;
  /* border-right: 2px solid #fff; */
  padding-right: 35px;
  border-left: none !important;
  margin-left: -2px;
}
.header-menu span:not(.upHere):hover, .header-menu span.active {
  /* color: #57ffae; */
  /* text-shadow: 1px 1px #fff; */
  /* font-style: italic; */
  font-style: italic;
  /* background: #57ffae; */
  text-decoration: underline;
  border: 1px solid;
}
.hoverover {
  width: 100%;
  height: 100%;
  top:0;
  position: absolute;
  cursor:pointer;
  left: 0;
}
.fren-tooltip .hoverover {
  cursor:help;
}
.hover_box {
  position:fixed;
  display: flex;
  width:calc(100% - 150px);
  max-width:550px;
  z-index: 120500;
  padding: 10px 20px !important;
  background: #101010;
  box-shadow: 0px 2px 10px #000000;
  border-radius: 10px;
  font-weight:100;
  color:#fff;
}
.custom-hover .hover_box {
  max-width: 850px;
  overflow: scroll;
  max-height: calc(100vh - 250px);
}
.flex-center {
  display:flex;
  align-items:center;
}
.no-wrap {
  white-space: nowrap;
}
.font-weight-100 {
  font-weight: 100;
}
.italic {
  font-style: italic;
}
.flex-wrap {
  flex-wrap: wrap;
}
.disabled {
  /* opacity:0.5; */
  /* color:#ffffff10; */
  /* pointer-events:none; */
}
.alpha {
  z-index: 1;
  position: absolute;
  top: -10px;
  font-size: 12px;
  /* right: 12px; */
  right: -6px;
  /* transform: translateX(50%); */
  color: #43ffc6e3;
  text-shadow: 1px 1px #000;
  /* box-shadow: 1px 1px #fff; */
  transition: all 0.5s;
  background: black;
  padding: 3px 5px 3px 5px;
  border-radius: 34px;
  /* border: 1px solid #fff; */
  /* border-top-left-radius: 5px; */
  /* border-top-right-radius: 5px; */
  border-top: 0px;
  /* border-left: 0px; */
  border-top: 0px;
}
.active:hover .alpha {
  /* top:30px; */
  right:-12px;
}
.soon {
  position: absolute;
  right: 2px;
  top: 8px;
  font-size: 9px;
  /* transform: translateX(50%); */
  color: rgb(203 0 40);
  /* text-shadow: 1px 1px #000; */
  transition: all 0.5s;
  /* transition: all 0.5s; */
  /* background: black; */
  /* padding: 2px 4px 2px 3px; */
  border-radius: 100px;
}
.active:hover .soon {
  /* top:19px; */
  /* right: 100%; */
}
.login-icon {
  position: absolute;
  top: 2px;
  width: 17px;
  padding: 7px;
  right: -50px;
  border-radius: 40px;
  background: #000;
  pointer-events: fill;
  border: 1px solid #fff;
  /* box-shadow: 2px 2px #fff; */
  transition: all 0.5s;
}
.logout-icon {
  width: 19px;
  padding: 6px;
  border: 1px solid #ffffff94;
}
.login-icon:hover {
  padding-left: 80px;
  right: -125px;
}
div.login-icon-container {
  opacity: 0;
  position: absolute;
  left: -20px;
  color: #fff;
  z-index: 10;
  transition: all 0.5s;
  position: absolute;
  font-size: 13px;
  left: -20px;
  top: 11px;
  pointer-events:none;
  font-weight:100;
  font-style: italic;
  /* background: #57ffae; */
  /* text-decoration: underline; */
}
.login-icon:hover + div.login-icon-container {
  opacity:1;
  left: 133px;
}
.common-container.containers-container {
  position: absolute;
  width: 100%;
  margin-top: 80px;
  padding-bottom: 20px;
}
.common-container .bot-container {
  margin: auto;
  padding: 40px 40px;
}
.common-container .bot-container a {
  color: #43ffc6e3;
}
.common-container .bot-container h1, .disclaimer-container h1 {
  color:#fff;
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 32px;
}
.common-container .bot-container h2, .disclaimer-container h2 {
  margin-top: 20px;
  color:#fff;
  line-height: 32px;
} 
.common-container .bot-container p, .disclaimer-container p {
  color:#fff;
  font-weight:100;
  margin-top:5px;
  line-height: 32px;
}
.hover_box:not(.classic-hover .hover_box) {
  font-size: 14px;
  left: 50% !important;
  transform: translate(-50%, 0px);
  top: -45px !important;
  text-align: center;
  /* width: 100% !important; */
  /* max-width: 365px; */
  width: 105px;
  display: block;
}
/* .classic-hover .hover_box {
  /* left:auto; */
  /* transform:translate(0px, 0px);
  width: 500px;
} */
.bot-container.shadow-style {
  box-shadow: 2px 2px 100px 10px #000 !important;
  border: 1px solid #00000000 !important;
}
.bot-container.animate-hover {
  cursor:pointer;
}
.bot-container.animate-hover:hover {
  transform: scale(1.05);
  border: 1px solid #ffffff !important;
}
.bot-container.animate-hover:hover + .leaderboard-container {
  margin-top:60px;
}
.toggle-light {
  position: absolute;
  left: -38px;
  top: 8px;
  width: 23px;
  height: 23px;
  color: #fff;
  opacity:0.5;
  transition:all 0.5s;
}
.toggle-light:hover {
  transform:scale(1.3);
  opacity:1;
}
.light-mode .websim-left-panel {
  background: rgb(0 0 0);
}
.light-mode .toggle-light {
  opacity:1;
}
.light-mode .toggle-light:hover {
  opacity:0.5;
}
.light-mode {
  filter: invert(1) hue-rotate(160deg);
}
.disabled-click {
  opacity:0.5;
  pointer-events:none;
}
.flex-between {
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.flex-wrap {
  flex-wrap:wrap;
}
.ion-icon-default {
  transition: all 0.5s;
  cursor:pointer;
}
.ion-icon-default:hover {
  transform:scale(1.5);
}
.absolute-socials-container {
  position: fixed;
  right: 18px;
  border: 1px solid #fff;
  position: fixed;
  bottom: 18px;
  border-radius: 14px;
  /* right: 20px; */
  /* width: 50px; */
  /* height: 50px; */
  padding: 9px 25px;
  padding-top: 13px;
  cursor: pointer;
  z-index: 1000000;
  background: #000;
  box-shadow: 3px 3px #fff;
  user-select: none;
  display: flex;
  align-items: center;
  color: #fff;
}
.absolute-socials-container svg {
  width: 26px;
  height: 26px;
  transition:all 0.5s;
  margin-bottom: 2px;
}
.absolute-socials-container .tg-link {
  background: #fff;
  border-radius: 30px;
  width: 22px;
  transition: all 0.5s;
  padding: 1px;
  margin-bottom: 4px;
}
.absolute-socials-container span {
  transition:all 0.5s;
  margin: 0px 26px;
  font-size:28px;
  color:#fff;
  padding-top: 2px;
}
.absolute-socials-container span:hover, .absolute-socials-container svg:hover, .absolute-socials-container .tg-link:hover {
  transform: scale(1.2);
}
@media screen and (max-width: 1182px) {
  .common-container.containers-container:not(.max-700-container) {
    max-width: calc(100% - 82px);
  }
}
@media screen and (max-width: 782px) {
  .common-container.containers-container {
    max-width: calc(100% - 82px);
  }
}
@media screen and (max-width: 600px) {
  .hoverover:not(.show-on-mobile) {
    display:none;
  }
}
.new-bot-popup, .iteration-popup {
  position: fixed;
  z-index: 10000000;
  background: #000000bf;
  backdrop-filter: blur(5px);
  max-width: 500px;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  padding: 60px;
  border-radius: 10px;
  min-width: 350px;
} 
.new-bot-popup {
  justify-content: space-between;
}
.new-bot-popup * {
  width: 14%;
  /* margin: 40px; */
  transition: all 0.5s;
  cursor: pointer;
}
.new-bot-popup img:hover, .new-bot-popup svg:hover {
  transform: scale(1.3);
}
.global-chart.financial-charts {
  margin-top: 5px;
  padding: 10px;
}
.global-chart .time-options img, .global-chart .time-options svg {
  height: 30px;
  width: 30px;
  margin-right:10px;
}
.global-chart .time-options {
  display:flex;
  align-items:center;
  /* margin-right:10px; */
}
.global-chart .time-options-container.chain-select {
  margin-top: 5px;
  margin-right: 10px;
  margin-bottom: 5px;
  background: #18181870;
  padding: 5px 15px;
  border-radius: 10px;
}
.global-chart .time-options-container.chain-select .time-options {
  margin-right:20px;
}

.iteration-popup {
  padding: 40px 50px;
  min-width: 350px;
  color: #fff;
}
.iteration-popup > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.iteration-popup span {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}
.iteration-popup input,
.iteration-popup textarea {
  background-color: #000000; /* Slightly lighter for contrast */
  color: #fff;
  border: 1px solid #2f2f2f;
  border-radius: 4px;
  padding: 8px;
  font-size: 14px;
  width:100%;
}
.iteration-popup textarea {
  resize: vertical;
  min-height: 80px;
}

.iteration-popup .close-x {
  position:absolute;
  top:10px;
  right:15px;
  cursor:pointer;
  color:#fff;
}

.iteration-popup .agent-row button {
  background:#000;
}

/* .iteration-popup .button {
  background-color: #444;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.iteration-popup .button:hover {
  background-color: #666;
} */
 .chain-select {
    width: 800px;
    max-width: 100%;
    gap:10px;
 }
 .chain-select-option {
   cursor:pointer;
   padding:8px 16px;
   border-radius:6px;
   display:flex;
   align-items:center;
   gap:8px;
   background:rgba(255,255,255,0.05);
   transition:all 0.2s;
   border:1px solid transparent;
   width:25%;
   justify-content: center;
   padding-left:0px;
 }
 .chain-select-option:hover {
    filter:brightness(1.25);
    background:rgba(255,255,255,0.1);
   /* border:1px solid #fff; */
 }
.chain-select-option.base {
  border:1px solid #043ab3;
      background: #043ab363;
  color:#fff;
}
.chain-select-option.bsc {
  border:1px solid #a9810f;
  background: #a9810f63;
  color:#fff;
}
.chain-select-option.virtuals {
  border:1px solid #236565;
  background: #23656563;
  color:#fff;
}
.chain-select-option.solana {
  border:1px solid #7e34a7;
  background: #7e34a763;
  color:#fff;
}