/* RESET & BODY */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Comic Sans MS', sans-serif;
  color: white;
  background-color: #000;
}

.integrations-btn {
  background-color: #FA8600;
  color: white;
  font-weight: bold;
  font-size: 16px;
  border: 3px solid black;
  padding: 10px 18px;
  border-radius: 2px;
  transform: rotate(-1deg);
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}

.integrations-btn:hover {
  transform: rotate(1deg) scale(1.03);
}


/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
header.scrolled {
  background-color: #FA8600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.logo {
  height: 60px;
}
.integrations {
  background-color: #ffe09b;
  border: 2px solid black;
  padding: 8px 12px;
  font-weight: bold;
  cursor: pointer;
}

/* PAGE SECTION */
.page {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 70px; /* spacing for header */
}
.page-1 {
  background-image: url('../images/bg.png');
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 120px 20px 60px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.ponke-head {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

/* SOCIAL BUTTONS */
.social-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  background-color:#FA8600;
  color: white;
  font-weight: bold;
  border: 3px solid black;
  padding: 10px 18px;
  font-size: 16px;
  text-decoration: none;
  font-family: 'Comic Sans MS', 'Fredoka', cursive;
  transform: rotate(-2deg);
  box-shadow: 2px 2px 0 black;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background-color: #d89f0d;
  transform: rotate(0deg) scale(1.05);
}

.social-btn img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}


.page-2 {
  margin-top: 0;
  padding-top: 0;
}

.subtitle {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.explore {
  background-color: #FA8600;
  color: white;
  padding: 12px 30px;
  border: 4px solid #000;
  font-size: 22px;
  font-weight: bold;
  font-family: 'Comic Sans MS', sans-serif;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 0 #000;
  cursor: pointer;
  position: relative;
}

.explore:hover {
  transform: rotate(0deg) scale(1.05);
}


/* EXCHANGES SECTION */
/* MARQUEE */
.marquee {
  width: 100%;
  overflow: hidden;
  background-color: #FA8600;
  white-space: nowrap;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}
.marquee-content {
  display: inline-block;
  padding: 10px 0;
  animation: marquee-scroll 20s linear infinite;
  font-weight: bold;
  font-size: 18px;
  color: white;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* EXCHANGES SECTION */
.exchange-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 80px 20px;
}
.exchange-title {
  color: #fbbf24;
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 20px;
  font-family: 'Comic Sans MS', sans-serif;
}
.exchange-subtitle {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 50px;
  font-family: 'Comic Sans MS', sans-serif;
}
.exchange-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.exchange-grid img {
  max-width: 180px;
  width: 100%;
  height: auto;
  background: black;
  padding: 20px;
  border: 2px solid #444;
  border-radius: 8px;
  object-fit: contain;
}

.ponkebuy-img {
  max-width: 700px;
  width: 100%;
  margin: 30px auto;
  display: block;
}

.page-3 {
  background-color: #1c1c1c;
  padding: 80px 20px;
  color: white;
}

.tokenomics-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.tokenomics-title {
  font-size: 64px;
  font-weight: bold;
  color: #ffc62a;
  margin-bottom: 20px;
}

.tokenomics-description {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  color: white;
}

.red-text {
  color: #ff4d4d;
}

.tokenomics-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
  gap: 40px;
}

.tokenomics-image img {
  max-width: 600px;
  border: 4px solid #ffa500;
  background-color: #2e2e2e;
}

.tokenomics-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ponke-work {
  font-size: 36px;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #ccc;
  transform: rotate(-5deg);
  margin-bottom: 20px;
}

.token-box {
  background-color: #ffc62a;
  padding: 20px 40px;
  border-radius: 4px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  width: 100%;
  max-width: 450px;
}

.token-label {
  font-size: 20px;
  font-weight: 900;
}

.token-value {
  font-size: 18px;
  margin-top: 6px;
  word-break: break-word;
}

.jump-image {
  animation: jumpUpDown 0.5s ease-in-out infinite, blinkFlash 0.6s infinite;
  display: block;
  margin: 0 auto;
  max-width: 80%;
}

@keyframes jumpUpDown {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-25px); }
  50%  { transform: translateY(0); }
  70%  { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@keyframes blinkFlash {
  0%, 100% { opacity: 1; }
  50%     { opacity: 0.5; }
}


/* ------------------------------
   RESPONSIVE LAYOUT FOR MOBILE
------------------------------ */

@media (max-width: 1024px) {
  .exchange-title,
  .tokenomics-title {
    font-size: 48px;
  }

  .exchange-subtitle,
  .tokenomics-description {
    font-size: 18px;
  }

  .ponke-work {
    font-size: 28px;
  }

  .token-box {
    padding: 16px 24px;
    font-size: 16px;
  }

  .token-label {
    font-size: 18px;
  }

  .token-value {
    font-size: 16px;
  }

  .explore {
    font-size: 18px;
    padding: 10px 24px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
  }

  .logo {
    height: 48px;
  }

  .integrations-btn {
    font-size: 14px;
    padding: 8px 14px;
  }

  .ponke-head {
    max-width: 90%;
  }

  .exchange-title {
    font-size: 36px;
  }

  .exchange-subtitle {
    font-size: 16px;
  }

  .ponkebuy-img {
    max-width: 90%;
  }

  .tokenomics-content {
    flex-direction: column;
    align-items: center;
  }

  .tokenomics-image img {
    max-width: 100%;
  }

  .token-box {
    max-width: 100%;
  }

  .explore {
    font-size: 16px;
    padding: 8px 20px;
  }

  .subtitle {
    font-size: 16px;
  }

  .ponke-work {
    font-size: 24px;
  }

  .marquee-content {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .tokenomics-title,
  .exchange-title {
    font-size: 28px;
  }

  .tokenomics-description {
    font-size: 16px;
  }

  .token-label,
  .token-value {
    font-size: 14px;
  }

  .explore {
    font-size: 14px;
    padding: 6px 16px;
  }

  .subtitle {
    font-size: 14px;
  }

  .ponke-work {
    font-size: 20px;
  }

  .marquee-content {
    font-size: 12px;
  }
}

.blink-image {
  animation: blinkRedGreen 1s infinite;
  border-radius: 10px;
}

@keyframes blinkRedGreen {
  0% { filter: drop-shadow(0 0 8px red); }
  50% { filter: drop-shadow(0 0 8px green); }
  100% { filter: drop-shadow(0 0 8px red); }
}

.buy-text {
  font-weight: bold;
  font-size: 1.5rem;
  color: #FFD700;
  text-align: center;
  margin-top: 10px;
}

.buy-ponke-btn {
  display: inline-block;
  background-color: #ff2e2e;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 12px 24px;
  border: 3px solid black;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 20px;
  animation: bounce 1s infinite;
  box-shadow: 0 4px 0 #aa0000;
  transition: transform 0.2s ease;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.buy-ponke-btn:hover {
  background-color: #d70000;
  transform: scale(1.05);
}

.tokenomics-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap; /* biar responsive */
  margin-top: 30px;
}

.tokenomics-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.buy-ponke-btn {
  margin-top: 60px;
}

.page-4 {
  background: url('../images/bg.png') no-repeat center center/cover;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  position: relative;
  min-height: 100vh;
}

.journey-container {
  max-width: 600px;
  margin: 0 auto;
}

/* Title: lebih tebal + 1 baris */
.journey-title{
  font-family: 'Comic Neue', cursive;
  font-weight: 900;                 
  font-size: clamp(28px, 5.2vw, 64px);
  line-height: 1.05;
  color: #FFD700;
  margin-bottom: 20px;
  white-space: nowrap;              
  letter-spacing: .5px;
  text-shadow: 0 2px 0 #7a2a00, 0 6px 18px rgba(255,140,0,.25);
}

.journey-container{ max-width: 1100px; }

@media (max-width: 480px){
  .journey-title{ font-size: clamp(22px, 8vw, 36px); }
}

.journey-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.ponkenaut-floating img {
  width: 300px;
  animation: floatY 2.5s ease-in-out infinite;
}

/* Floating effect */
@keyframes floatY {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}
.money-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.money {
  position: absolute;
  width: 2000px;
  animation: fall linear infinite;
  opacity: 0.9;
}

@keyframes fall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .journey-title {
    font-size: 2.2rem;
  }

  .journey-subtitle {
    font-size: 1rem;
  }

  .ponkenaut-floating img {
    width: 100%;
    max-width: 400px;
  }

  .page-4 {
    padding: 60px 20px;
  }
}
@media (max-width: 480px) {
  .journey-title {
    font-size: 1.8rem;
  }

  .journey-subtitle {
    font-size: 0.95rem;
  }

  .ponkenaut-floating img {
    max-width: 300px;
  }
}

.journey-title {
  font-family: 'Luckiest Guy', cursive, system-ui;
  color: #ffd21f;
  text-align: center;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: 1px;
  text-shadow: 0 2px 0 #7a2a00, 0 6px 18px rgba(255, 140, 0, .25);
  margin: 0 0 .25rem;
}
.journey-subtitle {
  color: #ffe6b0;
  text-align: center;
  opacity: .9;
  margin-bottom: 1.25rem;
}

/* burni */
.burni-floating {
  display: grid;
  place-items: center;
  margin-top: 1rem;
}
.burni-floating img {
  width: min(42vw, 380px);
  filter: drop-shadow(0 10px 25px rgba(255,140,0,.35));
  animation: floatY 4.2s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

/* HUJAN API */
.fire-rain {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* setiap api (“flame”) dibuat lewat JS */
.flame {
  position: absolute;
  top: -10vh;
  left: var(--x, 50%);
  font-size: var(--s, 24px);
  transform: translateX(-50%);
  filter: drop-shadow(0 0 6px rgba(255, 120, 0, .7));
  animation:
    fall var(--d, 7s) linear var(--delay, 0s) infinite,
    sway 2.2s ease-in-out var(--delay, 0s) infinite alternate,
    flicker .8s steps(2, jump-both) infinite;
  will-change: transform;
}

.flame::before {
  content: "🔥";
  display: block;
  line-height: 1;
  transform: rotate(var(--r, 0deg));
}

/* jejak bara kecil */
.flame::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 80%;
  width: .35em;
  height: .35em;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,200,80,.9), rgba(255,90,0,.0) 70%);
  border-radius: 50%;
  opacity: .7;
}

@keyframes fall {
  to { transform: translate(-50%, 110vh); }
}
@keyframes sway {
  from { margin-left: -18px; }
  to   { margin-left: 18px; }
}
@keyframes flicker {
  50% { filter: drop-shadow(0 0 10px rgba(255,160,0,.95)); }
}



.page-1{
  background-image:url('../images/bg.png');
  position:relative;
  display:flex; align-items:center; justify-content:center;
  flex-direction:column; padding:120px 20px 60px;
  overflow:hidden; 
}

/* Konten berada di atas api */
.page-1 > main, .social-buttons, .explore, .subtitle { position:relative; z-index:2; }
.ponke-head{ max-width:500px; width:100%; height:auto; filter:drop-shadow(0 18px 36px rgba(255,140,0,.35)); }


/* === FIRE FRAME + AMBIENT GLOW + EMBERS === */
.page-1 { position: relative; overflow: hidden; }

.fire-frame-edges{
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  background:
    radial-gradient(120vmax 80vmax at 50% 105%, rgba(255,80,0,.12), transparent 60%),
    radial-gradient(80vmax 50vmax at 0% 100%, rgba(255,60,0,.18), transparent 60%),
    radial-gradient(80vmax 50vmax at 100% 100%, rgba(255,60,0,.18), transparent 60%);
}

.fire-frame-edges::before,
.fire-frame-edges::after{
  content:"";
  position:absolute; bottom:-8%; width:55vmin; height:85vmin;
  filter: blur(6px) drop-shadow(0 0 24px rgba(255,140,0,.45));
  opacity:.95;
  /* bentuk api dengan conic-gradient */
  background:
    conic-gradient(from 210deg at 30% 82%,
      rgba(255,210,120,.00) 0 35%,
      #ffb347 43%,
      #ff7a1a 55%,
      #ff4d00 66%,
      rgba(255,60,0,0) 76% 100%);
  border-radius: 50% 50% 0 0 / 55% 55% 0 0;
  transform-origin: 30% 90%;
  animation: lick 3.4s ease-in-out infinite, rise 7s linear infinite;
}

/* kiri */
.fire-frame-edges::before{ left:-9%; }
/* kanan (mirror) */
.fire-frame-edges::after{
  right:-9%; transform: scaleX(-1);
  animation-duration: 2.8s, 8.2s; 
}



.ponke-head{
  position: relative; z-index: 2;
  filter:
    drop-shadow(0 0 22px rgba(255,170,0,.35))
    drop-shadow(0 0 44px rgba(255,120,0,.25));
  animation: fire-flicker 1.6s steps(2, jump-none) infinite;
}

/* ====== keyframes ====== */
@keyframes lick{
  0%,100%{ transform: translateY(0) rotate(-2deg) }
  50%    { transform: translateY(-2.2%) rotate(2deg) }
}
@keyframes rise{
  0%  { opacity:.9;   }
  80% { opacity:1;    }
  100%{ opacity:.85;  }
}
@keyframes embers{
  0%   { background-position: 0 0, 0 0; }
  100% { background-position: -1600px -900px, -1200px -700px; }
}
@keyframes fire-flicker{
  0%  { filter:
        drop-shadow(0 0 14px rgba(255,170,0,.40))
        drop-shadow(0 0 30px rgba(255,120,0,.28)); }
  50% { filter:
        drop-shadow(0 0 22px rgba(255,200,60,.60))
        drop-shadow(0 0 52px rgba(255,120,0,.42)); }
  100%{ filter:
        drop-shadow(0 0 14px rgba(255,170,0,.40))
        drop-shadow(0 0 30px rgba(255,120,0,.28)); }
}


/* === SECTION 3: Burn Meme Gallery === */
.burn-gallery{
  position:relative;
  padding:80px 0 110px;
  color:#ffe9cf;
  background:
    radial-gradient(60vw 40vw at 50% 20%, rgba(255,120,40,.12), transparent 60%),
    radial-gradient(80vw 60vw at 50% 100%, rgba(255,70,10,.18), transparent 60%),
    linear-gradient(#1b0a06, #240b07);
  overflow:hidden;
}
.burn-gallery::before,
.burn-gallery::after{
  /* lidah api halus kiri/kanan */
  content:"";
  position:absolute; bottom:-10%; width:60vmin; height:90vmin;
  filter: blur(6px) drop-shadow(0 0 22px rgba(255,120,0,.45));
  background:
    conic-gradient(from 210deg at 30% 82%,
      rgba(255,210,120,0) 0 35%,
      #ffb347 43%, #ff7a1a 55%, #ff4d00 66%,
      rgba(255,60,0,0) 76% 100%);
  border-radius:50% 50% 0 0/55% 55% 0 0;
  opacity:.9;
  animation: burn-lick 3.4s ease-in-out infinite;
}
.burn-gallery::before{ left:-8%; transform-origin:30% 90%; }
.burn-gallery::after{ right:-8%; transform:scaleX(-1); animation-duration:2.8s; }

.burn-title{
  text-align:center;
  font-family:'Luckiest Guy', cursive, system-ui;
  font-size: clamp(32px, 4.5vw, 64px);
  color:#ffd21f;
  text-shadow:0 2px 0 #7a2a00, 0 6px 18px rgba(255,140,0,.25);
  margin-bottom:28px;
}

/* scroller */
.burn-scroller{
  --edge-fade: 140px;
  position:relative;
  overflow:hidden;
  padding: 16px 0;
  mask: linear-gradient(90deg, transparent 0 var(--edge-fade), #000 calc(var(--edge-fade) + 1px) calc(100% - var(--edge-fade)), transparent 100%);
}

.burn-track{
  display:flex;
  gap:22px;
  width:max-content;
  padding: 10px 18px;
  animation: burn-scroll 42s linear infinite;
}
.burn-track:hover{ animation-play-state: paused; }

.burn-card{
  flex:0 0 auto;
  width: 280px; height: 280px;
  border-radius:22px;
  padding:12px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 12px 28px rgba(0,0,0,.45),
    inset 0 0 0 2px rgba(255,160,0,.18);
  backdrop-filter: blur(2px);
  position:relative;
}
.burn-card::after{
  /* glow hijau/oranye tipis di frame */
  content:""; position:absolute; inset:0; border-radius:22px;
  box-shadow: 0 0 30px rgba(255,120,0,.28), inset 0 0 0 3px rgba(255,120,0,.18);
  pointer-events:none;
}

.burn-card img{
  width:100%; height:100%; object-fit:cover;
  border-radius:14px;
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
}

/* animasi */
@keyframes burn-scroll{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); }
}
@keyframes burn-lick{
  0%,100%{ transform: translateY(0) rotate(-2deg); }
  50%    { transform: translateY(-2.2%) rotate(2deg); }
}

/* responsive */
@media (max-width: 768px){
  .burn-card{ width:200px; height:200px; }
  .burn-scroller{ --edge-fade: 60px; }
}
@media (max-width: 480px){
  .burn-card{ width:160px; height:160px; }
  .burn-scroller{ --edge-fade: 30px; }
}


/* =========================
   PAGE 4 – THE BURNI JOURNEY
   (tema burn + solscan + tabel)
   ========================= */

.page-4 { position: relative; overflow: hidden; }
.page-4::before,
.page-4::after { z-index: 0; }
.fire-rain { z-index: 1; }    
.journey-container,
.journey-title,
.journey-subtitle,
.burni-floating { position: relative; z-index: 2; }

.page-4{
  min-height: 100vh;
  padding: 100px 20px 120px;
  color: #fff;
  background:
    radial-gradient(80vw 60vw at 50% 15%, rgba(255,110,30,.10), transparent 60%),
    radial-gradient(100vw 70vw at 50% 90%, rgba(255,60,0,.13), transparent 65%),
    linear-gradient(#120605, #1a0707 35%, #220807);
}


.journey-title{
  font-family: 'Luckiest Guy', cursive, system-ui;
  color:#ffd21f;
  text-align:center;
  font-size: clamp(32px, 4.6vw, 64px);
  letter-spacing:.5px;
  text-shadow: 0 2px 0 #7a2a00, 0 6px 18px rgba(255, 140, 0, .25);
  margin: 0 0 .3rem;
}
.journey-subtitle{
  color:#ffe6b0; text-align:center; opacity:.9; margin-bottom: .75rem;
}

/* burni melayang + flicker */
.burni-floating{ display:grid; place-items:center; margin-top:1.2rem; }
.burni-floating img{
  width: min(42vw, 380px);
  animation: burnFloatY 4.2s ease-in-out infinite, burnFlicker 1.6s steps(2, jump-none) infinite;
  filter:
    drop-shadow(0 10px 25px rgba(255,140,0,.35))
    drop-shadow(0 0 22px rgba(255,170,0,.35));
}

.fire-rain{
  position:absolute; inset:0; overflow:hidden; pointer-events:none;
}
/* layer bara kecil acak, geser diagonal */
.fire-rain::before{
  content:""; position:absolute; inset:-20%;
  background:
    radial-gradient(2px 2px at 8%   12%, rgba(255,200,90,.9) 60%, transparent 61%),
    radial-gradient(1.5px 1.5px at 32%  28%, rgba(255,160,60,.8) 60%, transparent 61%),
    radial-gradient(2px 2px at 68%  42%, rgba(255,210,120,.9) 60%, transparent 61%),
    radial-gradient(1.5px 1.5px at 84% 70%, rgba(255,120,40,.9) 60%, transparent 61%),
    radial-gradient(2px 2px at 18%  78%, rgba(255,190,80,.85) 60%, transparent 61%),
    radial-gradient(1.5px 1.5px at 56% 88%, rgba(255,160,60,.8) 60%, transparent 61%);
  background-size: 900px 900px;
  animation: burnEmbersDiag 18s linear infinite;
  mix-blend-mode: screen; opacity:.70; filter: blur(.2px);
}
/* layer percikan naik turun */
.fire-rain::after{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(3px 6px at 10% 110%, rgba(255,120,40,.8) 40%, transparent 41%),
    radial-gradient(3px 6px at 40% 120%, rgba(255,90,20,.8) 40%, transparent 41%),
    radial-gradient(3px 6px at 70% 115%, rgba(255,140,40,.8) 40%, transparent 41%),
    radial-gradient(3px 6px at 90% 118%, rgba(255,100,20,.8) 40%, transparent 41%);
  animation: burnSparksRise 2.4s ease-in-out infinite;
  opacity:.35; mix-blend-mode: screen;
}

.burn-actions{
  margin: 18px auto 14px;
  display: flex;
  justify-content: center;
}
.btn-solscan{
  display:inline-block;
  padding:12px 20px;
  font-weight:900;
  text-decoration:none;
  color:#1b1b1b;
  background:#ffd21f;
  border:3px solid #000;
  border-radius:8px;
  box-shadow: 0 4px 0 #7a2a00, 0 10px 26px rgba(255,140,0,.25);
  transform: rotate(-2deg);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-solscan:hover{
  transform: rotate(0deg) scale(1.03);
  background:#ffea74;
}

.burn-table-wrap{
  max-width: 980px;
  margin: 18px auto 0;
  padding: 12px;
  margin-top: 20px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,120,40,.12), rgba(255,60,0,.06));
  box-shadow: 0 16px 40px rgba(0,0,0,.45), inset 0 0 0 2px rgba(255,140,0,.15);
}
.burn-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.burn-table thead th{
  text-align: left;
  padding: 14px 16px;
  font-weight: 900;
  letter-spacing: .2px;
  color: #ffe6b0;
  background: rgba(255,120,40,.18);
  border-bottom: 2px solid rgba(255,140,0,.25);
}
.burn-table tbody td{
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,120,40,.15);
  color: #fff;
}
.burn-table tbody tr:hover{
  background: rgba(255,120,40,.08);
}
.burn-table .mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}
.burn-table .ticker{ opacity:.85; font-size: .95em; }
.burn-table .row-link{ color:#ffd21f; font-weight: 800; text-decoration: underline; }
.burn-table .empty td{
  text-align:center; color:#ffcf95; padding: 22px 16px;
}

/* --- mobile layout tabel --- */
@media (max-width: 640px){
  .page-4{ padding: 70px 16px 90px; }
  .burni-floating img{ width:min(60vw, 320px); }

  .burn-table thead{ display:none; }
  .burn-table tr{ display:grid; grid-template-columns: 1fr; padding:10px 0; }
  .burn-table td{
    display:flex; justify-content: space-between; gap:12px;
    border:0; border-bottom:1px dashed rgba(255,140,0,.18);
  }
  .burn-table td::before{
    content: attr(data-label);
    color:#ffcf95; font-weight:700;
  }
}
@media (max-width: 480px){
  .burni-floating img{ width:min(70vw, 280px); }
}

@keyframes burnFloatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
@keyframes burnFlicker{
  0%  { filter: drop-shadow(0 10px 25px rgba(255,140,0,.35)) drop-shadow(0 0 20px rgba(255,120,0,.25)); }
  50% { filter: drop-shadow(0 10px 25px rgba(255,160,0,.55)) drop-shadow(0 0 40px rgba(255,160,0,.45)); }
  100%{ filter: drop-shadow(0 10px 25px rgba(255,140,0,.35)) drop-shadow(0 0 20px rgba(255,120,0,.25)); }
}
@keyframes burnLick{
  0%,100%{ transform: translateY(0) rotate(-2deg); }
  50%    { transform: translateY(-2.2%) rotate(2deg); }
}
@keyframes burnEmbersDiag{
  0%   { transform: translate(0,0); }
  100% { transform: translate(-900px,-900px); }
}
@keyframes burnSparksRise{
  0%   { transform: translateY(0);     opacity:.25; }
  50%  { transform: translateY(-30px); opacity:.5;  }
  100% { transform: translateY(0);     opacity:.25; }
}

/* --- optional: reduce motion --- */
@media (prefers-reduced-motion: reduce){
  .burni-floating img,
  .page-4::before,
  .page-4::after,
  .fire-rain::before,
  .fire-rain::after{
    animation: none !important;
  }
}


/* ==== HARD FIX ALIGNMENT BURN TABLE ==== */

.page-4 .burn-table-wrap{
  width: min(92vw, 980px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
  display: block !important;
}

.page-4 .burn-table{
  width: 100% !important;
  table-layout: fixed !important;      
  border-spacing: 0 !important;
  border-collapse: separate !important;
}

.page-4 .burn-table thead th,
.page-4 .burn-table tbody td{
  text-align: center !important;      
  vertical-align: middle !important;  
  padding: 14px 12px !important;      
  white-space: nowrap;                
}

/* proporsi kolom */
.page-4 .burn-table thead th:nth-child(1),
.page-4 .burn-table tbody td:nth-child(1){ width: 50% !important; }
.page-4 .burn-table thead th:nth-child(2),
.page-4 .burn-table tbody td:nth-child(2){ width: 25% !important; }
.page-4 .burn-table thead th:nth-child(3),
.page-4 .burn-table tbody td:nth-child(3){ width: 25% !important; }

.page-4 .burn-table .mono{ display: inline-block !important; }

.page-4 .burn-table thead th{ letter-spacing: 0.2px !important; }

@media (min-width: 641px){
  .page-4 .burn-table thead{ display: table-header-group !important; }
  .page-4 .burn-table tr{ display: table-row !important; }
  .page-4 .burn-table td::before{ content: none !important; }
}


#totalBurn{
  font-weight: 700;                        
  font-size: clamp(20px, 4vw, 40px);       
  line-height: 1.1;
  color: #FFD700;                           
  white-space: nowrap;                      
  text-shadow: 0 2px 0 #7a2a00, 0 6px 18px rgba(255,140,0,.25);
  font-variant-numeric: tabular-nums;       
  margin-top: 6px;                           
}

.about-burny{
  position: relative;
  padding: 90px 20px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(80vw 60vw at 50% 20%, rgba(255,110,30,.10), transparent 60%),
    radial-gradient(100vw 70vw at 50% 100%, rgba(255,60,0,.13), transparent 65%),
    linear-gradient(#120605, #1a0707 35%, #220807);
}

.about-burny::before,
.about-burny::after{
  content:"";
  position:absolute; bottom:-10%; width:64vmin; height:90vmin;
  filter: blur(6px) drop-shadow(0 0 24px rgba(255,140,0,.45));
  opacity:.95; pointer-events:none; z-index:1;
  background:
    conic-gradient(from 210deg at 30% 82%,
      rgba(255,210,120,0) 0 35%,
      #ffb347 43%,
      #ff7a1a 55%,
      #ff4d00 66%,
      rgba(255,60,0,0) 76% 100%);
  border-radius: 50% 50% 0 0 / 55% 55% 0 0;
  transform-origin: 30% 90%;
  animation: about-lick 3.4s ease-in-out infinite;
}
.about-burny::before{ left:-8%; }
.about-burny::after{ right:-8%; transform:scaleX(-1); animation-duration: 2.8s; }

.about-container{
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  display: grid; gap: 48px;
  grid-template-columns: 1.05fr 1fr; align-items: center;
}
.about-media{ display:grid; place-items:center; }
.about-img{
  width: min(520px, 42vw);
  height: auto;
  filter:
    drop-shadow(0 10px 25px rgba(255,140,0,.35))
    drop-shadow(0 0 22px rgba(255,170,0,.30));
  animation: about-flicker 1.6s steps(2, jump-none) infinite;
}

.about-title{
  font-family: 'Luckiest Guy', cursive, system-ui;
  color:#ffd21f;
  font-weight: 900;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.05;
  white-space: nowrap;        
  margin: 0 0 10px;
  text-shadow: 0 2px 0 #7a2a00, 0 6px 18px rgba(255,140,0,.25);
}
.about-lead{
  font-weight: 800;
  font-size: clamp(18px, 2vw, 22px);
  color:#ffe6b0;
  margin-bottom: 12px;
}
.about-copy p{
  font-family: 'Comic Sans MS', sans-serif;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.7;
  color:#fff;
  opacity:.95;
  margin: 6px 0;
}

.about-fire{
  position:absolute; inset:0; pointer-events:none; z-index:1;
}
.about-fire::before{
  content:""; position:absolute; inset:-18%;
  background:
    radial-gradient(2px 2.5px at 12% 88%, rgba(255,200,90,.9) 60%, transparent 62%),
    radial-gradient(2px 2.5px at 46% 92%, rgba(255,160,60,.9) 60%, transparent 62%),
    radial-gradient(2px 2.5px at 74% 90%, rgba(255,210,120,.9) 60%, transparent 62%),
    radial-gradient(2px 2.5px at 88% 95%, rgba(255,140,40,.9) 60%, transparent 62%);
  background-size: 900px 900px;
  animation: about-embers 18s linear infinite;
  mix-blend-mode: screen; opacity:.65; filter: blur(.2px);
}

/* responsive */
@media (max-width: 900px){
  .about-container{ grid-template-columns: 1fr; text-align: center; }
  .about-title{ white-space: normal; }
  .about-img{ width: min(520px, 66vw); }
}

/* keyframes */
@keyframes about-lick{
  0%,100%{ transform: translateY(0) rotate(-2deg); }
  50%    { transform: translateY(-2.2%) rotate(2deg); }
}
@keyframes about-flicker{
  0%  { filter: drop-shadow(0 10px 25px rgba(255,140,0,.35)) drop-shadow(0 0 20px rgba(255,120,0,.25)); }
  50% { filter: drop-shadow(0 10px 25px rgba(255,160,0,.55)) drop-shadow(0 0 40px rgba(255,160,0,.45)); }
  100%{ filter: drop-shadow(0 10px 25px rgba(255,140,0,.35)) drop-shadow(0 0 20px rgba(255,120,0,.25)); }
}
@keyframes about-embers{
  0%   { transform: translate(0,0); }
  100% { transform: translate(-900px,-900px); }
}

.about-img{

  animation:
    about-flicker 1.6s steps(2, jump-none) infinite,
    about-float   4.2s ease-in-out infinite;
  will-change: transform, filter;
  transform-origin: 50% 80%;
}

@keyframes about-float{
  0%, 100% { transform: translateY(0); }
  30%      { transform: translateY(-16px); }
  50%      { transform: translateY(0); }
  70%      { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce){
  .about-img{ animation: about-flicker 1.6s steps(2, jump-none) infinite; }
}

.about-img{
  animation:
    about-flicker 1.2s steps(2, jump-none) infinite,
    about-float   2.2s cubic-bezier(.37,.02,.25,1) infinite !important;
  will-change: transform, filter;
  transform-origin: 50% 80%;
}

@keyframes about-float{
  0%,100% { transform: translateY(0); }
  20%     { transform: translateY(-36px); }  
  40%     { transform: translateY(-6px);  }
  60%     { transform: translateY(-26px); }
  80%     { transform: translateY(-3px);  }
}
