@charset "UTF-8";
/* CSS Document */

.tokenomics-container {
      max-width: 1000px;
      margin: 80px auto;
      padding: 30px;
      background: var(--white);
      color: var(--black);
      border-radius: 16px;
      box-shadow: 0 0 20px rgba(0,0,0,0.2);
    }
    .tokenomics-container h1 {
      text-align: center;
      font-size: 36px;
      margin-bottom: 20px;
      color: var(--gold);
    }
    .tokenomics-section {
      margin-bottom: 40px;
    }
    .tokenomics-section h2 {
      font-size: 22px;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .tokenomics-section p, ul {
      font-size: 16px;
      line-height: 1.6;
    }
    .tokenomics-section ul {
      padding-left: 20px;
    }
    .chart-container {
      width: 100%;
      max-width: 500px;
      margin: 0 auto 30px;
    }
    .contract-box {
      background: #f8f8f8;
      border-left: 6px solid var(--gold);
      padding: 15px;
      font-family: monospace;
      border-radius: 8px;
      word-break: break-word;
      margin-bottom: 10px;
    }
    .bsc-btns a {
      display: inline-block;
      margin: 8px 10px 0 0;
      padding: 8px 14px;
      background: var(--gold);
      color: var(--black);
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
    }
    .bsc-btns a:hover {
      background: #e6b800;
    }
    .calculator input {
      width: 120px;
      padding: 6px;
      border-radius: 6px;
      border: 1px solid #ccc;
      margin-right: 10px;
    }
    .calculator-result {
      margin-top: 10px;
      font-weight: bold;
    }
    .export-btn {
      margin-top: 20px;
      display: inline-block;
      background-color: #222;
      color: #fff;
      padding: 8px 14px;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
    }




@media print {
  body, html {
    overflow: visible !important;
  }
  .tokenomics-container {
    width: 100% !important;
    padding: 10px !important;
  }
  canvas {
    max-width: 100% !important;
    height: auto !important;
  }
  .chart-container {
    page-break-inside: avoid !important;
  }
}
/* ---------- VISIBILITY RULES ---------- */
@media screen {
  .pdf-only { display:none !important; }
}
@media print {
  .pdf-only { display:block !important; }
}
section, .chart-container { page-break-inside: avoid; }
/* TOKENOMICS STYLING */
.tokenomics-container { padding: 1rem; }
.tokenomics-section { margin-bottom: 2rem; }
/* BUTTON CURSOR */
#tokenomics-pdf-btn { cursor: pointer; }
