html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #0b1020;
  color: white;
}

.site-header {
  width: 100%;
  background-color: rgba(17, 24, 45, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  gap: 24px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #00c2ff;
}

.header-actions{
display:flex;
align-items:center;
gap:12px;
background:rgba(255,255,255,0.04);
padding:6px 10px;
border-radius:14px;
border:1px solid rgba(255,255,255,0.08);
backdrop-filter:blur(6px);
}

.lang-btn {
  background: transparent;
  border: 1px solid #00c2ff;
  color: #00c2ff;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
}

.buy-btn{
background:#0ea5e9;
color:white;
padding:7px 14px;
border-radius:10px;
font-size:13px;
font-weight:600;
transition:0.2s;
}

.buy-btn:hover{
background:#0284c7;
}
.hero {
  position: relative;
  min-height: calc(88vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(5, 8, 18, 0.82), rgba(5, 8, 18, 0.92)),
    url("https://images.unsplash.com/photo-1642790551116-18e150f24890?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 194, 255, 0.12), transparent 40%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(0, 194, 255, 0.5);
  border-radius: 999px;
  color: #00c2ff;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero p {
  font-size: 19px;
  line-height: 1.8;
  color: #d6dbef;
  max-width: 760px;
  margin: 0 auto 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.primary-btn {
  background: #00c2ff;
  color: #08101f;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.primary-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn {
  border: 1px solid #00c2ff;
  color: #00c2ff;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.secondary-btn:hover {
  background: rgba(0, 194, 255, 0.08);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
}

.glow-1 {
  width: 260px;
  height: 260px;
  background: rgba(0, 194, 255, 0.18);
  top: 80px;
  left: 80px;
}

.glow-2 {
  width: 320px;
  height: 320px;
  background: rgba(0, 140, 255, 0.14);
  bottom: 40px;
  right: 60px;
}
.trust-bar {
  background: #0d1426;
  padding: 30px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: 0.3s;
}

.trust-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 255, 0.3);
}

.trust-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #ffffff;
}

.trust-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #b9c2df;
}
@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }

  .hero h1 {
    font-size: 40px;
  }

  .trust-container {
    grid-template-columns: 1fr;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-card {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    font-size: 32px;
  }
  .features-grid{
  grid-template-columns:1fr;
}
.pricing-grid {
  grid-template-columns: 1fr;
}
.crypto-buttons {
  justify-content: center;
}
.footer-container {
  grid-template-columns: 1fr;
}
.stats-container {
  grid-template-columns: 1fr;
}
.platforms-container{
  justify-content:center;
}
}
    .about-bot {
  padding: 90px 20px;
  background: #0a1120;
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.section-tag {
  display: inline-block;
  margin-bottom: 20px;
  padding: 9px 20px;
  border-radius: 999px;
  background: rgba(0, 194, 255, 0.08);
  border: 1px solid rgba(0, 194, 255, 0.25);
  color: #00c2ff;
  font-size: 25px;
  
}

.about-text h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.about-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #c1cae6;
  margin-bottom: 18px;
}

.about-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 28px 20px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 255, 0.25);
}

.stat-box h3 {
  font-size: 32px;
  color: #00c2ff;
  margin-bottom: 10px;
}

.stat-box p {
  color: #c1cae6;
  line-height: 1.7;
  font-size: 15px;
}
.features{
  padding:100px 20px;
  background:#0d1426;
}

.features-container{
  width:90%;
  max-width:1200px;
  margin:0 auto;
}

.features-header{
  text-align:center;
  margin-bottom:60px;
}

.features-header h2{
  font-size:42px;
  margin:20px 0;
}

.features-header p{
  color:#b9c2df;
  font-size:17px;
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.feature-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:18px;
  padding:30px;
  transition:0.3s;
}

.feature-card:hover{
  transform:translateY(-5px);
  border-color:rgba(0,194,255,0.35);
}

.feature-card h3{
  margin-bottom:12px;
  color:#00c2ff;
}

.feature-card p{
  color:#c1cae6;
  line-height:1.7;
}
.pricing {
  padding: 100px 20px;
  background: #0a1120;
}

.pricing-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-size: 42px;
  margin: 20px 0;
}

.pricing-header p {
  color: #b9c2df;
  font-size: 17px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.price-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px 28px;
  transition: 0.3s;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 194, 255, 0.35);
}

.price-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #ffffff;
}

.price {
  font-size: 44px;
  font-weight: bold;
  color: #00c2ff;
  margin-bottom: 10px;
}

.price-desc {
  color: #c1cae6;
  margin-bottom: 22px;
  line-height: 1.7;
}

.price-card ul {
  list-style: none;
  margin-bottom: 28px;
  padding: 0;
}

.price-card ul li {
  color: #d6dbef;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-plan {
  border: 1px solid rgba(0, 194, 255, 0.45);
  box-shadow: 0 0 30px rgba(0, 194, 255, 0.08);
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #00c2ff;
  color: #08101f;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: bold;
}
.crypto-payment {
  padding: 100px 20px;
  background: #0d1426;
}

.crypto-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.crypto-header {
  text-align: center;
  margin-bottom: 50px;
}

.crypto-header h2 {
  font-size: 42px;
  margin: 20px 0;
}

.crypto-header p {
  color: #b9c2df;
  font-size: 17px;
  line-height: 1.8;
}

.crypto-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 35px;
}

.crypto-item {
  margin-bottom: 24px;
}

.crypto-item h3 {
  color: #00c2ff;
  margin-bottom: 10px;
  font-size: 22px;
}

.crypto-item p {
  color: #d6dbef;
  line-height: 1.8;
}

.wallet-address {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(0, 194, 255, 0.35);
  padding: 14px;
  border-radius: 12px;
  word-break: break-all;
  font-size: 15px;
}

.crypto-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.site-footer {
  background: #070d18;
  padding: 70px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #b9c2df;
  line-height: 1.8;
  max-width: 360px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-links a,
.footer-contact a {
  color: #b9c2df;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #00c2ff;
}

.footer-bottom {
  width: 90%;
  max-width: 1200px;
  margin: 35px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  color: #8f99b8;
  font-size: 14px;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
html[dir="rtl"] body {
  direction: rtl;
}

html[dir="ltr"] body {
  direction: ltr;
}

.stats-section {
  padding: 70px 20px;
  background: #0a1120;
}

.stats-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 194, 255, 0.35);
}

.stat-number {
  font-size: 38px;
  color: #00c2ff;
  margin-bottom: 10px;
}

.stat-card p {
  color: #c1cae6;
  font-size: 16px;
}
.bot-dashboard{
  width:100%;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 20px 50px rgba(0,0,0,0.45);
  transition:0.3s;
}

.bot-dashboard:hover{
  transform:scale(1.03);
}
.platforms{
  padding:40px 20px;
  background:#070d18;
  border-top:1px solid rgba(255,255,255,0.05);
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.platforms-container{
  width:90%;
  max-width:1100px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
}

.platform-logo{
  font-size:18px;
  font-weight:bold;
  color:#9aa4c7;
  letter-spacing:1px;
  opacity:0.7;
  transition:0.3s;
}

.platform-logo:hover{
  color:#00c2ff;
  opacity:1;
}
.floating-telegram {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #00c2ff;
  color: #08101f;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(0, 194, 255, 0.25);
  z-index: 2000;
  transition: 0.3s;
}

.floating-telegram:hover {
  transform: translateY(-3px);
}
.faq-section {
  padding: 100px 20px;
  background: #0a1120;
}

.faq-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 42px;
  margin: 20px 0;
}

.faq-header p {
  color: #b9c2df;
  font-size: 17px;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  transition: 0.3s;
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 255, 0.28);
}

.faq-item h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #c1cae6;
  line-height: 1.8;
  font-size: 15px;
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0;
}

.faq-icon {
  color: #00c2ff;
  font-size: 28px;
  line-height: 1;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.35s ease;
}

.faq-answer p {
  color: #c1cae6;
  line-height: 1.8;
  font-size: 15px;
  padding-top: 14px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

html[dir="ltr"] .faq-question {
  text-align: left;
}
.auth-page {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: radial-gradient(circle at top, #16213f, #08101c 60%);
}

.auth-box {
  width: 100%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 36px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.auth-box h1 {
  font-size: 36px;
  margin: 16px 0 10px;
  color: #ffffff;
}

.auth-subtext {
  color: #b9c2df;
  line-height: 1.8;
  margin-bottom: 24px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-form label {
  color: #d6dbef;
  font-size: 15px;
}

.auth-form input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
}

.auth-form input:focus {
  border-color: rgba(0, 194, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.08);
}

.auth-submit {
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.auth-switch {
  margin-top: 22px;
  color: #b9c2df;
  text-align: center;
}

.auth-switch a {
  color: #00c2ff;
  text-decoration: none;
}

@media (max-width: 900px) {
  .auth-box h1 {
    font-size: 30px;
  }
}
#registerMessage,
#loginMessage {
  margin-top: 12px;
  font-size: 14px;
  text-align: center;
  color: #b9c2df;
}.user-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

#welcomeUser {
  color: #ffffff;
  font-size: 14px;
  white-space: nowrap;
}

.logout-btn{
background:transparent;
border:1px solid rgba(255,255,255,0.2);
color:#cbd5f5;
padding:6px 12px;
border-radius:10px;
font-size:13px;
cursor:pointer;
transition:0.2s;
}

.logout-btn:hover{
background:rgba(255,255,255,0.05);
}
.deposit-page {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: radial-gradient(circle at top, #16213f, #08101c 60%);
}

.deposit-box {
background:linear-gradient(135deg,#00b7ff,#2563eb);
color:white;
border:none;
padding:7px 14px;
border-radius:10px;
font-size:13px;
font-weight:600;
cursor:pointer;
transition:0.2s;
}

.deposit-box h1 {
transform:translateY(-1px);
box-shadow:0 4px 12px rgba(0,170,255,0.35);
}

.auth-form select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
}

.auth-form select:focus {
  border-color: rgba(0, 194, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.08);
}

.wallet-display {
  margin-top: 14px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(0, 194, 255, 0.35);
}

.wallet-display h3 {
  color: #00c2ff;
  margin-bottom: 10px;
}

.wallet-display p {
  color: #d6dbef;
  word-break: break-all;
}

.deposit-status-box {
  margin-top: 24px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.deposit-status-box h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

.status-pending {
  color: #ffd166;
  font-weight: bold;
}

.status-confirmed {
  color: #22c55e;
  font-weight: bold;
}
.admin-page {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 20px;
  background: radial-gradient(circle at top, #16213f, #08101c 60%);
}

.admin-box {
  width: 100%;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 36px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.admin-box h1 {
  font-size: 36px;
  margin: 16px 0 10px;
  color: #ffffff;
}

.admin-deposits-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.admin-deposit-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 22px;
}

.admin-deposit-card h3 {
  color: #ffffff;
  margin-bottom: 12px;
}

.admin-deposit-card p {
  color: #c1cae6;
  line-height: 1.8;
  margin-bottom: 6px;
}

.confirm-btn {
  margin-top: 14px;
  background: #00c2ff;
  color: #08101f;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

.confirmed-badge {
  margin-top: 14px;
  color: #22c55e;
  font-weight: bold;
}
#proofMessage {
  margin-top: 12px;
  font-size: 14px;
  text-align: center;
  color: #b9c2df;
}

#proofSection input[type="file"] {
  margin-top: 10px;
  color: #d6dbef;
}
.proof-link {
  color: #00c2ff;
  text-decoration: none;
  font-weight: bold;
}

.proof-link:hover {
  text-decoration: underline;
}
.admin-action-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.reject-btn {
  background: #ef4444;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

.rejected-badge {
  color: #ef4444;
  font-weight: bold;
  margin-top: 8px;
}
.status-rejected {
  color: #ef4444;
  font-weight: bold;
  line-height: 1.8;
}
.balance-badge{
background:rgba(0,170,255,0.08);
border:1px solid rgba(0,170,255,0.25);
color:#7dd3fc;
padding:6px 12px;
border-radius:10px;
font-weight:600;
font-size:13px;
}
.balance-box {
  margin: 18px 0 22px;
  background: rgba(0, 194, 255, 0.1);
  border: 1px solid rgba(0, 194, 255, 0.35);
  color: #00c2ff;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: bold;
  text-align: center;
}
.admin-layout {
  display: grid;
  gap: 30px;
}

.admin-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 24px;
}

.admin-section-title {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 26px;
}

.admin-users-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
}

.admin-users-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-user-item {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  cursor: pointer;
  text-align: right;
  transition: 0.3s;
}

.admin-user-item:hover {
  border-color: rgba(0, 194, 255, 0.35);
  transform: translateY(-2px);
}

.admin-user-details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px;
  min-height: 220px;
}

.admin-user-card h3 {
  color: #00c2ff;
  margin-bottom: 14px;
}

.admin-user-card p {
  color: #d6dbef;
  margin-bottom: 10px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .admin-users-layout {
    grid-template-columns: 1fr;
  }
}
.admin-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.admin-menu-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #ffffff;
  padding: 40px 20px;
  border-radius: 18px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.25s;
  text-align: center;
}

.admin-menu-card:hover {
  transform: translateY(-4px);
  border-color: #00c2ff;
  box-shadow: 0 10px 30px rgba(0, 194, 255, 0.15);
}

.admin-hidden-section {
  margin-top: 20px;
}

.admin-user-email{
color:#00c2ff;
font-weight:bold;
font-size:15px;
word-break:break-all;
}
.forgot-password-link {
  color: #00c2ff;
  text-decoration: none;
  font-weight: bold;
}

.forgot-password-link:hover {
  text-decoration: underline;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin: 25px 0 30px;
}

.admin-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.admin-stat-card h3 {
  color: #b9c2df;
  font-size: 15px;
  margin-bottom: 10px;
}

.admin-stat-card p {
  color: #00c2ff;
  font-size: 28px;
  font-weight: bold;
}

.admin-user-history {
  margin-top: 25px;
}

.admin-user-history h4 {
  color: #ffffff;
  margin-bottom: 14px;
}

.admin-user-history-list {
  display: grid;
  gap: 12px;
}

.admin-history-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 14px;
}

.admin-history-item p {
  color: #d6dbef;
  margin-bottom: 6px;
  line-height: 1.7;
}

.admin-empty-history {
  color: #b9c2df;
  margin-top: 14px;
}

.admin-user-email {
  color: #00c2ff;
  font-weight: bold;
  font-size: 15px;
  word-break: break-all;
}



.pricing-note {
  margin-top: 12px;
  color: #bfc7d5;
  font-size: 15px;
  line-height: 1.8;
}

.contract-btn {
  border: none;
  cursor: pointer;
  width: 100%;
}

.contract-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contract-message {
  margin-top: 22px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  min-height: 24px;
}

.contract-message.success {
  color: #19c37d;
}

.contract-message.error {
  color: #ff5f5f;
}



.bot-status-active {
  color: #19c37d;
}

.bot-status-pending {
  color: #f5b942;
}

.bot-status-inactive {
  color: #ff5f5f;
}



#buyBotBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#buyBotBtn:disabled,
.contract-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contract-message {
  margin-top: 20px;
  text-align: center;
  font-weight: 700;
  min-height: 24px;
}

.contract-message.success {
  color: #19c37d;
}

.contract-message.error {
  color: #ff5f5f;
}
.deposit-section {
  background: #0f172a;
  padding: 30px;
  border-radius: 12px;
  margin-top: 30px;
}

.deposit-title {
  font-size: 22px;
  margin-bottom: 20px;
}

.deposit-warning {
  background: #1e293b;
  border-left: 4px solid #22c55e;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 6px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  background: #1e293b;
  color: white;
}

.wallet-box {
  margin-top: 20px;
  padding: 15px;
  background: #020617;
  border-radius: 10px;
}

.wallet-address-box{
display:flex;
align-items:center;
justify-content:space-between;
background:#0f172a;
border:1px solid rgba(255,255,255,0.08);
padding:10px 14px;
border-radius:10px;
margin-top:8px;
}

#walletAddress {
  font-size: 14px;
  word-break: break-all;
}

.copy-btn{
background:#334155;
border:none;
color:white;
padding:8px 14px;
border-radius:8px;
font-size:13px;
cursor:pointer;
transition:0.2s;
}


.copy-btn:hover{
background:#475569;
}

.network-alert {
  margin-top: 15px;
  padding: 10px;
  background: #1e293b;
  border-radius: 6px;
  font-size: 14px;
}

.deposit-submit-box {
  margin-top: 25px;
  text-align: center;
}








.deposit-note {
  display: block;
  margin-top: 8px;
  color: #94a3b8;
  font-size: 13px;
}

#depositAmount {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  background: #1e293b;
  color: white;
}



.notification-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
}

.notification-popup{
background:#0f172a;
padding:30px;
border-radius:12px;
max-width:420px;
width:90%;
text-align:center;
box-shadow:0 20px 40px rgba(0,0,0,.4);
position:relative;
animation:popupFade .3s ease;
}

.notification-message{
font-size:16px;
line-height:1.6;
}

.notification-close{
position:absolute;
top:10px;
left:10px;
background:none;
border:none;
color:white;
font-size:20px;
cursor:pointer;
}

@keyframes popupFade{
from{
transform:scale(.9);
opacity:0;
}
to{
transform:scale(1);
opacity:1;
}
}



.notification-box{
position:fixed;
top:30px;
right:30px;
z-index:9999;
display:flex;
flex-direction:column;
gap:10px;
}

.notification{
min-width:260px;
padding:14px 18px;
border-radius:8px;
color:white;
font-size:14px;
animation:slideIn .3s ease;
box-shadow:0 10px 20px rgba(0,0,0,.25);
}

.notification-success{
background:#16a34a;
}

.notification-error{
background:#dc2626;
}

.notification-warning{
background:#d97706;
}

@keyframes slideIn{
from{
transform:translateX(50px);
opacity:0;
}
to{
transform:translateX(0);
opacity:1;
}
}



.notification-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.notification-popup{
  background: #0f172a;
  color: #fff;
  padding: 28px;
  border-radius: 14px;
  width: min(92%, 420px);
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

.notification-message{
  font-size: 16px;
  line-height: 1.8;
}

.notification-close{
  position: absolute;
  top: 10px;
  left: 10px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}



.notification-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.notification-popup{
  background: #0f172a;
  color: #fff;
  padding: 28px;
  border-radius: 14px;
  width: min(92%, 430px);
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

.notification-message{
  font-size: 16px;
  line-height: 1.8;
}

.notification-close{
  position: absolute;
  top: 10px;
  left: 10px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.proof-wrapper{
margin-top:18px;
padding:14px;
background:#020617;
border-radius:12px;
border:1px solid rgba(255,255,255,0.06);
}

.custom-file-box{
display:flex;
align-items:center;
gap:12px;
margin-top:8px;
}

.file-btn{
background:#2563eb;
color:#fff;
border:none;
padding:10px 18px;
border-radius:10px;
font-size:14px;
cursor:pointer;
transition:0.2s;
}

.file-btn:hover{
background:#1d4ed8;
}

.file-name{
font-size:13px;
color:#94a3b8;
}




.deposit-proof-note{
margin-top:10px;
font-size:13px;
color:#facc15;
line-height:1.6;
}






.deposit-submit-btn{
width:100%;
margin-top:50px;
background:linear-gradient(135deg,#22c55e,#16a34a);
border:none;
padding:14px;
border-radius:12px;
font-size:16px;
font-weight:600;
color:rgb(255, 252, 252);
cursor:pointer;
transition:0.2s;
box-shadow:0 6px 18px rgba(0,0,0,0.25);
left: 50px;
}

.deposit-submit-btn:hover{
transform:translateY(-2px);
background:linear-gradient(135deg,#16a34a,#15803d);
}
.file-btn{
  background: #2563eb;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s ease;
}

.file-btn:hover{
  background: #1d4ed8;
}


.notification-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-popup{
  width: min(92%, 460px);
  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  padding: 28px 24px 22px;
  position: relative;
  text-align: center;
  animation: popupFade 0.22s ease;
}

.notification-icon{
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.28);
  color: #fbbf24;
  font-size: 30px;
  font-weight: bold;
}

.notification-title{
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.notification-message{
  font-size: 15px;
  line-height: 1.9;
  color: #dbeafe;
  margin-bottom: 18px;
}

.notification-actions{
  display: flex;
  justify-content: center;
}

.notification-ok-btn{
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s ease;
}

.notification-ok-btn:hover{
  background: #1d4ed8;
}

.notification-close{
  position: absolute;
  top: 12px;
  left: 12px;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 22px;
  cursor: pointer;
}

.notification-close:hover{
  color: #fff;
}

@keyframes popupFade{
  from{
    transform: translateY(10px) scale(0.97);
    opacity: 0;
  }
  to{
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}







.profits-tabs{
  display:flex;
  gap:12px;
  margin-bottom:20px;
  flex-wrap:wrap;
}

.profits-tab-btn{
  background:#1e293b;
  color:#fff;
  border:none;
  padding:12px 18px;
  border-radius:10px;
  cursor:pointer;
  font-size:14px;
  transition:0.2s ease;
}

.profits-tab-btn:hover{
  background:#334155;
}

.active-profit-tab{
  background:#2563eb;
  color:#fff;
}

.profits-table-wrap{
  width:100%;
  overflow-x:auto;
  background:#0f172a;
  border-radius:14px;
  padding:10px;
}

.profits-table{
  width:100%;
  border-collapse:collapse;
  min-width:900px;
}

.profits-table th,
.profits-table td{
  padding:14px 12px;
  text-align:right;
  border-bottom:1px solid rgba(255,255,255,0.08);
  color:#e5e7eb;
  font-size:14px;
}

.profits-table th{
  background:#111827;
  color:#fff;
  font-weight:700;
}

.profits-table tr:hover td{
  background:rgba(255,255,255,0.03);
}



.general-history-overlay{
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.76);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.general-history-popup{
  width: min(94%, 860px);
  max-height: 88vh;
  overflow: hidden;
  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  box-shadow: 0 28px 60px rgba(0,0,0,0.45);
  position: relative;
  padding: 28px 24px 20px;
  color: #fff;
}

.general-history-close-btn{
  position: absolute;
  top: 14px;
  left: 14px;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 24px;
  cursor: pointer;
}

.general-history-close-btn:hover{
  color: #fff;
}

.general-history-header{
  margin-bottom: 18px;
  text-align: right;
}

.general-history-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  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;
  margin-bottom: 12px;
}

.general-history-title{
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.4;
  color: #fff;
}

.general-history-subtitle{
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.8;
}

.general-history-list{
  max-height: 56vh;
  overflow-y: auto;
  padding-left: 4px;
}

.general-history-card{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 14px;
  text-align: right;
}

.general-history-card h4{
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
}

.general-history-card p{
  margin: 0 0 10px;
  color: #dbeafe;
  font-size: 14px;
  line-height: 1.9;
}

.general-history-meta{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.general-history-meta span{
  font-size: 13px;
  color: #94a3b8;
}

.general-history-actions{
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.general-history-ok-btn{
  background: #2563eb;
  color: white;
  border: none;
  padding: 11px 22px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.general-history-ok-btn:hover{
  background: #1d4ed8;
}

.withdraw-lock-box{
  background: linear-gradient(145deg, #0f172a 0%, #1e1b4b 55%, #312e81 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 22px;
  color: white;
  box-shadow: 0 20px 45px rgba(0,0,0,0.28);
}

.withdraw-lock-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:16px;
}

.withdraw-lock-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.08);
  font-size:12px;
  font-weight:800;
}

.withdraw-lock-icon{
  font-size:26px;
}

.withdraw-lock-title{
  margin:0 0 10px;
  font-size:24px;
  font-weight:900;
}

.withdraw-lock-subtitle{
  margin:0 0 20px;
  color:#dbeafe;
  font-size:14px;
  line-height:1.9;
}

.withdraw-countdown-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

.withdraw-countdown-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:18px 12px;
  text-align:center;
}

.withdraw-countdown-card strong{
  display:block;
  font-size:30px;
  font-weight:900;
  line-height:1.2;
  margin-bottom:6px;
  color:#ffffff;
}

.withdraw-countdown-card span{
  font-size:13px;
  color:#cbd5e1;
}

@media (max-width: 640px){
  .withdraw-countdown-grid{
    grid-template-columns:1fr;
  }
}





