:root {
  --primary-color: #4f46e5;
  --text-color: #1f2937;
  --section-bg: #f3f4f6;
  --section-title-color: #111827;
  --section-subtitle-color: #4b5563;
}

/* 🟦 Common Section Structure */
.dynamic-section {
  position: relative;
  padding: 60px 20px;
  background-color: var(--section-bg);
  overflow: hidden;
}

.section-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* 🟣 Section Content Container */
.section-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* 🟢 Section Header Box */
.section-header {
  background-color: var(--primary-color);
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px 10px 0 0;
}

.section-title {
  margin: 0;
  font-size: 36px;
  font-weight: bold;
}

.section-subtitle {
  font-size: 16px;
  margin-top: 15px;
  color: #e5e7eb;
}

/* ⚪ Section White Content Box */
.section-content-box {
  background: #fff;
  color: var(--text-color);
  padding: 50px 40px;
  max-width: 1100px;
  margin: -40px auto 0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* 🟡 Grid Layouts */
.tokenomics-grid,
.sub-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

/* 🔷 Tokenomics Cards */
.tokenomics-card {
  background: #f9fafb;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
}

.tokenomics-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.tokenomics-card p {
  font-size: 14px;
  color: #555;
}

.tokenomics-card p:nth-child(2) {
  font-size: 24px;
  font-weight: bold;
  color: var(--section-title-color);
  margin: 10px 0;
}

/* 🟠 Future Innovations Cards */
.sub-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  font-weight: 500;
  color: #333;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.sub-card:hover {
  transform: translateY(-4px);
}

/* 🧭 Roadmap */
.roadmap-timeline {
  margin-top: 30px;
  position: relative;
  padding-left: 20px;
  border-left: 4px solid var(--primary-color);
}

.roadmap-item {
  margin-bottom: 30px;
  position: relative;
}

.roadmap-dot {
  width: 14px;
  height: 14px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  left: -11px;
  top: 4px;
  border: 3px solid #fff;
}

.roadmap-step {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  margin-left: 10px;
}

.roadmap-step h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.roadmap-step p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

/* 📘 Whitepaper List */
.whitepaper-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.section-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section-box h3 {
  margin: 0;
  font-size: 18px;
  color: var(--text-color);
}

.download-btn {
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.download-btn:hover {
  background: #4338ca;
}

/* 🟤 CTA Button */
.section-button {
  display: inline-block;
  margin-top: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.section-button:hover {
  background-color: #4338ca;
}

/* 🔸 Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .section-content-box {
    padding: 30px 20px;
  }

  .tokenomics-card p:nth-child(2) {
    font-size: 20px;
  }
}
#dashboard-intro .dashboard-intro-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

#dashboard-intro .dashboard-intro-box .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

#dashboard-intro .dashboard-intro-box .section-subtitle {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}