/* Base styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background-color: rgb(0, 25, 28);
}

.playtradex-logo {
  max-width: 90%;
  height: auto;
  border-radius: 100px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3); /* Optional neon glow */
}
.playtradex-logo-text {
  max-width: 100%;
  height: auto;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3); /* Optional neon glow */
}

/* Intro section override */
.intro-section {
  background-color: #000000;
  color: #e1e1e1;
  text-align: center;
  padding: 80px 100px;
  justify-content: center;
}
.intro-section .container {
  max-width: 900px;
  margin: auto;
}
.intro-section h1 {
  font-size: 36px;
  margin-bottom: 20px;
}
.intro-section p {
  font-size: 18px;
  line-height: 1.8;
}

/* Section Container Style */
.section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  background-color: #000000;
  color: #009ce5;
}

/*.section .card {
  width: 100%;
  max-width: 900px;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  background-color: rgb(34, 34, 34);
  text-align: center;
}*/

.section .card {
  width: 100%;
  max-width: 900px;
  padding: 40px;
  border-radius: 15px;
  background-color: #111; /* darker base */
  text-align: center;
  color: #00ffe7;

  /* Neon Glow */
  box-shadow:
    0 0 1px #00ffe7,
    0 0 2px #00ffe7,
    0 0 10px #00ffe7,
    0 0 20px rgba(0, 255, 231, 0.3);

  border: 2px solid #00ffe7;
  transition: box-shadow 0.3s ease;
}

/* Text inside card */
.section .card h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.section .card p,
.section .card ul,
.section .card table {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

.card p {
  max-width: 768px;
  margin: 0 auto 50px auto;
  text-align: left;
}

.token-table {
  margin: 20px auto 0;
  border-collapse: collapse;
  width: 100%;
  max-width: 600px;
}

.token-table td {
  padding: 7px;
  color: #ffffff;
  text-align: left;
}

.footer {
  background-color: #090909;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  color: #ffffff
}

.footer .card {
  background-color: #000000;
  color: #ccc;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  max-width: 384px;
  width: 100%;
  font-size: 14px;
}
@media (max-width: 768px) {
  .footer .card {
    padding: 15px;
    font-size: 13px;
  }
}

/* 🔄 Loader Styles */
  #loader {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
  }

  .spinner {
    border: 6px solid #111;
    border-top: 6px solid #00ffe7;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

/* Metamask */
.add-metamask-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      font-size: 14px;
      background: transparent;
      color: #00ffe7;
      border: 2px solid #00ffe7;
      border-radius: 8px;
      font-family: 'Orbitron', sans-serif;
      cursor: pointer;
      box-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
      transition: all 0.3s ease;
    }

    .add-metamask-btn:hover {
      background-color: #00ffe7;
      color: #000;
    }

    .add-metamask-btn img {
      width: 20px;
      height: 20px;
    }

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}