/* Section background & padding */
.token-section {
    background: linear-gradient(135deg, #0b0318, #160a2e, #1f123f);
    color: #fff;
    padding-top: 120px !important; /* for navbar spacing */
    padding-bottom: 80px;
    background-image: url('/images/tokenbg.png') !important;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
  }
  
  @media (max-width:768px){
    .token-section{
      background-image: url('/images/tokenbgmob.png') !important;
      background-position: center;
      background-size: cover;
    }
  }
  /* Intro */
/* Token Intro */
.token-intro {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px 25px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 237, 0, 0.25);
  box-shadow: 0 8px 30px rgba(255, 237, 0, 0.15);
  text-align: center;
}

.token-intro .token-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #FFF8B0, #FFED00, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 237, 0, 0.25);
}

.token-intro .token-subtitle {
  font-size: 1.1rem;
  color: #f5f5f5;
  opacity: 0.9;
}

/* Secondary Titles */
.token-title {
  font-size: 2rem;
  font-weight: 700;
  color: #FFED00;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255, 237, 0, 0.35);
}

.token-subtitle {
  font-size: 1.1rem;
  color: #ddd;
}

/* Token Cards Grid */
.token-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

/* Square Token Cards */
.token-card-square {
  width: 150px;
  height: 150px;
  border-radius: 16px;
  background: linear-gradient(135deg, #FFED00, #FFD700, #FFF8B0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #000;
  box-shadow: 0 10px 30px rgba(255, 237, 0, 0.4);
  transition: all 0.35s ease;
  padding: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.token-card-square:hover {
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 15px 40px rgba(255, 237, 0, 0.6);
}

/* Glowing ring on hover */
.token-card-square::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(255, 237, 0, 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.token-card-square:hover::after {
  opacity: 1;
}

/* Icon at the top */
.token-card-square .token-icon {
  font-size: 2rem;
  margin-top: 10px;
  color: #000;
  text-shadow: 0 0 10px rgba(255, 237, 0, 0.6);
}

/* Glassmorphic pill at bottom */
.token-card-square .token-bottom {
  width: 100%;
  background: rgba(255, 255, 255, 0.753);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 6px 10px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 237, 0, 0.3);
}

/* Label inside pill */
.token-card-square .token-label {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.85);
  margin: 0;
}

/* Value inside pill */
.token-card-square h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2px 0 0 0;
  color: #000000;
  text-shadow: 0 0 8px rgba(255, 237, 0, 0.4);
}

/* Tokenomics Warning */
.token-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 15px 20px;
  margin-top: 40px;
  color: #FFED00;
  font-weight: 600;
  border: 1px solid rgba(255, 237, 0, 0.25);
  box-shadow: 0 4px 20px rgba(255, 237, 0, 0.15);
}

/* CTA Button */
.token-section .btn-primary {
  background: linear-gradient(135deg, #FFED00, #FFD700, #FFF8B0);
  border: none;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 30px;
  color: #000;
  box-shadow: 0 4px 12px rgba(255, 237, 0, 0.3);
  transition: all 0.3s ease;
}

.token-section .btn-primary:hover {
  background: linear-gradient(135deg, #FFF8B0, #FFED00, #FFD700);
  box-shadow: 0 6px 16px rgba(255, 237, 0, 0.55);
  transform: translateY(-3px);
}












/* Tokenomics Section */
.tokenomics-section {
  background: radial-gradient(circle at center, rgba(255, 240, 180, 0.08), rgba(0, 0, 0, 0.8));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fffbea;
  text-align: left;
  background-image: url('/images/tokenbg.png') !important;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

/* Left Info Box */
.token-info-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  color: #fffbea;
  box-shadow: 0 8px 25px rgba(255, 220, 100, 0.2);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.token-info-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255, 220, 100, 0.35);
}

.token-info-title {
  font-size: 1.6rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(255, 230, 100, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.token-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.token-info-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  font-size: 1rem;
}

.token-info-list li:last-child {
  border-bottom: none;
}

.token-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 10px;
}

.token-info-label {
  flex: 1;
  margin-left: 8px;
  font-weight: 500;
}

.token-info-value {
  font-weight: 700;
  color: #FFD65A;
  text-shadow: 0 1px 5px rgba(255, 215, 0, 0.3);
}

/* Right Chart Image */
.token-chart-container {

  border-radius: 25px;
  padding: 25px;

 
  backdrop-filter: blur(10px);
}

.tokenomics-image {
  max-width: 100%;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.tokenomics-image:hover {
  transform: scale(1.03);
}
