
    /* === CSS VARIABLES === */
    :root {
      --bg-primary: #0f0f1a;
      --bg-secondary: #1a1a2e;
      --bg-card: rgba(30, 30, 60, 0.7);
      --text-primary: #e0e0e0;
      --text-muted: #aaaaaa;
      --accent: #00ff88;
      --accent-dark: #00cc66;
      --gradient: linear-gradient(135deg, #00ff88, #00cc66);
      --border: #16213e;
      --radius: 16px;
      --shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
      --transition: all 0.3s ease;
    }

    /* === GLOBAL === */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { font-family: inherit; cursor: pointer; }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* === HEADER === */
    header {
      background: rgba(15, 15, 26, 0.95);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .logo img { height: 42px; filter: drop-shadow(0 0 8px rgba(0,255,136,0.3)); }

    /* === HAMBURGER MENU ===
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      z-index: 1001;
      padding: 5px;
    }
    .hamburger span {
      width: 28px;
      height: 3px;
      background: var(--accent);
      border-radius: 3px;
      transition: all 0.3s ease;
      box-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
    }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

    /* Mobile Nav */
   /* #mobileNav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: rgba(15, 15, 26, 0.98);
      backdrop-filter: blur(16px);
      padding: 6rem 2rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.8rem;
      transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
      z-index: 1000;
      border-left: 1px solid var(--border);
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }
    #mobileNav.active { right: 0; }
    #mobileNav a {
      color: var(--text-primary);
      font-weight: 600;
      font-size: 1.1rem;
      padding: 0.8rem 0;
      border-bottom: 1px solid rgba(0, 255, 136, 0.1);
      transition: var(--transition);
    }
    #mobileNav a:hover { color: var(--accent); padding-left: 10px; }
    .mobile-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      font-size: 1.8rem;
      color: var(--accent);
      cursor: pointer;
      z-index: 1002;
      transition: transform 0.3s ease;
    }
    .mobile-close:hover { transform: rotate(90deg); } */
    /* === HAMBURGER MENU === */
  /* === HAMBURGER MENU === */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      z-index: 1001;
      padding: 5px;
    }
    .hamburger span {
      width: 28px;
      height: 3px;
      background: var(--accent);
      border-radius: 3px;
      transition: all 0.3s ease;
      box-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
    }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

    /* Mobile Nav */
    #mobileNav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: rgba(15, 15, 26, 0.98);
      backdrop-filter: blur(16px);
      padding: 6rem 2rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.8rem;
      transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
      z-index: 1000;
      border-left: 1px solid var(--border);
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }
    #mobileNav.active { right: 0; }
    #mobileNav a {
      color: var(--text-primary);
      font-weight: 600;
      font-size: 1.1rem;
      padding: 0.8rem 0;
      border-bottom: 1px solid rgba(0, 255, 136, 0.1);
      transition: var(--transition);
    }
    #mobileNav a:hover { color: var(--accent); padding-left: 10px; }

    /* GLOWING X CLOSE BUTTON */
    .mobile-close {
      position: absolute;
      top: 1.8rem;
      right: 1.8rem;
      font-size: 2.2rem;
      color: var(--accent);
      cursor: pointer;
      z-index: 1002;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 255, 136, 0.15);
      border: 1px solid var(--accent);
      border-radius: 50%;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    }
    .mobile-close:hover {
      transform: rotate(90deg) scale(1.1);
      background: var(--accent);
      color: #0f0f1a;
      box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    }

    nav a {
      color: var(--text-primary);
      margin: 0 1.2rem;
      font-weight: 500;
      position: relative;
      transition: var(--transition);
    }
    nav a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -6px;
      left: 0;
      background: var(--accent);
      transition: width 0.3s ease;
    }
    nav a:hover { color: var(--accent); }
    nav a:hover::after { width: 100%; }

    .auth-buttons a {
      margin-left: 1rem;
      padding: 0.65rem 1.5rem;
      border-radius: 10px;
      font-weight: 600;
      transition: var(--transition);
    }
    .btn-outline { border: 2px solid var(--accent); color: var(--accent); }
    .btn-outline:hover { background: var(--accent); color: #0f0f1a; }
    .btn-primary {
      background: var(--gradient);
      color: #0f0f1a;
      box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4); }

    .custom-select {
      padding: 8px;
      border-radius: 10px;
      background: var(--bg-secondary);
      color: var(--text-primary);
      border: 1px solid var(--border);
    }

    /* === MARQUEE === */
    .marquee {
      background: var(--bg-secondary);
      color: var(--accent);
      padding: 0.8rem 0;
      font-size: 0.95rem;
      overflow: hidden;
      white-space: nowrap;
      border-bottom: 1px solid var(--border);
    }
    .marquee-content { display: inline-block; animation: marquee 18s linear infinite; }
    .marquee i { margin: 0 1.2rem; animation: pulse 2s infinite; color: #ffd700; }
    @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
    @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(1.1); } }

    /* === HERO === */
    .hero {
      position: relative;
      text-align: center;
      padding: 8rem 0 6rem;
      color: white;
      overflow: hidden;
    }
    .hero video {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }
    .hero::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(to bottom, rgba(15,15,26,0.85), rgba(10,10,20,0.95));
      z-index: -1;
    }
    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1.2rem;
      background: linear-gradient(90deg, #fff, var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero p { font-size: 1.25rem; max-width: 750px; margin: 0 auto 2.5rem; opacity: 0.92; font-weight: 300; }
    .btn-primary.large { padding: 1.1rem 2.8rem; font-size: 1.15rem; font-weight: 700; border-radius: 12px; }

    /* === TRADINGVIEW TICKER === */
    .tradingview-widget-container { margin: 2rem 0; padding: 1rem 0; background: rgba(15,15,26,0.8); }

 /* === PLANS === */
.plans { 
  padding: 6rem 0; 
  background: #0a0a14; 
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
  .plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

.plan-card {
  /* BOX FORM - Perfect rectangular container */
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  
  /* Box proportions */
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  
  /* Box shadow for depth */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 18px; /* Slightly smaller than card */
  padding: 2px;
  background: linear-gradient(45deg, transparent, var(--accent), transparent);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none; /* CRITICAL - allows clicks through */
  z-index: 1;
}

.plan-card:hover::before { 
  opacity: 1; 
}

.plan-card:hover { 
  transform: translateY(-15px); 
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.2);
  border-color: var(--accent);
}

.plan-card h3 { 
  font-size: 1.8rem; 
  margin-bottom: 1rem; 
  color: var(--accent); 
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Content wrapper for better box alignment */
.plan-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.range { 
  font-size: 0.95rem; 
  color: var(--text-muted); 
  margin: 0.8rem 0; 
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profit { 
  font-size: 2rem; 
  font-weight: 900; 
  color: #fff; 
  margin: 1.5rem 0; 
  text-shadow: 0 0 15px rgba(0,255,136,0.4);
}

.profit small {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* PERFECT BUTTON BOX */
.invest-btn {
  display: block;
  background: var(--gradient);
  color: #0f0f1a !important;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 800;
  width: 100%;
  margin-top: auto; /* Pushes to bottom of box */
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0,255,136,0.3);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 2; /* Above glow */
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.invest-btn:hover { 
  background: var(--accent-dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,255,136,0.5);
  color: #0f0f1a !important;
  text-decoration: none;
}

/* Responsive Box Adjustments */
@media (max-width: 768px) {
  .plans-grid { 
    grid-template-columns: 1fr; 
    gap: 2rem;
    max-width: 400px;
  }
  
  .plan-card {
    min-height: 280px;
    padding: 2rem 1.5rem;
  }
  
  .plan-card h3 { font-size: 1.6rem; }
  .profit { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .plan-card {
    padding: 1.8rem 1.2rem;
    min-height: 260px;
  }
  
  .section-title { font-size: 2.2rem; }
}

    /* === SERVICES === */
    .services { padding: 6rem 0; background: #111; }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
    .service {
      background: rgba(20,20,40,0.85);
      padding: 2.2rem;
      border-radius: 14px;
      text-align: center;
      transition: var(--transition);
      border: 1px solid transparent;
    }
    .service:hover { border-color: var(--accent); transform: translateY(-8px); box-shadow: 0 12px 25px rgba(0,255,136,0.15); }
    .service i { font-size: 2.8rem; color: var(--accent); margin-bottom: 1.2rem; transition: transform 0.4s; }
    .service:hover i { transform: scale(1.15); }
    .service h3 { margin: 0.6rem 0; font-weight: 600; }
    .learn-more { color: var(--accent); font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; font-weight: 500; }
    .learn-more:hover { text-decoration: underline; }



/* === OUR MISSION SECTION — TEXT CENTERED ON DESKTOP === */
    .mission-section {
      padding: 6rem 0;
      background: linear-gradient(135deg, #0a0a14 0%, #111 100%);
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .mission-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2316213e" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
      opacity: .3;
      z-index: 0;
    }

    .mission-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 3rem;
      justify-content: center;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .mission-content {
      flex: 1 1 560px;
      max-width: 600px;
      text-align: center;
    }

    .mission-title {
      font-size: 2.8rem;
      margin-bottom: 1.5rem;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .mission-subtitle {
      font-size: 1.35rem;
      line-height: 1.7;
      margin-bottom: 1.2rem;
      color: #e0e0e0;
      font-weight: 400;
    }

    .highlight { color: var(--accent); font-weight: 700; }
    .accent-glow { color: var(--accent); text-shadow: 0 0 10px rgba(0, 255, 136, 0.4); font-weight: 700; }
    .gradient-text { background: linear-gradient(90deg, #00ff88, #00cc66); --webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; }
    .profit-highlight { color: #00ff88; font-weight: 700; text-shadow: 0 0 8px rgba(0, 255, 136, 0.3); }

    .mission-text {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 1rem;
      color: #cccccc;
      opacity: 0.95;
    }

    .mission-text.bold {
      font-weight: 600;
      font-size: 1.15rem;
      color: #ffffff;
    }

    .mission-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 2rem;
    }

    .mission-buttons .btn-primary,
    .mission-buttons .btn-outline {
      padding: 0.9rem 2rem;
      font-weight: 600;
      border-radius: 12px;
      transition: var(--transition);
    }

    .mission-buttons .btn-outline {
      border: 2px solid var(--accent);
      background: transparent;
      color: var(--accent);
    }

    .mission-buttons .btn-outline:hover {
      background: var(--accent);
      color: #0f0f1a;
      box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }

    .mission-visual {
      flex: 1 1 300px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }

.mining-glow {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.5rem;
  background: radial-gradient(circle, rgba(0,255,136,0.15) 0%, transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-glow 3s infinite;
}

.mining-glow i {
  font-size: 4.5rem;
  color: var(--accent);
  filter: drop-shadow(0 0 20px rgba(0,255,136,0.6));
}

.hash-rate {
  background: rgba(30, 30, 60, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  font-family: 'Courier New', monospace;
}

.hash-rate span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.hash-rate strong {
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 800;
  text-shadow: 0 0 10px rgba(0,255,136,0.4);
}

.energy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 136, 0.1);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0,255,136,0.2); }
  50% { box-shadow: 0 0 40px rgba(0,255,136,0.5); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .mission-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mission-visual {
    order: -1;
    margin-bottom: 2rem;
  }
  .mission-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .mission-title { font-size: 2.3rem; }
  .mission-subtitle { font-size: 1.2rem; }
  .mission-text { font-size: 1rem; }
  .mining-glow { width: 140px; height: 140px; }
  .mining-glow i { font-size: 3.5rem; }
  .hash-rate strong { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .mission-section { padding: 4rem 0; }
  .mission-title { font-size: 2rem; }
  .mission-buttons { flex-direction: column; align-items: center; }
  .mission-buttons button { width: 100%; max-width: 280px; }
}

    /* === DEPOSITS SECTION === */
    .DEPOSITS {
      position: relative;
      padding: 6rem 0;
      background: #0a0a14;
      overflow: hidden;
      text-align: center;
    }
    .DEPOSITS .image11 {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.12;
      z-index: 0;
      filter: brightness(0.7) contrast(1.3);
    }
    .DEPOSITS::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(135deg, rgba(15,15,26,0.95), rgba(10,10,20,0.98));
      z-index: 1;
    }
    .DEPOSITS .container { position: relative; z-index: 2; }
    .DEPOSITS .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2.5rem; max-width: 1200px; margin: 0 auto; }
    .stat-item {
      background: rgba(30, 30, 60, 0.65);
      backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem 1.5rem;
      text-align: center;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .stat-item::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(45deg, transparent, rgba(0,255,136,0.08), transparent);
      opacity: 0;
      transition: opacity 0.4s;
      border-radius: var(--radius);
    }
    .stat-item:hover::before { opacity: 1; }
    .stat-item:hover { transform: translateY(-12px); box-shadow: var(--shadow); border-color: var(--accent); }
    .stat-item i {
      font-size: 2.8rem;
      margin-bottom: 1rem;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      transition: transform 0.4s ease;
    }
    .stat-item:hover i { transform: scale(1.15) rotate(5deg); }
    .stat-item .li1 { font-size: 1rem; color: var(--text-muted); margin-bottom: 0.5rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
    .stat-item .h11 { font-size: 2.6rem; font-weight: 800; color: #fff; margin: 0; text-shadow: 0 0 15px rgba(0,255,136,0.3); }
    .stat-item .sup { font-size: 1.4rem; color: var(--accent); font-weight: 700; }

    /* === FAQ === */
    .faq { padding: 6rem 0; background: #0a0a14; }
    .faq-list { max-width: 900px; margin: 0 auto; }
    .faq-item { background: rgba(30,30,60,0.65); margin-bottom: 1rem; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
    .faq-item.active { border-color: var(--accent); box-shadow: 0 0 20px rgba(0,255,136,0.1); }
    .question {
      padding: 1.3rem 1.6rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      transition: background 0.3s;
    }
    .question:hover { background: rgba(0,255,136,0.05); }
    .question i { transition: transform 0.3s ease; color: var(--accent); }
    .answer {
      padding: 0 1.6rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      background: rgba(15,15,30,0.9);
      font-size: 0.95rem;
      line-height: 1.7;
    }
    .answer.show { padding: 1.3rem 1.6rem; max-height: 300px; }
    .faq-item.active .question i { transform: rotate(180deg); }
    .faq-more { text-align: center; margin-top: 2rem; }
    .faq-more a { color: var(--accent); font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 1rem; }
    .faq-more a:hover { text-decoration: underline; }
    .faq-item.hidden { display: none; }

    /* === CURRENCY CONVERTER (FULLY RESPONSIVE) === */
    .futures {
      padding: 80px 20px;
      text-align: center;
      background: linear-gradient(135deg, rgba(15,15,26,0.95), rgba(10,10,20,0.98));
    }
    .futures h2 {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 40px;
      color: #25c552;
    }
    .converter {
      max-width: 500px;
      width: 100%;
      margin: 0 auto;
      padding: 2rem 1.5rem;
      background: rgba(30, 30, 60, 0.65);
      backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }
    .converter h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 20px; color: #f1f5f9; }
    .converter form { margin: 20px 0; }
    form input, form select, form button {
      width: 100%;
      outline: none;
      border-radius: 8px;
      border: none;
    }
    form p { font-size: 1rem; margin-bottom: 5px; color: #d1d5db; }
    form input {
      height: 45px;
      font-size: 1rem;
      padding: 0 15px;
      border: 1px solid #4b5563;
      background: #f1f5f9;
      color: #0f172a;
    }
    form input:focus { border: 2px solid #22d3ee; }
    .drop-list {
      display: flex;
      margin-top: 20px;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .drop-list .select-box {
      display: flex;
      width: 175px;
      height: 45px;
      align-items: center;
      justify-content: center;
      border: 1px solid #4b5563;
      border-radius: 8px;
      background: #f1f5f9;
    }
    .select-box img { max-width: 30px; }
    .select-box select {
      width: auto;
      font-size: 1rem;
      background: none;
      margin: 0 -5px 0 5px;
      border: none;
      color: #0f172a;
    }
    .exicon { cursor: pointer; font-size: 1.5rem; color: #22d3ee; }
    .exchange-rate {
      border: 1px dotted #4b5563;
      border-radius: 8px;
      padding: 10px;
      font-size: 1rem;
      color: #d1d5db;
      text-align: center;
      margin: 20px 0 30px;
    }
    form button {
      height: 45px;
      font-size: 1rem;
      font-weight: 600;
      background: #22d3ee;
      color: #0f172a;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    form button:hover { background: #06b6d4; }

    /* RESPONSIVE CONVERTER */
    @media (max-width: 600px) {
      .drop-list { flex-direction: column; gap: 1.2rem; }
      .drop-list .select-box { width: 100% !important; height: 48px; }
      .exicon { margin: 0; }
      .exchange-rate { font-size: .95rem; padding: .8rem; }
      form button { height: 48px; font-size: .95rem; }
    }
    @media (max-width: 360px) {
      .converter h3 { font-size: 1.35rem; }
      form input { height: 42px; font-size: .9rem; }
    }

    /* === FOOTER === */
    footer {
      background: #0f0f1a;
      padding: 2.5rem 0;
      text-align: center;
      border-top: 1px solid var(--border);
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    /* === RESPONSIVE === */
    @media (max-width: 992px) {
      .hero h1 { font-size: 2.8rem; }
      .section-title { font-size: 2.3rem; }
    }
    @media (max-width: 768px) {
      .hamburger { display: flex; }
      .header-content nav, .auth-buttons { display: none; }
      .hero { padding: 5rem 0 4rem; }
      .hero h1 { font-size: 2.4rem; }
      .plans-grid, .services-grid, .DEPOSITS .stats-grid { grid-template-columns: 1fr; }
      .custom-select { padding: 5px; }
    }
    @media (max-width: 480px) {
      .container { padding: 0 1.5rem; }
      .hero h1 { font-size: 2rem; }
      .btn-primary.large { padding: 1rem 2rem; font-size: 1rem; }
    }
    #widgtt { background-color: #0a0a14; }
     /* === LOADER === */
    .loader {
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background: var(--bg-primary);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 3000;
      transition: opacity 0.7s ease, visibility 0.7s ease;
    }
    .loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .spinner {
      width: 70px; height: 70px;
      border: 7px solid var(--accent);
      border-top-color: transparent;
      border-radius: 50%;
      animation: spin 1.2s linear infinite;
      box-shadow: var(--glow), inset 0 0 20px rgba(0, 255, 136, 0.3);
    }
    @keyframes spin { to { transform: rotate(360deg); } }
  