html {
  scroll-behavior: smooth;
}

.dashboard-page {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0 80px;
}

.dashboard-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-hero h1 {
  margin: 14px 0 8px;
  font-size: 40px;
  color: #ffffff;
}

.dashboard-subtext {
  color: #b9c2df;
  line-height: 1.8;
}

.dashboard-balance-box {
  min-width: 220px;
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 194, 255, 0.25);
}

.dashboard-balance-box span {
  display: block;
  color: #b9c2df;
  margin-bottom: 10px;
}

.dashboard-balance-box strong {
  color: #00c2ff;
  font-size: 34px;
}

.dashboard-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 26px;
}

.dashboard-stat-card,
.dashboard-bot-card,
.dashboard-history-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
}

.dashboard-stat-card {
  padding: 22px;
}

.dashboard-stat-card span {
  display: block;
  color: #b9c2df;
  margin-bottom: 12px;
}

.dashboard-stat-card strong {
  color: #ffffff;
  font-size: 26px;
}

.dashboard-bot-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  margin-bottom: 26px;
}

.dashboard-bot-card h2 {
  margin: 14px 0 10px;
  color: #ffffff;
  font-size: 30px;
}

.dashboard-bot-card p {
  color: #c1cae6;
  line-height: 1.8;
  max-width: 720px;
}

.dashboard-bot-status {
  min-width: 210px;
  text-align: center;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.dashboard-bot-status span {
  display: block;
  color: #b9c2df;
  margin-bottom: 10px;
}

.dashboard-bot-status strong {
  font-size: 26px;
}

.bot-status-active {
  color: #22c55e;
}

.bot-status-inactive {
  color: #ef4444;
}

.dashboard-history-section {
  padding: 28px;
}

.dashboard-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.dashboard-section-head h2 {
  margin-top: 12px;
  color: #ffffff;
  font-size: 30px;
}

.dashboard-history-list {
  display: grid;
  gap: 16px;
}

.dashboard-history-item {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-history-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.dashboard-history-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
}

.dashboard-history-date {
  color: #8f99b8;
  font-size: 14px;
}

.dashboard-history-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.dashboard-history-box {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.dashboard-history-box span {
  display: block;
  color: #8f99b8;
  margin-bottom: 8px;
  font-size: 13px;
}

.dashboard-history-box strong {
  color: #ffffff;
  font-size: 16px;
  word-break: break-word;
}

.dashboard-rejection-note {
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.22);
  color: #fca5a5;
  line-height: 1.8;
}

.dashboard-empty-state {
  color: #b9c2df;
  text-align: center;
  padding: 26px 10px;
}

@media (max-width: 900px) {
  .dashboard-hero,
  .dashboard-bot-card,
  .dashboard-section-head,
  .dashboard-history-top {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-stats-grid,
  .dashboard-history-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-hero h1 {
    font-size: 30px;
  }

  .dashboard-balance-box strong,
  .dashboard-stat-card strong,
  .dashboard-bot-status strong {
    font-size: 26px;
  }
}
.profits-cards-section{
  margin-top: 28px;
}

.profits-cards-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.profit-card{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 24px 22px;
  color: #ffffff;
  background: linear-gradient(145deg, #0f172a 0%, #111827 55%, #1e293b 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.profit-card::before{
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  filter: blur(4px);
}

.profit-card::after{
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  filter: blur(2px);
}

.profit-card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 24px 46px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.profit-card-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.profit-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.profit-icon{
  font-size: 26px;
  opacity: 0.95;
}

.profit-card h3{
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 800;
}

.profit-subtitle{
  margin: 0 0 18px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.8;
}

.profit-value{
  display: block;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.daily-profit-card{
  background: linear-gradient(145deg, #0f172a 0%, #052e2b 55%, #065f46 100%);
}

.yesterday-profit-card{
  background: linear-gradient(145deg, #0f172a 0%, #3b1d00 55%, #92400e 100%);
}

.total-profit-card{
  background: linear-gradient(145deg, #0f172a 0%, #1e1b4b 55%, #312e81 100%);
}

@media (max-width: 992px){
  .profits-cards-grid{
    grid-template-columns: 1fr;
  }

  .profit-value{
    font-size: 28px;
  }
}


.notification-item{
  background: linear-gradient(145deg, #0f172a, #111827);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 14px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.notification-item.unread{
  border-right: 4px solid #2563eb;
}

.notification-item h4{
  margin: 0 0 8px;
  font-size: 17px;
}

.notification-item p{
  margin: 0 0 10px;
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 14px;
}

.notification-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.notification-date{
  font-size: 12px;
  color: #94a3b8;
}

.mark-read-btn{
  background: #2563eb;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
}

.mark-read-btn:hover{
  background: #1d4ed8;
}



.dashboard-header-actions{
  display:flex;
  align-items:center;
  gap:12px;
  position:relative;
}

.notifications-dropdown{
  position:relative;
}

.notifications-toggle-btn{
  position:relative;
  background:linear-gradient(145deg,#0f172a,#1e293b);
  color:#fff;
  border:1px solid rgba(255,255,255,0.08);
  padding:10px 16px;
  border-radius:12px;
  cursor:pointer;
  font-size:14px;
  font-weight:700;
  box-shadow:0 10px 24px rgba(0,0,0,0.18);
  transition:0.2s ease;
}

.notifications-toggle-btn:hover{
  transform:translateY(-1px);
  background:linear-gradient(145deg,#111827,#334155);
}

.notifications-count-badge{
  position:absolute;
  top:-6px;
  left:-6px;
  min-width:22px;
  height:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 6px;
  border-radius:999px;
  background:#dc2626;
  color:#fff;
  font-size:12px;
  font-weight:800;
  box-shadow:0 6px 14px rgba(0,0,0,0.22);
}

.notifications-dropdown-menu{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  width:370px;
  max-height:420px;
  overflow:hidden;
  background:linear-gradient(180deg,#0f172a 0%,#111827 100%);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  box-shadow:0 18px 40px rgba(0,0,0,0.35);
  z-index:999;
}

.notifications-dropdown-header{
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  color:#fff;
  background:rgba(255,255,255,0.02);
}

.notifications-dropdown-list{
  max-height:350px;
  overflow-y:auto;
}

.notifications-empty-text{
  margin:0;
  padding:16px;
  color:#94a3b8;
  font-size:14px;
}

.notification-dropdown-item{
  width:100%;
  border:none;
  background:transparent;
  color:#fff;
  text-align:right;
  padding:14px 16px;
  cursor:pointer;
  border-bottom:1px solid rgba(255,255,255,0.05);
  transition:0.2s ease;
}

.notification-dropdown-item:hover{
  background:rgba(255,255,255,0.04);
}

.notification-dropdown-item.unread{
  border-right:4px solid #2563eb;
  background:rgba(37,99,235,0.06);
}

.notification-dropdown-title{
  display:block;
  font-size:14px;
  font-weight:700;
  margin-bottom:6px;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.notification-dropdown-date{
  display:block;
  font-size:12px;
  color:#94a3b8;
}

.notification-details-overlay{
  position:fixed;
  inset:0;
  background:rgba(2,6,23,0.72);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:20px;
}

.notification-details-popup{
  width:min(92%,480px);
  background:linear-gradient(180deg,#0f172a 0%,#111827 100%);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:20px;
  box-shadow:0 28px 60px rgba(0,0,0,0.45);
  padding:26px 22px 20px;
  position:relative;
  color:#fff;
}

.notification-details-close-btn{
  position:absolute;
  top:12px;
  left:12px;
  background:transparent;
  border:none;
  color:#94a3b8;
  font-size:22px;
  cursor:pointer;
}

.notification-details-close-btn:hover{
  color:#fff;
}

.notification-details-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:14px;
}

.notification-details-badge{
  padding:7px 12px;
  border-radius:999px;
  background:rgba(37,99,235,0.12);
  border:1px solid rgba(37,99,235,0.2);
  color:#93c5fd;
  font-size:12px;
  font-weight:700;
}

.notification-details-date{
  font-size:12px;
  color:#94a3b8;
}

.notification-details-title{
  margin:0 0 14px;
  font-size:22px;
  line-height:1.5;
  font-weight:800;
}

.notification-details-message{
  margin:0;
  color:#dbeafe;
  font-size:15px;
  line-height:2;
  white-space:pre-wrap;
}

.notification-details-actions{
  margin-top:22px;
  display:flex;
  justify-content:center;
}

.notification-details-ok-btn{
  background:#2563eb;
  color:#fff;
  border:none;
  padding:11px 22px;
  border-radius:12px;
  cursor:pointer;
  font-size:14px;
  font-weight:700;
}

.notification-details-ok-btn:hover{
  background:#1d4ed8;
}

@media (max-width: 768px){
  .notifications-dropdown-menu{
    width:320px;
    left:auto;
    right:0;
  }
}

.withdraw-history-card{
  background: linear-gradient(145deg, #0f172a 0%, #111827 55%, #1e293b 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.withdraw-history-toggle-btn{
  width: 100%;
  background: transparent;
  border: none;
  color: white;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: right;
}

.withdraw-history-toggle-left{
  text-align: right;
}

.withdraw-history-toggle-left h2{
  margin: 8px 0 6px;
  font-size: 24px;
  font-weight: 800;
}

.withdraw-history-toggle-right{
  display: flex;
  align-items: center;
  gap: 12px;
}

.withdraw-history-count-badge{
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(37, 99, 235, 0.28);
  color: #93c5fd;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.withdraw-history-arrow{
  font-size: 24px;
  color: #cbd5e1;
  transition: transform 0.25s ease;
}

.withdraw-history-arrow.open{
  transform: rotate(180deg);
}

.withdraw-history-content{
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px;
  background: rgba(255,255,255,0.02);
}

.withdrawals-table-wrap{
  width: 100%;
  overflow-x: auto;
  background: rgba(255,255,255,0.02);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 10px;
}

.withdrawals-table{
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.withdrawals-table th,
.withdrawals-table td{
  padding: 15px 12px;
  text-align: right;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: #e5e7eb;
  font-size: 14px;
  vertical-align: top;
}

.withdrawals-table th{
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  font-weight: 800;
}

.withdrawals-table tr:hover td{
  background: rgba(255,255,255,0.025);
}

.withdraw-wallet-address{
  max-width: 260px;
  word-break: break-word;
  color: #cbd5e1;
  line-height: 1.8;
}

.withdraw-status-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.withdraw-status-badge.pending{
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.22);
  color: #fbbf24;
}

.withdraw-status-badge.confirmed{
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: #86efac;
}

.withdraw-status-badge.rejected{
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.22);
  color: #fca5a5;
}

.withdraw-amount{
  font-weight: 900;
  color: #ffffff;
}

.withdraw-rejection-note{
  margin-top: 6px;
  color: #fca5a5;
  font-size: 12px;
  line-height: 1.7;
}


.deposit-history-card{
  background: linear-gradient(145deg, #0f172a 0%, #111827 55%, #1e293b 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.deposit-history-toggle-btn{
  width: 100%;
  background: transparent;
  border: none;
  color: white;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: right;
}

.deposit-history-toggle-left{
  text-align: right;
}

.deposit-history-toggle-left h2{
  margin: 8px 0 6px;
  font-size: 24px;
  font-weight: 800;
}

.deposit-history-toggle-right{
  display: flex;
  align-items: center;
  gap: 12px;
}

.deposit-history-count-badge{
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.26);
  color: #86efac;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deposit-history-arrow{
  font-size: 24px;
  color: #cbd5e1;
  transition: transform 0.25s ease;
}

.deposit-history-arrow.open{
  transform: rotate(180deg);
}

.deposit-history-content{
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px;
  background: rgba(255,255,255,0.02);
}

.deposit-history-action-btn{
  white-space: nowrap;
}

.deposits-table-wrap{
  width: 100%;
  overflow-x: auto;
  background: rgba(255,255,255,0.02);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 10px;
}

.deposits-table{
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.deposits-table th,
.deposits-table td{
  padding: 15px 12px;
  text-align: right;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: #e5e7eb;
  font-size: 14px;
  vertical-align: top;
}

.deposits-table th{
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  font-weight: 800;
}

.deposits-table tr:hover td{
  background: rgba(255,255,255,0.025);
}

.deposit-status-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.deposit-status-badge.pending{
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.22);
  color: #fbbf24;
}

.deposit-status-badge.confirmed{
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: #86efac;
}

.deposit-status-badge.rejected{
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.22);
  color: #fca5a5;
}

.deposit-rejection-note{
  margin-top: 6px;
  color: #fca5a5;
  font-size: 12px;
  line-height: 1.7;
}

@media (max-width: 768px){
  .deposit-history-toggle-btn{
    flex-direction: column;
    align-items: stretch;
  }

  .deposit-history-toggle-right{
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}


.bot-purchase-hero-card{
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 340px;
  gap: 24px;
  align-items: stretch;
  background: linear-gradient(135deg, #081225 0%, #0f172a 45%, #111827 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 28px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.bot-purchase-hero-card::before{
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.22) 0%, rgba(37,99,235,0.05) 45%, transparent 75%);
  pointer-events: none;
}

.bot-purchase-hero-card::after{
  content: "";
  position: absolute;
  bottom: -90px;
  left: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.14) 0%, rgba(34,197,94,0.04) 45%, transparent 75%);
  pointer-events: none;
}

.bot-purchase-content{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
}

.bot-mini-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.22);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}

.bot-purchase-title{
  margin: 0 0 12px;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.6px;
}

.bot-purchase-description{
  margin: 0 0 24px;
  max-width: 720px;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 2;
}

.bot-price-row{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.bot-price-label{
  color: #94a3b8;
  font-size: 14px;
  font-weight: 700;
}

.bot-price-value{
  font-size: 34px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.bot-status-side-card{
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  min-height: 260px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.bot-status-label{
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 700;
}

#botPurchaseCardStatus{
  font-size: 30px;
  line-height: 1.4;
  font-weight: 900;
  margin-bottom: 6px;
}

.bot-buy-main-btn{
  width: 100%;
  border: none;
  border-radius: 16px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(37,99,235,0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.bot-buy-main-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(37,99,235,0.30);
}

.bot-buy-main-btn:disabled{
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.bot-buy-message{
  min-height: 22px;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.8;
}

@media (max-width: 992px){
  .bot-purchase-hero-card{
    grid-template-columns: 1fr;
  }

  .bot-purchase-title{
    font-size: 34px;
  }

  .bot-status-side-card{
    min-height: auto;
  }
}

@media (max-width: 640px){
  .bot-purchase-hero-card{
    padding: 20px;
    border-radius: 22px;
  }

  .bot-purchase-title{
    font-size: 28px;
  }

  .bot-price-value{
    font-size: 28px;
  }
}




