
    * {
      margin: 0; 
      padding: 0; 
      box-sizing: border-box;
      font-family: 'VT323', monospace; /* فونت سبک ترمینال */
    }

    html, body {
   scroll-behavior: smooth;
      color: #fff;
      background: #000; /* fallback */
    }




/* یک صفحه‌ای که کل صفحه را بپوشاند */
.loader-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #000; /* یا گرادیان */
  display: flex; 
  align-items: center; 
  justify-content: center;
  z-index: 999999; /* عدد بالا تا روی همه باشد */
}

/* محتوای وسط صفحه */
.loader-content {
  text-align: center;
}

/* متن چرخان */
.rotating-text {
  font-size: 2rem;
  color: #0f0;
  font-weight: bold;
  animation: waveText 2s ease-in-out infinite;
  /* همچنین می‌توانید جلوه‌هایی مثل text-shadow بدهید */
  text-shadow: 0 0 5px #0f0;
}

/* انیمیشن چرخش */
@keyframes waveText {
  0%, 100% { letter-spacing: 2px; color: #0f0; }
  50% { letter-spacing: 10px; color: #fff; }
}


/* وقتی بخواهید با انیمیشن مخفی شود (اختیاری) */
.loader-screen.fade-out {
  animation: fadeOutLoader 0.5s forwards;
}

@keyframes fadeOutLoader {
  0% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}








    /* صحنه بارش سه‌بعدی 0 و 1 */
    #scene {
      position: fixed;
      top: 0; 
      left: 0;
      width: 100vw; 
      height: 100vh;
      z-index: 0;
      overflow: hidden;
      perspective: 800px;
      background: #000; 
    }
    .digit {
      position: absolute;
      top: 50%; left: 50%;
      transform-style: preserve-3d;
      color: #0f0;
      font-size: 24px;
      pointer-events: none;
      text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
    }

    /* HEADER */
    header {
 position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1.0rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2.5px);
    }
    .header-left {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .header-logo {
      font-size: 1.6rem;
      color: #0f0;
      font-weight: bold;
      text-shadow: 0 0 5px #0f0;
    }
    .binary-signature {
      font-size: 1rem;
      color: #888;
      font-family: monospace;
      text-shadow: 0 0 3px #0f0;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }
    .nav-links a {
      color: #0f0;
      text-decoration: none;
      font-weight: bold;
    }
    .nav-links a:hover {
      text-decoration: underline;
    }

    /* همبرگر آیکن */
    .hamburger {
      display: none; /* دسکتاپ -> پنهان */
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
    }
    .bar {
      width: 24px;
      height: 2px;
      background: #0f0;
    }

    /* موبایل */
    @media (max-width: 768px) {
      .nav-links {
        display: none; 
        flex-direction: column;
        background: #111;
        position: absolute;
        top: 3.5rem; 
        right: 1rem;
        padding: 1rem;
        border: 1px solid #333;
        border-radius: 4px;
      }
      .nav-links.show {
        display: flex; 
      }
      .hamburger {
        display: flex; 
      }
    }

    /* MAIN */
    main {
      position: relative;
      min-height: 150vh;
      padding: 2rem;
        padding-top: 60px;
      background: rgba(34, 34, 34, 0.6);
    }
    .hero-section {
      margin-top: 3rem;
      text-align: center;
    }
    .hero-slogan {
      font-size: 3rem; 
      color: #fff;
      margin-bottom: 1.5rem;
      text-shadow: 0 0 5px #0f0;
    }
    .hero-desc {
      color: rgba(200, 200, 200, 0.8);
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto 2rem auto; 
      line-height: 1.6;
    }
    .opensea-btn {
      display: inline-flex;
      align-items: center;
      background: #2081e2;
      color: #fff;
      padding: 0.5rem 1.2rem;
      text-decoration: none;
      border-radius: 4px;
      font-weight: bold;
      transition: background 0.3s, box-shadow 0.3s;
          font-size: 20px;
    font-weight: 500;
    }
    .opensea-link-btn{
             margin-top: 0.5rem;
      background: #2081e2;
      color: #fff;
      padding: 0.3rem 0.8rem;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 0.9rem;
      transition: background 0.3s; 
    }
    .opensea-btn:hover {
      background: #2980b9;
      box-shadow: 0 0 8px rgba(32,129,226,0.5);
    }
    .opensea-btn img {
width: 32px;
    height: 35px;
    margin-right: 0.5rem;
    }

    /* سکشن NFT */
    .nft-container {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      margin-top: 3rem;
    }
    .nft-card {
      background: #222;
      padding: 1rem;
      border-radius: 6px;
      width: 280px;
      text-align: center;
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    }
    .nft-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.4);
    }
    .nft-card img {
      max-width: 100%;
      border-radius: 6px;
      object-fit: cover;
    }
    .nft-card h3 {
      margin: 0.5rem 0;
      font-size: 1rem;
      color: #0f0; 
      text-shadow: 0 0 4px #0f0;
    }
    .nft-card p {
      font-size: 0.9rem;
      color: #ccc;
      line-height: 1.4;
      max-height: 4.5em; 
      overflow: hidden; 
      text-overflow: ellipsis;
    }
    .more-info-btn {
      margin-top: 0.5rem;
      background: #2081e2;
      color: #fff;
      padding: 0.3rem 0.8rem;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 0.9rem;
      transition: background 0.3s;
    }
    .opensea-link-btn:hover {
      background: #444;
    }
    /* متن اضافی (مخفی) برای NFT */
    .hidden-info {
      display: none;
      margin-top: 0.5rem;
      color: #bbb;
      font-size: 0.85rem;
      text-align: left;
      line-height: 1.4;
      max-height: 200px;
      overflow-y: auto;
      border-top: 1px solid #555;
      padding-top: 0.5rem;
    }

    /* سکشن بعد از NFT */
    .beyond-section {
      margin-top: 4rem;
      text-align: center;
    }
    .beyond-section h2 {
      font-size: 2rem;
      color: #0f0;
      margin-bottom: 1rem;
      text-shadow: 0 0 5px #0f0;
    }
    .beyond-section p {
      max-width: 600px;
      margin: 0 auto;
      color: #ccc;
      line-height: 1.5;
    }

    /* FOOTER */
    footer {
      position: relative;
      z-index: 5;
      background: #000;
      padding: 1rem;
      text-align: center;
      color: #fff;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    footer .binary-footprint {
      color: #0f0;
      font-family: monospace;
      font-size: 0.8rem;
      display: block;
      margin-top: 0.5rem;
      text-shadow: 0 0 3px #0f0;
    }
.convert-section {
 margin-top: 3rem;
    padding: 2rem;
    background: rgb(255 255 255 / 86%);
    text-align: center;
    border-radius: 14px;
}

.convert-title {
  font-size: 2rem;
  color: #0f0; /* سبزی که با تم صفر و یک همخوانی دارد */
  text-shadow: 0 0 5px #0f0;
  margin-bottom: 2rem;
}

.convert-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.step-card {
  background: #222;
  padding: 1.5rem;
  border-radius: 6px;
  width: 250px;
  position: relative;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(0,0,0,0.4);
}

.step-index {
  position: absolute;
  top: -10px;
  left: -10px;
  background: #0f0;
  color: #000;
  font-weight: bold;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px #0f0;
  font-family: monospace;
}

.step-card h3 {
  margin-top: 1.5rem; 
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #0f0;
  text-shadow: 0 0 2px #0f0;
}

.step-card p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.4;
}

.code-sample {
  margin-top: 1rem;
  text-align: center;
}

.code-sample img {
  max-width: 100%;
  border: 1px solid #444;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0,255,0,0.3);
}
    /* سکشن اصلی تایم‌لاین */
    .roadmap-section {
      margin: 0rem auto;
      padding: 2rem;
      max-width: 800px;
      border-radius: 8px;
      position: relative;
      overflow: hidden;
    }
    .roadmap-title {
      font-size: 2rem;
      color: #0f0;
      text-align: center;
      margin-bottom: 2rem;
      text-shadow: 0 0 5px #0f0;
    }

    /* کانتینر تایم‌لاین */
    .timeline {
      position: relative;
      margin: 0;
      padding: 0;
    }

    /* خط عمودی */
    .timeline::before {
      content: "";
      position: absolute;
      left: 20px; /* موقعیت خط از چپ */
      top: 0;
      bottom: 0;
      width: 2px;
      background: #0f0;
      opacity: 0.6;
    }

    /* هر آیتم تایم‌لاین */
    .timeline-item {
      position: relative;
      margin-bottom: 2.5rem; 
      padding-left: 60px; /* جا برای آیکن */
      min-height: 50px;
    }

    /* آیکن کنار هر آیتم */
    .timeline-icon {
      position: absolute;
      left: 7px;  /* هماهنگ با before */
      background: #0f0;
      color: #111;
      border-radius: 50%;
      width: 26px;
      height: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 5px #0f0;
    }
    .timeline-icon i {
      font-size: 14px;
    }

    /* محتوای آیتم */
    .timeline-content {
      background: #222;
      padding: 1rem;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    }
    .timeline-content h3 {
      margin-top: 0;
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
      color: #0f0;
      text-shadow: 0 0 3px #0f0;
    }
    .timeline-content p {
      font-size: 0.95rem;
      color: #ccc;
      line-height: 1.4;
    }
    .date-tag {
      display: inline-block;
      background: #0f0;
      color: #111;
      font-size: 0.8rem;
      margin-left: 1rem;
      padding: 0.2rem 0.4rem;
      border-radius: 3px;
      font-weight: bold;
      text-shadow: none;
    }

    /* ریسپانسیو (موبایل) */
    @media (max-width: 600px) {
      .timeline::before {
        left: 10px;
      }
      .timeline-item {
        padding-left: 50px;
      }
      .timeline-icon {
        left: -3px;
      }
      
      
      .contract-line {
    display: inline-grid !important;
    align-items: center;
    gap: 0.3rem !important;
    margin-bottom: 1rem;
     padding: 0.90rem 0.2rem !important;
    border-radius: 4px;
}
   .eth-contract-box {
    background: #ffffff00 !important;
    max-width: 330px !important;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.0) !important;
    text-align: center;
}   
      
    }
    .faq-section {
  margin-top: 3rem;
  padding: 2rem;
background: rgb(0 0 0);
position: relative;
}

.faq-title {
  font-size: 2rem;
  color: #0f0;
  text-shadow: 0 0 5px #0f0;
  text-align: center;
  margin-bottom: 2rem;
}

/* هر سوال (faq-item) به‌صورت آکاردئون */
.faq-item {
  margin-bottom: 1rem;
  background: #222;
  border-radius: 6px;
  overflow: hidden; /* برای مخفی‌شدن جواب هنگام بسته‌بودن */
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* دکمهٔ سوال */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #333;
}

/* آیکن + یا - */
.faq-icon {
  font-size: 1rem;
  color: #0f0;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0; /* حالت بسته */
  transition: max-height 0.3s ease-out;
  overflow: hidden;
  background: #333;
  padding: 0 1rem;
}

.faq-answer p {
  color: #ccc;
  margin: 0;
  padding: 0.5rem 0;
  line-height: 1.4;
  font-size: 0.95rem;
}

/* کلاس فعال برای نمایش جواب */
.faq-item.active .faq-answer {
  max-height: 200px; /* یا به‌اندازه محتوا */
  padding-bottom: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* آیکن + تبدیل می‌شود به ضربدر */
}
.scroll-top-btn {
  position: fixed;
    z-index: 9999; /* عدد بزرگ */
  right: 1rem;
  bottom: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #0f0;
  color: #111;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  box-shadow: 0 0 5px #0f0;
  font-size: 1rem;
}

/* حالت نمایش */
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}
.scroll-top-btn:hover {
  background: #33ff33;
  box-shadow: 0 0 8px #0f0;
}
.scroll-top-btn i {
  pointer-events: none;
  font-size: 16px;
}
/* سکشن اتریوم هولوگرامی */
.eth-hologram-section {
  /* پس‌زمینه دلخواه (گرادیان یا ساده) */
    background: linear-gradient(160deg, #0008ff2b 0%, #2081e2 100%);
    padding: 3rem 1rem;
    position: relative;
    border-radius: 13px;
    margin-top:4%;
}

/* ظرف اصلی: فلکس/ریت تا مرتب باشد */
.eth-container {
  max-width: 1200px;
  margin: 0 auto;
  /* در حالت پیش‌فرض: موبایل => همه‌ی بخش‌ها زیر هم (فلکس wrap) */
  display: flex;
  flex-wrap: wrap;
  align-items: center; 
  justify-content: center;
  gap: 2rem;
}

/* باکس متن */
.eth-text-box {
  flex: 0 0 100%; /* ابتدا در موبایل تمام عرض */
  text-align: center; 
}
.eth-text-box h2 {
  font-size: 2rem;
  color: #ffffff;
  text-shadow: 0 0 5px #0040ff;
  margin-bottom: 1rem;
}
.eth-text-box p {
  font-size: 1rem;
  color: #ccc;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

/* لوگوی هولوگرامی */

/* eth-holo-wrapper قبلی: 
   برای جایگذاری صحنه سه‌جی‌اس سایز مشخص بدهید */
.eth-holo-wrapper {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* یا اگر در دسکتاپ می‌خواهید 30% width در مدیا کوئری: ... */
}

/* محل سه‌جی‌اس */
#eth3dContainer {
  width: 250px;   /* اندازه دلخواه صحنه */
  height: 250px;
  /* در موبایل می‌توانید max-width: 90vw بگذارید */
  background: #000; /* یا rgba(0,0,0,0.2)، یا هیچ... */
  /* ما بقی بسته به سلیقه */
}
.eth-holo-logo {
  width: 250px;   /* اندازه لوگو در دسکتاپ */
  height: auto;   /* ارتفاع متناسب */
  max-width: 90vw; /* در موبایل اگر صفحه باریک بود، اندازه را محدود کند */
  transform-style: preserve-3d;
  animation: spin3d 4s linear infinite,
             holoColor 4s linear infinite alternate;
  opacity: 0.9;
  display: block;
}

/* باکس کانترکت */
.eth-contract-box {
  flex: 0 0 100%;
  background: #001224;
  margin: 0 auto;
  max-width: 600px;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  text-align: center;
}
.contract-title {
  color: #94c9ff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 4px #4b4b4b;
}
.contract-line {
  display: inline-flex; /* یا flex عادی */
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  background: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}
#contractAddress {
  font-size: 0.95rem;
  color: #000000;
  user-select: all; /* اجازه انتخاب متن */
  margin-right: 0.3rem;
}
.copy-btn {
  background: #2081e2;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: background 0.3s;
}
.copy-btn:hover {
  background: #2980b9;
}
.copy-btn i {
  font-size: 1rem;
}
.token-name {
  font-size: 1rem;
  color: #ccc;
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* انیمیشن چرخش سه‌بعدی و هولوگرامی */
@keyframes spin3d {
  0%   { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
@keyframes holoColor {
  0%   { filter: hue-rotate(0deg) saturate(1.2); }
  50%  { filter: hue-rotate(180deg) saturate(1.5); }
  100% { filter: hue-rotate(360deg) saturate(1.2); }
}

/* دسکتاپ (min-width: 992px یا 768px) 
   برای تقسیم شدن به سه بخش (یا دو بخش بسته به سلیقه):
   - متن (40%)
   - لوگو (30%)
   - کانترکت (30%)
*/
@media (min-width: 992px) {
  .eth-text-box {
    flex: 0 0 40%;
    text-align: left; /* یا center؛ سلیقه‌ای */
  }
  .eth-holo-wrapper {
    flex: 0 0 30%;
  }
  .eth-contract-box {
    flex: 0 0 30%;
    margin: 0; /* در دسکتاپ هم‌ارتفاع شوند */
  }
}
.title-with-icon {
  display: inline-flex;       /* یا flex */
  align-items: center;
  justify-content: center;    /* یا flex-start / space-between */
  gap: 0.5rem;                /* فاصلهٔ بین آیکن و متن */
  margin-bottom: 1rem;        /* فضای پایین عنوان */
}

.eth-icon-3d {
  width: 40px; height: 40px;
  animation: spin3d 4s linear infinite, holoColor 4s linear infinite alternate;
}
.eth-icon-3d.eth-holo-logo {
  margin-top: -10px;  /* کمی بالاتر */
  margin-right: 0.25rem; /* فاصله از متن */
}

.btbor{
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 4px;
    padding: 0.6rem 1.0rem;
    cursor: pointer;
    font-size: 0.9rem;
    display: inline-flex
;
    align-items: center;
    gap: 0.3rem;
    transition: background 0.3s;
}


/* سکشن کلی */
.icons-step {
  padding: 2rem;
  text-align: center; /* یا left؛ بسته به سلیقه */
}

.icons-step .convert-title {
  font-size: 2rem;
  color: #0f0; 
  text-shadow: 0 0 5px #0f0;
  margin-bottom: 2rem;
}

/* گرید کلی که کارت‌ها در آن هستند */


/* خود کارت هر مرحله */
.step-card {
  background: #222;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  padding: 1.5rem;
  display: grid;
  /* دو ستون: یکی برای آیکن، یکی برای متن */
  grid-template-columns: 60px auto;
  gap: 1rem;
  align-items: center; /* آیکن و متن در یک راستا (وسط) */
  transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* ستون آیکن */
.step-icon {
  font-size: 2rem;
  color: #0f0;
  text-align: center;
}

/* ستون متن */
.step-text h3 {
  color: #0f0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  text-shadow: 0 0 3px #0f0;
}
.step-text p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* اگر بخواهید .code-sample را داشتید */
.code-sample {
  margin-top: 1rem;
}
.code-sample img {
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0,255,0,0.3);
}

@media (max-width: 600px) {
  .step-card {
    grid-template-columns: 1fr; /* در موبایل آیکن بالا، متن پایین */
    text-align: center;
            max-width: 100%;
  }
  .step-icon {
    margin-bottom: 1rem;
    font-size: 1.8rem; 
  }
}
/****************************************** 
 * سکشن کلی: fancy-steps
 ******************************************/
.fancy-steps {
  padding: 2rem;
  text-align: center;
  /* پس‌زمینهٔ سکشن اختیاری */
  background: rgb(0 0 0 / 32%);
  /* اگر می‌خواهید سکشن جلوه بیشتری بگیرد: 
     background: linear-gradient(120deg, #111 0%, #222 100%);
  */
}

/* عنوان سکشن */
.fancy-steps .steps-title {
  font-size: 2rem;
  color: #0f0;
  text-shadow: 0 0 5px #0f0;
  margin-bottom: 2rem;
  font-weight: bold;
}

/****************************************** 
 * گرید کارت‌ها
 ******************************************/
.steps-grid {
  display: ruby;
  /* کارت‌های حداقل 280px و حداکثر اینکه خودش کش بیاید */
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px; 
  margin: 0 auto; /* وسط‌چین */
}

/****************************************** 
 * کارت هر مرحله
 ******************************************/
.step-card {
position: relative;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex
;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 4%;
}

/* افکت هاور روی کارت */
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,255,0,0.2);
}

/****************************************** 
 * آیکن مرحله
 ******************************************/
.step-icon {
  width: 64px; 
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f0 0%, #555 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  /* افکت سه‌بعدی */
  box-shadow: 0 0 10px rgba(0,255,0,0.3), inset 0 0 8px rgba(0,255,0,0.2);
}
.step-icon i {
  font-size: 1.8rem; 
  color: #000; /* رنگ آیکن بر روی پس‌زمینه سبز */
  transform: translateZ(0);
}

/****************************************** 
 * تیتر و متن مرحله
 ******************************************/
.step-title {
  font-size: 1.2rem;
  color: #0f0;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 3px #0f0;
  font-weight: bold;
}
.step-desc {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/****************************************** 
 * نمونه کد (داخل مرحله)
 ******************************************/
.code-sample img {
  max-width: 100%;
  border-radius: 4px;
  margin-top: 1rem;
  box-shadow: 0 0 5px rgba(0,255,0,0.3);
}

/****************************************** 
 * ریسپانسیو 
 ******************************************/
@media (max-width: 600px) {
  .step-card {
    padding: 1.5rem;
  }
  .step-icon {
    width: 50px; 
    height: 50px;
    margin-bottom: 0.75rem;
  }
  .step-icon i {
    font-size: 1.4rem;
  }
  .step-title {
    font-size: 1.1rem;
  }
  .step-desc {
    font-size: 0.9rem;
  }
}




/****************************************** 
 * سکشن وایت‌پیپر (Callout Fancy)
 ******************************************/
.fancy-whitepaper {
  padding: 3rem 1rem;
  /* می‌توانید گرادیان کنید: 
     background: linear-gradient(120deg, #0a0a0a 0%, #1c1c1c 100%);
  */
display: inline-flex
;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.wp-containers {
  background: linear-gradient(135deg, #00ff0017 0%, #01e305 100%);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  max-width: 600px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.wp-container {
  background: linear-gradient(135deg, #00ff0017 0%, #01e301 100%);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  max-width: 600px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

/* افکت هاور روی کل باکس */
.wp-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgb(255 255 255 / 20%);
}
.wp-containers:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgb(255 255 255 / 20%);
}
.wp-icon {
width: 119px;
    height: 119px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff00 0%, #ffffff0a 100%);
    display: flex
;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
    box-shadow: 0 0 10px rgb(255 255 255 / 30%), inset 0 0 8px rgb(0 0 0 / 20%);
}

.wp-icon i {
  font-size: 4rem;
  color: #ffffff; 
}

.wp-title {
  font-size: 1.8rem;
  color: #0e120e; 
  margin-bottom: 1rem;
  text-shadow: 0 0 4px #0f0;
  font-weight: bold;
}

.wp-desc {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 1.5rem auto;
}

/* لیست نکات مهم */
.wp-highlights {
  list-style: none;
  margin: 1rem auto 2rem auto;
  padding: 0;
  max-width: 400px;
  text-align: left;
}
.wp-highlights li {
  color: #d8d8d8;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wp-highlights li i {
  color: #0f0;
  font-size: 1rem;
}

/* دکمه CTA */
.wp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #2081e2;
  color: #fff;
  padding: 0.8rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.wp-cta:hover {
  background: #2980b9;
}

/****************************************** 
 * ریسپانسیو
 ******************************************/
@media (max-width: 600px) {
  .wp-container {
    padding: 1.8rem 1.2rem;
  }
  .wp-icon {
   width: 99px;
        height: 99px;
        margin-bottom: 1rem;
  }

  .wp-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
  .wp-desc {
    font-size: 0.95rem;
  }
  .wp-highlights {
    max-width: 100%;
  }
}







/* سکشن کلی */
.whitepaper-callout.fancy-whitepaper {
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
}

/* کانتینر دوتایی کارت‌ها */
.wp-double-container {
  display: flex;
  flex-wrap: wrap; /* تا در صورت کمبود فضا، کارت‌ها زیر هم بیافتد */
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  justify-content: center;
}
.wp-boxs {
flex: 1 1 320px;
    background: linear-gradient(135deg, #373737 0%, #1b1b1b00 100%);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex
;
    flex-direction: column;
    align-items: center;
}
/* کارت اصلی */
.wp-box {
flex: 1 1 320px;
    background: linear-gradient(135deg, #ff000021 0%, #a51d1d 100%);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgb(255 0 0 / 60%);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex
;
    flex-direction: column;
    align-items: center;
}
.wp-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(255 255 255 / 14%);
}
.wp-boxs:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(255 255 255 / 14%);
}

/* آیکن بالا */


/* عناوین و متن کارت */
.wp-title {
font-size: 1.6rem;
    color: #000000;
    margin-bottom: 1rem;
    text-shadow: 0 0 4px #ffffff;
    font-weight: bold;
}
.wp-desc {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto 1.5rem auto;
}

/* لیست نکات */
.wp-highlights {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.5rem auto;
  text-align: left;
  max-width: 320px;
}
.wp-highlights li {
  color: #aaa;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.wp-highlights li i {
  color: #0f0;
}

/* دکمه عمومی */
.wp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #2081e2;
  color: #fff;
  padding: 0.8rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.wp-cta:hover {
  background: #2980b9;
}

/* فرم خبرنامه */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap; /* در موبایل زیر هم برود */
  justify-content: center;
  margin-top: 1rem;
}
.newsletter-form input[type="email"] {
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  border: 1px solid #444;
  background: #222;
  color: #ccc;
  min-width: 180px;
}
.newsletter-form input[type="email"]::placeholder {
  color: #777;
}

/* ریسپانسیو */
@media (max-width: 600px) {

  .wp-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  .wp-desc, .wp-highlights li {
    font-size: 0.9rem;
  }
  .newsletter-form {
    flex-direction: column; 
    align-items: center;
  }
  .newsletter-form input[type="email"] {
    width: 100%;
  }
}








