/* =========================================================
   SCHWENNINGEN TOKEN — MASTER STYLE V2
   Bereinigt aus der bestehenden style.css
   Bereiche: Global · Header · Footer · Index · FAQ · Wallet · Tokenomics · Community
   ========================================================= */

:root{
  --gold:#f3bf2b;
  --gold-light:#ffdd75;
  --text:#ffffff;
  --muted:#bdbdbd;
  --border:rgba(243,191,43,.22);
}

*{margin:0;padding:0;box-sizing:border-box}
html{
  scroll-behavior:smooth;
  overflow-x:clip;
  max-width:100%;
}

body{
  width:100%;
  max-width:100%;
}

body{
  font-family:Arial,sans-serif;
  background:
    radial-gradient(circle at top right, rgba(243,191,43,.12), transparent 25%),
    radial-gradient(circle at bottom left, rgba(243,191,43,.08), transparent 25%),
    #050505;
  color:var(--text);
  overflow-x:clip;
}

a{text-decoration:none;color:inherit}

section{
  max-width:1250px;
  margin:auto;
  padding:120px 24px;
}

.section-title{text-align:center;margin-bottom:70px}
.section-title h2{font-size:48px;margin-bottom:18px;color:var(--gold)}
.section-title p{color:var(--muted);max-width:760px;margin:auto;line-height:1.8}

header{
  position:fixed;
  top:0;
  width:100%;
  z-index:1000;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.05);
}

nav{
  max-width:1250px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 24px;
}

.logo{display:flex;align-items:center;gap:14px;font-size:20px;font-weight:800}
.logo img{width:52px;height:52px;border-radius:50%}

.nav-links{display:flex;gap:28px;color:#d7d7d7}
.nav-links a:hover{color:var(--gold)}

.mobile-menu-btn{
  display:none;
  font-size:34px;
  cursor:pointer;
  color:var(--gold);
  line-height:1;
}

.mobile-menu{
  position:fixed;
  top:84px;
  right:-100%;
  width:280px;
  height:calc(100vh - 84px);
  background:rgba(5,5,5,.96);
  backdrop-filter:blur(14px);
  border-left:1px solid rgba(243,191,43,.18);
  padding:40px 28px;
  transition:.35s;
  z-index:999;
}

.mobile-menu.active{right:0}

.mobile-menu a{
  display:block;
  margin-bottom:26px;
  color:#fff;
  font-size:20px;
}

.mobile-menu a:hover{color:var(--gold)}

.hero{
  position:relative;
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
  padding-top:140px;
}

.hero::before{
  content:"";
  position:absolute;
  right:-120px;
  top:50%;
  transform:translateY(-50%);
  width:700px;
  height:700px;
  background:radial-gradient(circle, rgba(243,191,43,.18), transparent 65%);
  z-index:-1;
}

.hero-badge,.claim-badge{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(243,191,43,.12);
  border:1px solid rgba(243,191,43,.3);
  color:var(--gold-light);
  margin-bottom:24px;
  font-size:14px;
  letter-spacing:.7px;
}

.hero h1{
  font-size:clamp(60px,8vw,110px);
  line-height:.92;
  margin-bottom:26px;
  font-weight:900;
}

.hero h1 span{color:var(--gold)}

.hero p{
  font-size:22px;
  line-height:1.8;
  color:var(--muted);
  max-width:620px;
  margin-bottom:36px;
}

.hero-buttons{display:flex;gap:18px;flex-wrap:wrap}

.btn,.claim-button{
  display:inline-block;
  padding:15px 30px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:#111;
  font-weight:800;
}

.btn-outline{
  padding:15px 30px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.04);
  color:#fff;
}

.coin{
  width:100%;
  max-width:620px;
  display:block;
  margin:auto;
  filter:
    drop-shadow(0 0 35px rgba(243,191,43,.45))
    drop-shadow(0 0 80px rgba(243,191,43,.18))
    drop-shadow(0 40px 100px rgba(0,0,0,.85));
  animation:float 5s ease-in-out infinite;
}

@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-18px)}
}

.cards,.tokenomics{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.card,.token-box,.faq-item{
  background:rgba(8,8,8,.82);
  border:1px solid var(--border);
  border-radius:26px;
  padding:36px 28px;
}

.card{text-align:center}

.card-icon{
  font-size:34px;
  margin-bottom:18px;
}

.card h3,.faq-item h3{
  color:var(--gold);
  margin-bottom:14px;
  font-size:24px;
}

.card p,.faq-item p{
  color:var(--muted);
  line-height:1.8;
}

.story-hero{
  max-width:1400px;
  padding-top:140px;
}

.story-intro{
  text-align:center;
  max-width:980px;
  margin:0 auto 70px;
}

.story-intro h2{
  font-size:clamp(46px,7vw,86px);
  line-height:1;
  color:var(--gold);
  margin-bottom:28px;
}

.story-intro p{
  color:var(--muted);
  font-size:22px;
  line-height:1.9;
}

.story-layout{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:70px;
  align-items:start;
}

.poster-wrap{
  position:-webkit-sticky;
  position:sticky;
  top:105px;
  align-self:start;
  height:calc(100vh - 130px);
  min-height:560px;
}

.poster{
  width:100%;
  height:100%;
  min-height:560px;
  object-fit:cover;
  border-radius:34px;
  border:1px solid var(--border);
  box-shadow:
    0 50px 120px rgba(0,0,0,.75),
    0 0 60px rgba(243,191,43,.12);
}

.story-manifest{
  display:grid;
  gap:26px;
}

.story-chapter{
  background:linear-gradient(145deg, rgba(18,18,18,.92), rgba(8,8,8,.98));
  border:1px solid rgba(243,191,43,.18);
  border-radius:30px;
  padding:38px;
}

.story-chapter span{
  display:block;
  color:var(--gold-light);
  font-size:13px;
  letter-spacing:2px;
  margin-bottom:14px;
}

.story-chapter h3{
  color:var(--gold);
  font-size:32px;
  margin-bottom:18px;
}

.story-chapter p{
  color:var(--muted);
  font-size:18px;
  line-height:1.9;
  margin-bottom:16px;
}


.story-chapter:nth-child(even){
  margin-left:40px;
}

.story-chapter{
  transition:.25s;
}

.story-chapter:hover{
  transform:translateY(-6px);
  border-color:rgba(243,191,43,.35);
  box-shadow:0 0 35px rgba(243,191,43,.08);
}

.story-quote{
  margin:70px auto 0;
  max-width:1050px;
  text-align:center;
  padding:55px 38px;
  border-radius:34px;
  background:rgba(243,191,43,.08);
  border:1px solid rgba(243,191,43,.3);
}

.story-quote strong{
  display:block;
  font-size:clamp(32px,5vw,58px);
  line-height:1.18;
  color:var(--gold);
  margin-bottom:18px;
}

.story-quote p{
  color:#dddddd;
  font-size:20px;
  line-height:1.8;
}

.vision-grid,.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.vision-card,.step-card{
  background:rgba(8,8,8,.82);
  border:1px solid var(--border);
  border-radius:28px;
  padding:36px;
}

.vision-card h3,.step-card h3{
  color:var(--gold);
  font-size:26px;
  margin-bottom:16px;
}

.vision-card p,.step-card p{
  color:var(--muted);
  line-height:1.85;
}

.step-number{
  width:54px;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:rgba(243,191,43,.12);
  border:1px solid rgba(243,191,43,.3);
  color:var(--gold-light);
  font-weight:900;
  font-size:20px;
  margin-bottom:22px;
}

.token-box{text-align:center}
.token-box strong{display:block;font-size:34px;color:var(--gold);margin-bottom:12px}
.token-box span{color:var(--muted);line-height:1.6;display:block}

.status-box{
  margin:46px auto 0;
  max-width:1050px;
  background:
    linear-gradient(145deg, rgba(18,18,18,.95), rgba(8,8,8,.98));
  border:1px solid rgba(243,191,43,.25);
  border-radius:32px;
  padding:42px;
  box-shadow:
    0 0 45px rgba(243,191,43,.08),
    0 40px 100px rgba(0,0,0,.45);
}

.status-box h3{
  color:var(--gold);
  font-size:34px;
  margin-bottom:12px;
  text-align:center;
}

.status-box > p{
  color:var(--muted);
  text-align:center;
  line-height:1.8;
  margin-bottom:34px;
}

.status-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.status-item{
  background:
    linear-gradient(145deg, rgba(18,18,18,.95), rgba(8,8,8,.98));
  border:1px solid rgba(243,191,43,.18);
  border-radius:24px;
  padding:28px;
  text-align:left;
  transition:.25s;
  box-shadow:0 0 20px rgba(243,191,43,.04);
}

.status-item:hover{
  transform:translateY(-6px);
  border-color:rgba(243,191,43,.4);
  box-shadow:0 0 35px rgba(243,191,43,.12);
}

.status-label{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(243,191,43,.12);
  border:1px solid rgba(243,191,43,.25);
  color:var(--gold-light);
  font-size:12px;
  letter-spacing:1px;
  margin-bottom:18px;
}

.status-label.live{
  color:#8cffb0;
  border-color:rgba(140,255,176,.35);
  background:rgba(140,255,176,.08);
}

.status-item h4{
  font-size:26px;
  color:var(--gold);
  margin-bottom:14px;
}

.status-item p{
  color:var(--muted);
  line-height:1.8;
  font-size:16px;
}

.token-address-box,.claim-box{
  margin:50px auto 0;
  background:linear-gradient(145deg, rgba(18,18,18,.95), rgba(8,8,8,.98));
  border:1px solid rgba(243,191,43,.22);
  border-radius:32px;
  padding:42px;
  max-width:950px;
  box-shadow:0 0 40px rgba(243,191,43,.06),0 40px 100px rgba(0,0,0,.55);
}

.token-top{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:34px;
}

.solana-icon{
  width:72px;
  height:72px;
  border-radius:22px;
  background:rgba(255,255,255,.04);
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.08);
}

.solana-icon img{width:42px}

.network-label{
  color:#8f8f8f;
  font-size:13px;
  letter-spacing:2px;
  margin-bottom:8px;
}

.token-title{font-size:28px;font-weight:800;color:#fff}
.address-label{color:var(--gold);margin-bottom:14px;font-size:15px;letter-spacing:1px}

.token-address,.wallet-example{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:22px;
  font-size:18px;
  line-height:1.8;
  word-break:break-all;
  color:#dddddd;
}

.explorer-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:22px;
}

.explorer-btn{
  padding:12px 18px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#dddddd;
  transition:.2s;
}

.explorer-btn:hover{
  border-color:rgba(243,191,43,.4);
  color:var(--gold);
  background:rgba(243,191,43,.08);
}

.copy-btn{
  margin-top:24px;
  padding:14px 22px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:#111;
  font-weight:800;
  cursor:pointer;
  transition:.2s;
}

.copy-btn:hover{opacity:.92}

.claim-box{text-align:center}
.claim-box h3{font-size:42px;margin-bottom:24px;color:var(--gold)}
.claim-box p{color:var(--muted);line-height:1.9;font-size:19px;margin-bottom:24px}
.wallet-example{margin:34px 0}
.claim-note{margin-top:30px;color:#8d8d8d;font-size:14px;line-height:1.8}

.faq{display:grid;gap:20px}

.disclaimer{
  background:rgba(243,191,43,.08);
  border:1px solid rgba(243,191,43,.3);
  border-radius:28px;
  padding:40px;
}

.disclaimer h3{color:var(--gold);margin-bottom:18px;font-size:30px}
.disclaimer p{color:#dddddd;line-height:1.9}

footer{
  border-top:1px solid rgba(255,255,255,.06);
  background:#050505;
  padding:60px 24px;
  text-align:center;
  color:#8e8e8e;
}

footer a{color:var(--gold)}

.footer-small{
  margin-top:14px;
  color:#777;
  font-size:14px;
  line-height:1.8;
}

.modal{
  display:none;
  position:fixed;
  z-index:9999;
  left:0;
  top:0;
  width:100%;
  height:100%;
  overflow:auto;
  background:rgba(0,0,0,.82);
  backdrop-filter:blur(8px);
}

.modal-content{
  background:#0b0b0b;
  margin:8% auto;
  padding:40px;
  border:1px solid rgba(243,191,43,.25);
  border-radius:28px;
  max-width:700px;
  color:#fff;
  box-shadow:0 0 50px rgba(0,0,0,.6),0 0 20px rgba(243,191,43,.08);
}

.modal-content h2,.modal-content h3{color:#f3bf2b}
.modal-content p{line-height:1.9;color:#d4d4d4}

.close-modal{
  float:right;
  font-size:34px;
  cursor:pointer;
  color:#f3bf2b;
}


/* UNIFIED GLOBAL HOVER EFFECT */

.card,
.token-box,
.status-item,
.vision-card,
.step-card,
.faq-item,
.story-chapter,
.token-address-box,
.claim-box{
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease !important;
}

.card:hover,
.token-box:hover,
.status-item:hover,
.vision-card:hover,
.step-card:hover,
.faq-item:hover,
.story-chapter:hover,
.token-address-box:hover,
.claim-box:hover{
  transform:translateY(-8px) !important;
  border-color:rgba(243,191,43,.55) !important;
  box-shadow:
    0 0 28px rgba(243,191,43,.28),
    0 0 90px rgba(243,191,43,.18),
    0 30px 90px rgba(0,0,0,.6) !important;
}


@media(max-width:980px){
  section{padding:90px 20px}
  .hero{
    grid-template-columns:1fr;
    text-align:center;
    min-height:auto;
    padding-top:105px;
    padding-bottom:50px;
    gap:25px;
  }
  .hero > div:first-child{order:2}
  .hero > div:last-child{order:1}
  .coin{max-width:240px;margin-bottom:10px}
  .story-layout{grid-template-columns:1fr;text-align:center}
  .cards,.tokenomics,.status-grid,.vision-grid,.steps-grid{grid-template-columns:1fr}
  .hero-buttons{justify-content:center}
  .nav-links{display:none}
  .mobile-menu-btn{display:block}
  .token-top{justify-content:center;flex-direction:column;text-align:center}
  .poster-wrap{position:relative;top:auto}
  .status-item{text-align:center}
  .hero h1{font-size:44px;line-height:1}
  .hero p{font-size:18px;line-height:1.7}
  .hero-badge{font-size:12px;padding:8px 14px}
  
  .story-chapter:nth-child(even){
    margin-left:0;
  }

  .poster{
    height:auto;
    min-height:auto;
  }

  .section-title h2{font-size:38px}
}

.notice-box{
  margin-top:28px;
  display:inline-block;
  padding:14px 18px;
  border-radius:18px;
  background:rgba(243,191,43,.08);
  border:1px solid rgba(243,191,43,.22);
  color:#d8d8d8;
  line-height:1.7;
  max-width:620px;
  font-size:15px;
}


.regional-teaser{
  background:linear-gradient(145deg, rgba(18,18,18,.95), rgba(8,8,8,.98));
  border:1px solid rgba(243,191,43,.22);
  border-radius:34px;
  padding:46px;
  max-width:1050px;
  margin:0 auto;
  box-shadow:0 0 45px rgba(243,191,43,.08),0 40px 100px rgba(0,0,0,.45);
  transition:.28s ease;
}
.regional-teaser:hover{
  transform:translateY(-8px);
  border-color:rgba(243,191,43,.55);
  box-shadow:0 0 28px rgba(243,191,43,.28),0 0 90px rgba(243,191,43,.18),0 30px 90px rgba(0,0,0,.6);
}
.regional-teaser-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  align-items:center;
}
.regional-teaser h2{color:var(--gold);font-size:44px;margin-bottom:18px}
.regional-teaser p{color:var(--muted);line-height:1.9;font-size:18px;margin-bottom:18px}
.partner-mini-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.partner-mini{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:22px;
  color:#dddddd;
  line-height:1.6;
}
.partner-mini strong{display:block;color:var(--gold);margin-bottom:8px;font-size:18px}
@media(max-width:980px){
  .regional-teaser-grid,.partner-mini-grid{grid-template-columns:1fr}
  .regional-teaser{padding:32px 24px;text-align:center}
  .regional-teaser h2{font-size:36px}
}


.vision-card-link{
  display:block;
  height:100%;
}

.vision-badge{
  display:inline-block;
  margin-bottom:16px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(243,191,43,.12);
  border:1px solid rgba(243,191,43,.25);
  color:var(--gold-light);
  font-size:12px;
  letter-spacing:1px;
}

.vision-more{
  display:inline-block;
  margin-top:18px;
  color:var(--gold);
  font-weight:800;
}


/* FAQ ACCORDION */

.faq{
  max-width:980px;
  margin:0 auto;
  display:grid;
  gap:16px;
}

.faq-item{
  padding:0;
  overflow:hidden;
  cursor:pointer;
}

.faq-question{
  width:100%;
  padding:26px 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  background:transparent;
  border:none;
  color:#ffffff;
  text-align:left;
  font:inherit;
  cursor:pointer;
}

.faq-question h3{
  margin:0;
  color:var(--gold);
  font-size:22px;
}

.faq-icon{
  color:var(--gold);
  font-size:28px;
  flex-shrink:0;
  transition:.25s;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faq-answer-inner{
  padding:0 30px 28px;
  color:var(--muted);
  line-height:1.85;
}

.faq-item.active .faq-answer{
  max-height:360px;
}

.faq-item.active .faq-icon{
  transform:rotate(45deg);
}

@media(hover:hover){
  .faq-item:hover .faq-answer{
    max-height:360px;
  }

  .faq-item:hover .faq-icon{
    transform:rotate(45deg);
  }
}


.identity-coin-section{
  max-width:1400px;
}

.identity-coin-wrap{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:46px;
  align-items:center;
  background:linear-gradient(145deg, rgba(18,18,18,.95), rgba(8,8,8,.98));
  border:1px solid rgba(243,191,43,.24);
  border-radius:38px;
  padding:46px;
  box-shadow:
    0 0 45px rgba(243,191,43,.10),
    0 40px 110px rgba(0,0,0,.55);
}

.identity-coin-wrap:hover{
  transform:translateY(-8px);
  border-color:rgba(243,191,43,.55);
  box-shadow:
    0 0 28px rgba(243,191,43,.28),
    0 0 90px rgba(243,191,43,.18),
    0 30px 90px rgba(0,0,0,.6);
}

.identity-coin-wrap{
  transition:.28s ease;
}

.identity-coin-image{
  width:100%;
  border-radius:32px;
  filter:
    drop-shadow(0 0 32px rgba(243,191,43,.25))
    drop-shadow(0 35px 80px rgba(0,0,0,.70));
}

.identity-coin-text .hero-badge{
  margin-bottom:20px;
}

.identity-coin-text h2{
  color:var(--gold);
  font-size:clamp(38px,5vw,62px);
  line-height:1.05;
  margin-bottom:22px;
}

.identity-coin-text p{
  color:var(--muted);
  font-size:19px;
  line-height:1.9;
  margin-bottom:18px;
}

.identity-coin-claim{
  margin-top:28px;
  padding:22px;
  border-radius:22px;
  background:rgba(243,191,43,.08);
  border:1px solid rgba(243,191,43,.25);
  color:#dddddd;
  line-height:1.8;
}

@media(max-width:980px){
  .identity-coin-wrap{
    grid-template-columns:1fr;
    padding:28px 22px;
    text-align:center;
  }

  .identity-coin-text{
    order:2;
  }

  .identity-coin-image{
    order:1;
  }
}


.wallet-app-icon{
  width:78px;
  height:78px;
  border-radius:24px;
  margin-bottom:18px;
  box-shadow:
    0 0 28px rgba(150,80,255,.35),
    0 18px 50px rgba(0,0,0,.45);
}


.footer-seo{
  margin-top:26px;
  color:#7f7f7f;
  font-size:13px;
  line-height:1.8;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}


.wallet-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

.wallet-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  color:#dddddd;
  font-size:14px;
  font-weight:800;
  transition:.22s;
}

.wallet-link:hover{
  border-color:rgba(243,191,43,.45);
  color:var(--gold);
  background:rgba(243,191,43,.08);
}

@media(max-width:980px){
  .wallet-links{
    justify-content:center;
  }
}


.store-badges{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:22px;
  align-items:center;
}

.store-badges img{
  height:54px;
  width:auto;
  border-radius:12px;
  transition:.22s;
  box-shadow:0 10px 28px rgba(0,0,0,.35);
}

.store-badges img:hover{
  transform:translateY(-3px);
  box-shadow:
    0 0 20px rgba(243,191,43,.18),
    0 14px 36px rgba(0,0,0,.45);
}

@media(max-width:980px){
  .store-badges{
    justify-content:center;
  }
}


.store-badges{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:22px;
  align-items:center;
}

.store-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:54px;
  padding:10px 16px;
  border-radius:14px;
  background:#0b0b0b;
  border:1px solid rgba(255,255,255,.16);
  color:#ffffff;
  box-shadow:0 10px 28px rgba(0,0,0,.35);
  transition:.22s;
}

.store-badge:hover{
  transform:translateY(-3px);
  border-color:rgba(243,191,43,.45);
  box-shadow:
    0 0 20px rgba(243,191,43,.18),
    0 14px 36px rgba(0,0,0,.45);
}

.store-icon{
  font-size:28px;
  line-height:1;
}

.store-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.store-text small{
  font-size:11px;
  color:#cccccc;
}

.store-text strong{
  font-size:17px;
  color:#ffffff;
}

@media(max-width:980px){
  .store-badges{
    justify-content:center;
  }
}


.step-visual{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:22px;
}

.step-icon{
  width:54px;
  height:54px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-size:28px;
  box-shadow:0 10px 28px rgba(0,0,0,.35);
}

.step-mini-box{
  margin-top:22px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(243,191,43,.08);
  border:1px solid rgba(243,191,43,.18);
  color:#d8d8d8;
  line-height:1.7;
  font-size:14px;
}


.step-title-row{
  display:flex;
  align-items:center;
  gap:16px;
  margin:18px 0 16px;
}

.step-title-row h3{
  margin:0 !important;
}

.step-title-row .wallet-app-icon,
.step-title-row .step-icon{
  width:52px;
  height:52px;
  min-width:52px;
  border-radius:16px;
  margin:0;
}

.step-title-row .step-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-size:26px;
  box-shadow:0 10px 28px rgba(0,0,0,.35);
}

@media(max-width:980px){
  .step-title-row{
    justify-content:center;
    text-align:left;
  }
}


.supply-explanation{
  margin-top:42px;
}

.supply-explanation-text{
  word-break:normal !important;
  overflow-wrap:normal !important;
  hyphens:none !important;
  text-align:left;
  line-height:1.9;
}

.supply-formula{
  margin:22px 0;
  padding:18px 20px;
  border-radius:18px;
  background:rgba(243,191,43,.08);
  border:1px solid rgba(243,191,43,.22);
  color:var(--gold-light);
  font-size:22px;
  font-weight:900;
  text-align:center;
  word-break:normal !important;
  overflow-wrap:normal !important;
  white-space:normal;
}

@media(max-width:980px){
  .supply-explanation-text{
    text-align:center;
  }

  .supply-formula{
    font-size:18px;
  }
}


.portal-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.portal-card{
  background:linear-gradient(145deg, rgba(18,18,18,.95), rgba(8,8,8,.98));
  border:1px solid rgba(243,191,43,.22);
  border-radius:28px;
  padding:34px 28px;
  transition:.28s ease;
  display:block;
  height:100%;
}

.portal-card:hover{
  transform:translateY(-8px);
  border-color:rgba(243,191,43,.55);
  box-shadow:
    0 0 28px rgba(243,191,43,.28),
    0 0 90px rgba(243,191,43,.18),
    0 30px 90px rgba(0,0,0,.6);
}

.portal-icon{
  font-size:38px;
  margin-bottom:20px;
}

.portal-card h3{
  color:var(--gold);
  font-size:25px;
  margin-bottom:14px;
}

.portal-card p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:18px;
}

.portal-more{
  color:var(--gold);
  font-weight:800;
}

@media(max-width:980px){
  .portal-grid{
    grid-template-columns:1fr;
  }
}


.footer-whitepaper{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:14px;
  color:var(--gold);
  font-weight:800;
  transition:.2s ease;
}

.footer-whitepaper:hover{
  opacity:.85;
}


footer{
  margin-top:90px;
  padding:50px 24px 70px;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
}

.copyright{
  color:#8f8f8f;
  font-size:15px;
  margin-bottom:26px;
}

.footer-links{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;

  margin-bottom:28px;
}

.footer-links a{
  color:var(--gold);
  font-weight:800;
  transition:.2s ease;
}

.footer-links a:hover{
  opacity:.8;
}

.footer-links span{
  color:#666;
}

.footer-tags{
  max-width:980px;
  margin:auto;

  color:#777;
  line-height:2;
  font-size:14px;
}

@media(max-width:900px){

  .footer-tags{
    line-height:1.9;
    font-size:13px;
  }
}


/* CLEAN MAIN NAVIGATION WITH DROPDOWN */

.nav-more{
  position:relative;
  padding-bottom:18px;
}

.nav-more-button{
  color:#d7d7d7;
  font-weight:800;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:6px;
}

.nav-more-button:hover{
  color:var(--gold);
}

.nav-dropdown{
  position:absolute;
  top:100%;
  right:0;
  min-width:260px;
  padding:14px;
  border-radius:20px;
  background:rgba(8,8,8,.96);
  border:1px solid rgba(243,191,43,.22);
  box-shadow:
    0 0 28px rgba(243,191,43,.12),
    0 28px 80px rgba(0,0,0,.65);
  display:none;
  z-index:1001;
}

.nav-more:hover .nav-dropdown,
.nav-dropdown:hover{
  display:grid;
  gap:6px;
}

.nav-dropdown a{
  display:block;
  padding:13px 14px;
  border-radius:14px;
  color:#d7d7d7;
  transition:.2s ease;
  white-space:nowrap;
}

.nav-dropdown a:hover{
  color:var(--gold);
  background:rgba(243,191,43,.08);
}

@media(max-width:980px){
  .nav-more{
    display:none;
  }
}

/* TOUCH / IPAD DROPDOWN FIX */
.nav-more-button{
  appearance:none;
  -webkit-appearance:none;

  background:none;
  background-color:transparent;

  border:none;
  outline:none;

  padding:0;
  margin:0;

  color:#d7d7d7;
  font-weight:800;
  font-size:inherit;
  font-family:inherit;

  cursor:pointer;

  display:flex;
  align-items:center;
  gap:6px;
}

.nav-more-button:focus,
.nav-more-button:active{
  background:transparent;
  outline:none;
  box-shadow:none;
}

.nav-more-button:hover{
  color:var(--gold);
}

.nav-more.open .nav-dropdown{
  display:grid;
  gap:6px;
}

/* =========================================================
   WALLET PAGE STYLES
   ========================================================= */

body.wallet-page{
  --green:#14f195;
  --purple:#9945ff;
  --bg:#060606;
  background:
    radial-gradient(circle at top right, rgba(243,191,43,.08), transparent 28%),
    #060606;
}

body.wallet-page main{
max-width:1050px;
  margin:auto;
  padding:115px 24px 70px;
}

body.wallet-page .hero{
text-align:center;
  margin-bottom:70px;
}

body.wallet-page .hero h1{
font-size:clamp(44px,7vw,82px);
  line-height:1;
  color:var(--gold);
  margin-bottom:24px;
}

body.wallet-page .hero p{
max-width:760px;
  margin:auto;
  color:var(--muted);
  font-size:20px;
  line-height:1.9;
}

body.wallet-page .badge{
display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(20,241,149,.08);
  border:1px solid rgba(20,241,149,.24);
  color:var(--green);
  font-weight:900;
  letter-spacing:.08em;
  margin-bottom:24px;
}

body.wallet-page .pulse{
width:11px;
  height:11px;
  border-radius:50%;
  background:var(--green);
  animation:pulse 1.6s infinite;
}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(20,241,149,.7)}
  70%{box-shadow:0 0 0 14px rgba(20,241,149,0)}
  100%{box-shadow:0 0 0 0 rgba(20,241,149,0)}
}

body.wallet-page .section{
margin-bottom:36px;
  background:linear-gradient(145deg, rgba(18,18,18,.96), rgba(8,8,8,.98));
  border:1px solid var(--border);
  border-radius:32px;
  padding:40px;
}

body.wallet-page .section h2{
color:var(--gold);
  font-size:34px;
  margin-bottom:16px;
}

body.wallet-page .section p{
color:var(--muted);
  line-height:1.95;
  font-size:18px;
}

body.wallet-page .chain-box{
margin-top:30px;
  height:140px;
  position:relative;
  overflow:hidden;
  border-radius:24px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}

body.wallet-page .chain-line{
position:absolute;
  top:50%;
  left:0;
  right:0;
  height:4px;
  transform:translateY(-50%);
  background:linear-gradient(90deg, transparent, var(--purple), var(--green), transparent);
}

body.wallet-page .chain-dot{
position:absolute;
  top:50%;
  width:18px;
  height:18px;
  border-radius:50%;
  transform:translateY(-50%);
  background:var(--green);
  box-shadow:0 0 18px var(--green);
  animation:move 4s linear infinite;
}

body.wallet-page .chain-dot.two{
background:var(--purple);
  box-shadow:0 0 18px var(--purple);
  animation-delay:1.4s;
}

body.wallet-page .chain-dot.three{
animation-delay:2.8s;
}

@keyframes move{
  0%{left:-5%;}
  100%{left:105%;}
}

body.wallet-page .live-grid{
margin-top:26px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

body.wallet-page .live-card{
background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:24px;
}

body.wallet-page .live-card strong{
display:block;
  color:var(--gold);
  font-size:30px;
  margin-bottom:10px;
}

body.wallet-page .live-card span{
color:var(--muted);
}

body.wallet-page .holder-list{
margin-top:26px;
  display:grid;
  gap:12px;
}

body.wallet-page .holder-row{
display:grid;
  grid-template-columns:60px 1fr 120px;
  gap:12px;
  align-items:center;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}

body.wallet-page .holder-rank{
color:var(--gold);font-weight:900
}

body.wallet-page .holder-address{
color:#d2d2d2;font-size:13px
}

body.wallet-page .holder-amount{
text-align:right;font-weight:900
}

body.wallet-page .buttons{
display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:26px;
}

body.wallet-page .btn{
display:inline-block;
  padding:13px 18px;
  border-radius:14px;
  background:linear-gradient(135deg,#ffdd75,#f3bf2b);
  color:#111;
  font-weight:900;
  text-decoration:none;
}

body.wallet-page .note{
margin-top:16px;color:#8e8e8e;font-size:14px;line-height:1.7
}

@media(max-width:900px){
body.wallet-page main{
padding:100px 18px 60px
}

body.wallet-page .section{
padding:28px 20px
}

body.wallet-page .live-grid{
grid-template-columns:1fr
}

body.wallet-page .holder-row{
grid-template-columns:1fr
}

body.wallet-page .holder-amount{
text-align:left
}

body.wallet-page .hero p{
font-size:18px
}

}

body.wallet-page .blockchain-deep{
padding:56px;
}

body.wallet-page .blockchain-layout{
display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:center;
}

body.wallet-page .blockchain-text h2{
font-size:46px;
  line-height:1.1;
}

body.wallet-page .blockchain-text p{
margin-bottom:18px;
}

body.wallet-page .blockchain-points{
display:grid;
  gap:14px;
  margin-top:26px;
}

body.wallet-page .blockchain-point{
padding:18px 20px;
  border-radius:18px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.08);
  color:#d7d7d7;
  line-height:1.75;
}

body.wallet-page .blockchain-point strong{
color:var(--gold);
}

body.wallet-page .blockchain-visual{
position:relative;
  min-height:360px;
  border-radius:30px;
  background:
    radial-gradient(circle at center, rgba(243,191,43,.13), transparent 58%),
    rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
}

body.wallet-page .block{
position:absolute;
  width:88px;
  height:88px;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(145deg, rgba(243,191,43,.22), rgba(153,69,255,.12));
  border:1px solid rgba(243,191,43,.30);
  color:var(--gold);
  font-weight:900;
  box-shadow:
    0 0 28px rgba(243,191,43,.16),
    0 18px 50px rgba(0,0,0,.45);
}

body.wallet-page .block.one{
left:40px;top:130px
}

body.wallet-page .block.two{
left:160px;top:80px
}

body.wallet-page .block.three{
left:280px;top:130px
}

body.wallet-page .block.four{
left:400px;top:80px
}

body.wallet-page .blockchain-connector{
position:absolute;
  height:4px;
  background:linear-gradient(90deg, var(--gold), var(--green));
  top:174px;
  left:115px;
  width:360px;
  opacity:.75;
  box-shadow:0 0 18px rgba(20,241,149,.28);
}

body.wallet-page .data-pulse{
position:absolute;
  top:166px;
  left:90px;
  width:20px;
  height:20px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 18px var(--green);
  animation:dataMove 3.6s linear infinite;
}

@keyframes dataMove{
  0%{left:90px;opacity:0}
  10%{opacity:1}
  90%{opacity:1}
  100%{left:465px;opacity:0}
}

@media(max-width:900px){
body.wallet-page .blockchain-deep{
padding:30px 22px;
}

body.wallet-page .blockchain-layout{
grid-template-columns:1fr;
}

body.wallet-page .blockchain-text h2{
font-size:36px;
}

body.wallet-page .blockchain-visual{
min-height:300px;
}

body.wallet-page .block{
width:68px;
    height:68px;
    border-radius:20px;
}

body.wallet-page .block.one{
left:20px;top:120px
}

body.wallet-page .block.two{
left:98px;top:80px
}

body.wallet-page .block.three{
left:176px;top:120px
}

body.wallet-page .block.four{
left:254px;top:80px
}

body.wallet-page .blockchain-connector{
left:70px;
    top:153px;
    width:230px;
}

body.wallet-page .data-pulse{
top:145px;
    animation:dataMoveMobile 3.6s linear infinite;
}

@keyframes dataMoveMobile{
    0%{left:52px;opacity:0}
    10%{opacity:1}
    90%{opacity:1}
    100%{left:286px;opacity:0}
  }

}

body.wallet-page .bison-section{
margin-bottom:36px;
  padding:46px 32px;
  border-radius:32px;
  background:
    radial-gradient(circle at top left, rgba(243,191,43,.08), transparent 30%),
    linear-gradient(145deg, rgba(18,18,18,.96), rgba(5,5,5,.99));
  border:1px solid rgba(243,191,43,.22);
  box-shadow:
    0 0 45px rgba(243,191,43,.08),
    0 40px 120px rgba(0,0,0,.55);
}

body.wallet-page .bison-head{
margin-bottom:34px;
}

body.wallet-page .bison-head h2{
color:#fff;
  font-size:clamp(34px,5vw,52px);
  line-height:1.1;
  margin-bottom:18px;
}

body.wallet-page .bison-head h2 span{
color:var(--gold);
}

body.wallet-page .bison-head p{
max-width:760px;
  color:#d7d7d7;
  line-height:1.85;
  font-size:19px;
}

body.wallet-page .bison-head strong{
color:var(--gold);
}

body.wallet-page .bison-grid{
display:grid;
  grid-template-columns:1.1fr .9fr .95fr;
  gap:24px;
  align-items:stretch;
}

body.wallet-page .bison-card{
background:
    linear-gradient(145deg, rgba(14,14,14,.96), rgba(6,6,6,.98));
  border:1px solid rgba(243,191,43,.28);
  border-radius:28px;
  padding:30px;
  box-shadow:
    inset 0 0 30px rgba(255,255,255,.015),
    0 24px 90px rgba(0,0,0,.45);
}

body.wallet-page .bison-card.featured{
border-color:rgba(243,191,43,.75);
  box-shadow:
    0 0 28px rgba(243,191,43,.16),
    0 28px 90px rgba(0,0,0,.55);
}

body.wallet-page .bison-logo-row{
text-align:center;
  margin-bottom:24px;
}

body.wallet-page .bison-logo{
width:132px;
  height:132px;
  object-fit:contain;
  margin:0 auto 18px;
  display:block;
  filter:
    drop-shadow(0 0 14px rgba(100,210,225,.22))
    drop-shadow(0 18px 40px rgba(0,0,0,.55));
}

body.wallet-page .bison-word{
font-size:44px;
  font-weight:900;
  letter-spacing:.12em;
  color:#fff;
  line-height:1;
}

body.wallet-page .bison-subtitle{
color:var(--gold);
  font-weight:900;
  margin-top:10px;
  font-size:18px;
}

body.wallet-page .bison-divider{
height:1px;
  background:linear-gradient(90deg, transparent, rgba(243,191,43,.75), transparent);
  margin:24px 0;
}

body.wallet-page .bison-card p{
color:#dddddd;
  line-height:1.85;
  font-size:17px;
}

body.wallet-page .bison-main-btn{
margin-top:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  width:100%;
  padding:16px 22px;
  border-radius:16px;
  background:linear-gradient(135deg,#ffdd75,#f3bf2b);
  color:#111;
  font-size:22px;
  font-weight:900;
  text-decoration:none;
  box-shadow:
    0 0 24px rgba(243,191,43,.28),
    0 14px 35px rgba(0,0,0,.4);
  transition:.22s ease;
}

body.wallet-page .bison-main-btn:hover{
transform:translateY(-3px);
}

body.wallet-page .referral-box{
margin-top:22px;
  padding:20px;
  border-radius:18px;
  background:rgba(0,0,0,.25);
  border:1px dashed rgba(243,191,43,.35);
  text-align:center;
}

body.wallet-page .referral-box small{
display:block;
  color:#e1e1e1;
  margin-bottom:8px;
}

body.wallet-page .referral-code{
display:block;
  color:var(--gold);
  font-size:34px;
  font-weight:900;
  letter-spacing:.04em;
  margin-bottom:14px;
}

body.wallet-page .referral-link{
color:var(--gold);
  word-break:break-all;
  font-size:15px;
  line-height:1.6;
}

body.wallet-page .bison-icon-large{
width:74px;
  height:74px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  font-size:48px;
  margin-bottom:22px;
}

body.wallet-page .bison-card h3{
color:#fff;
  font-size:30px;
  line-height:1.25;
  margin-bottom:24px;
}

body.wallet-page .bison-card h4{
color:var(--gold);
  font-size:19px;
  margin-top:22px;
  margin-bottom:12px;
}

body.wallet-page .bonus-pill{
margin-top:24px;
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px;
  border-radius:18px;
  background:rgba(243,191,43,.06);
  border:1px solid rgba(243,191,43,.22);
}

body.wallet-page .bonus-pill strong{
display:block;
  color:#fff;
  font-size:18px;
}

body.wallet-page .bonus-pill span{
color:#d0d0d0;
  font-size:14px;
}

body.wallet-page .bison-steps{
display:grid;
  gap:22px;
  margin-top:8px;
}

body.wallet-page .bison-step{
display:grid;
  grid-template-columns:38px 1fr;
  gap:16px;
  align-items:start;
}

body.wallet-page .bison-step-number{
width:34px;
  height:34px;
  border-radius:50%;
  border:2px solid var(--gold);
  color:var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

body.wallet-page .bison-step strong{
display:block;
  color:#fff;
  font-size:18px;
  margin-bottom:8px;
}

body.wallet-page .bison-step span{
color:#d0d0d0;
  line-height:1.6;
}

body.wallet-page .bison-trust{
margin-top:28px;
  padding:24px 28px;
  border-radius:24px;
  display:flex;
  gap:22px;
  align-items:center;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(243,191,43,.20);
}

body.wallet-page .bison-trust-icon{
width:58px;
  height:58px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  font-size:38px;
  flex-shrink:0;
}

body.wallet-page .bison-trust p{
color:#e7e7e7;
  line-height:1.7;
  font-size:18px;
}

body.wallet-page .bison-disclaimer{
margin-top:22px;
  padding:22px 26px;
  border-radius:22px;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.08);
  color:#9f9f9f;
  line-height:1.75;
  font-size:15px;
}

body.wallet-page .bison-nav-buttons{
margin-top:34px;
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

body.wallet-page .bison-back,
body.wallet-page .bison-next{
display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:15px 26px;
  border-radius:16px;
  font-weight:900;
  text-decoration:none;
}

body.wallet-page .bison-back{
color:#fff;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
}

body.wallet-page .bison-next{
color:#111;
  background:linear-gradient(135deg,#ffdd75,#f3bf2b);
}

@media(max-width:980px){
body.wallet-page .bison-section{
padding:34px 20px;
}

body.wallet-page .bison-grid{
grid-template-columns:1fr;
}

body.wallet-page .bison-word{
font-size:36px;
}

body.wallet-page .bison-trust{
align-items:flex-start;
}

body.wallet-page .bison-nav-buttons{
flex-direction:column;
}

body.wallet-page .bison-back,
body.wallet-page .bison-next{
width:100%;
}

}

body.wallet-page .phantom-section{
margin-bottom:36px;
  background:linear-gradient(145deg, rgba(18,18,18,.96), rgba(8,8,8,.98));
  border:1px solid rgba(243,191,43,.18);
  border-radius:32px;
  padding:40px;
  box-shadow:
    0 0 40px rgba(243,191,43,.06),
    0 40px 100px rgba(0,0,0,.45);
}

body.wallet-page .phantom-section h2{
color:var(--gold);
  font-size:34px;
  margin-bottom:16px;
}

body.wallet-page .phantom-section > p{
color:var(--muted);
  line-height:1.95;
  font-size:18px;
  margin-bottom:30px;
}

body.wallet-page .phantom-steps-grid{
display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

body.wallet-page .phantom-step-card{
background:rgba(8,8,8,.82);
  border:1px solid rgba(243,191,43,.18);
  border-radius:28px;
  padding:34px 28px;
  transition:.28s ease;
}

body.wallet-page .phantom-step-card:hover{
transform:translateY(-8px);
  border-color:rgba(243,191,43,.55);
  box-shadow:
    0 0 28px rgba(243,191,43,.28),
    0 0 90px rgba(243,191,43,.18),
    0 30px 90px rgba(0,0,0,.6);
}

body.wallet-page .phantom-step-number{
width:54px;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:rgba(243,191,43,.12);
  border:1px solid rgba(243,191,43,.3);
  color:#ffdd75;
  font-weight:900;
  font-size:20px;
  margin-bottom:22px;
}

body.wallet-page .phantom-title-row{
display:flex;
  align-items:center;
  gap:16px;
  margin:18px 0 16px;
}

body.wallet-page .phantom-title-row h3{
color:var(--gold);
  font-size:24px;
  margin:0;
}

body.wallet-page .phantom-app-icon{
width:52px;
  height:52px;
  min-width:52px;
  border-radius:16px;
  box-shadow:
    0 0 28px rgba(150,80,255,.35),
    0 18px 50px rgba(0,0,0,.45);
}

body.wallet-page .phantom-step-icon{
width:52px;
  height:52px;
  min-width:52px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-size:26px;
  box-shadow:0 10px 28px rgba(0,0,0,.35);
}

body.wallet-page .phantom-step-card p{
color:var(--muted);
  line-height:1.85;
  font-size:16px;
}

body.wallet-page .phantom-mini-box{
margin-top:22px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(243,191,43,.08);
  border:1px solid rgba(243,191,43,.18);
  color:#d8d8d8;
  line-height:1.7;
  font-size:14px;
}

body.wallet-page .phantom-warning{
background:rgba(255,90,90,.10);
  border-color:rgba(255,90,90,.28);
}

body.wallet-page .phantom-store-badges{
display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:22px;
  align-items:center;
}

body.wallet-page .phantom-store-badge{
display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:54px;
  padding:10px 16px;
  border-radius:14px;
  background:#0b0b0b;
  border:1px solid rgba(255,255,255,.16);
  color:#ffffff;
  box-shadow:0 10px 28px rgba(0,0,0,.35);
  transition:.22s;
  text-decoration:none;
}

body.wallet-page .phantom-store-badge:hover{
transform:translateY(-3px);
  border-color:rgba(243,191,43,.45);
  box-shadow:
    0 0 20px rgba(243,191,43,.18),
    0 14px 36px rgba(0,0,0,.45);
}

body.wallet-page .phantom-store-icon{
font-size:28px;
  line-height:1;
}

body.wallet-page .phantom-store-text{
display:flex;
  flex-direction:column;
  line-height:1.1;
}

body.wallet-page .phantom-store-text small{
font-size:11px;
  color:#cccccc;
}

body.wallet-page .phantom-store-text strong{
font-size:17px;
  color:#ffffff;
}

body.wallet-page .phantom-flow-box{
margin-top:34px;
  padding:28px;
  border-radius:26px;
  background:rgba(243,191,43,.08);
  border:1px solid rgba(243,191,43,.25);
  color:#dddddd;
  line-height:1.85;
}

body.wallet-page .phantom-flow-box strong{
color:var(--gold);
}

@media(max-width:980px){
body.wallet-page .phantom-section{
padding:28px 20px;
}

body.wallet-page .phantom-steps-grid{
grid-template-columns:1fr;
}

body.wallet-page .phantom-title-row{
justify-content:center;
    text-align:left;
}

body.wallet-page .phantom-store-badges{
justify-content:center;
}

}

body.wallet-page .glossary-section{
margin-bottom:36px;
  background:linear-gradient(145deg, rgba(18,18,18,.96), rgba(8,8,8,.98));
  border:1px solid rgba(243,191,43,.18);
  border-radius:32px;
  padding:40px;
  box-shadow:
    0 0 40px rgba(243,191,43,.06),
    0 40px 100px rgba(0,0,0,.45);
}

body.wallet-page .glossary-section h2{
color:var(--gold);
  font-size:34px;
  margin-bottom:16px;
}

body.wallet-page .glossary-intro{
color:var(--muted);
  line-height:1.95;
  font-size:18px;
  margin-bottom:30px;
}

body.wallet-page .glossary-grid{
display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

body.wallet-page .glossary-card{
background:rgba(8,8,8,.82);
  border:1px solid rgba(243,191,43,.18);
  border-radius:26px;
  padding:28px;
  transition:.28s ease;
}

body.wallet-page .glossary-card:hover{
transform:translateY(-6px);
  border-color:rgba(243,191,43,.48);
  box-shadow:
    0 0 24px rgba(243,191,43,.20),
    0 0 70px rgba(243,191,43,.12),
    0 24px 70px rgba(0,0,0,.55);
}

body.wallet-page .glossary-top{
display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:14px;
}

body.wallet-page .glossary-icon{
width:50px;
  height:50px;
  min-width:50px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(243,191,43,.10);
  border:1px solid rgba(243,191,43,.25);
  font-size:26px;
}

body.wallet-page .glossary-card h3{
color:var(--gold);
  font-size:23px;
  margin:0;
}

body.wallet-page .glossary-card p{
color:var(--muted);
  line-height:1.8;
  font-size:16px;
}

body.wallet-page .glossary-highlight{
margin-top:26px;
  padding:24px 26px;
  border-radius:24px;
  background:rgba(243,191,43,.08);
  border:1px solid rgba(243,191,43,.25);
  color:#dddddd;
  line-height:1.85;
}

body.wallet-page .glossary-highlight strong{
color:var(--gold);
}

@media(max-width:900px){
body.wallet-page .glossary-section{
padding:28px 20px;
}

body.wallet-page .glossary-grid{
grid-template-columns:1fr;
}

}

body.wallet-page .hero{
text-align:center;
  margin-bottom:46px;
  padding-top:0;
  min-height:auto;
  display:block;
}

body.wallet-page .token-check-section{
margin-bottom:36px;
  background:linear-gradient(145deg, rgba(18,18,18,.96), rgba(8,8,8,.98));
  border:1px solid rgba(243,191,43,.18);
  border-radius:32px;
  padding:40px;
  box-shadow:
    0 0 40px rgba(243,191,43,.06),
    0 40px 100px rgba(0,0,0,.45);
}

body.wallet-page .token-check-section h2{
color:var(--gold);
  font-size:34px;
  margin-bottom:16px;
}

body.wallet-page .token-check-section p{
color:var(--muted);
  line-height:1.95;
  font-size:18px;
  margin-bottom:22px;
}

body.wallet-page .token-address-box{
margin-top:26px;
  padding:26px;
  border-radius:24px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}

body.wallet-page .token-address-label{
color:var(--gold);
  font-weight:900;
  margin-bottom:12px;
}

body.wallet-page .token-address{
color:#dddddd;
  word-break:break-all;
  line-height:1.8;
  font-size:17px;
}

body.wallet-page .copy-btn{
margin-top:18px;
  border:none;
  cursor:pointer;
}

body.wallet-page .cta-section{
margin-bottom:36px;
  padding:42px;
  text-align:center;
  border-radius:32px;
  background:rgba(243,191,43,.08);
  border:1px solid rgba(243,191,43,.25);
}

body.wallet-page .cta-section h2{
color:var(--gold);
  font-size:38px;
  margin-bottom:16px;
}

body.wallet-page .cta-section p{
color:#dddddd;
  max-width:760px;
  margin:0 auto 24px;
  line-height:1.85;
  font-size:18px;
}

@media(max-width:980px){

}

@media(max-width:900px){
body.wallet-page .token-check-section,
body.wallet-page .cta-section{
padding:28px 20px;
}

}

/* =========================================================
   TOKENOMICS PAGE STYLES
   ========================================================= */

body.tokenomics-page{
  background:
    radial-gradient(circle at top right, rgba(243,191,43,.12), transparent 25%),
    radial-gradient(circle at bottom left, rgba(243,191,43,.08), transparent 25%),
    #050505;
}

body.tokenomics-page section{
max-width:1250px;
  margin:auto;
  padding:120px 24px;
}

body.tokenomics-page .section-title{
text-align:center;margin-bottom:70px
}

body.tokenomics-page .section-title h2{
font-size:48px;margin-bottom:18px;color:var(--gold)
}

body.tokenomics-page .section-title p{
color:var(--muted);max-width:760px;margin:auto;line-height:1.8
}


body.tokenomics-page .hero::before{
content:"";
  position:absolute;
  right:-120px;
  top:50%;
  transform:translateY(-50%);
  width:700px;
  height:700px;
  background:radial-gradient(circle, rgba(243,191,43,.18), transparent 65%);
  z-index:-1;
}

body.tokenomics-page .hero-badge,
body.tokenomics-page .claim-badge{
display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(243,191,43,.12);
  border:1px solid rgba(243,191,43,.3);
  color:var(--gold-light);
  margin-bottom:24px;
  font-size:14px;
  letter-spacing:.7px;
}

body.tokenomics-page .hero h1{
font-size:clamp(60px,8vw,110px);
  line-height:.92;
  margin-bottom:26px;
  font-weight:900;
}

body.tokenomics-page .hero h1 span{
color:var(--gold)
}

body.tokenomics-page .hero p{
font-size:22px;
  line-height:1.8;
  color:var(--muted);
  max-width:620px;
  margin-bottom:36px;
}

body.tokenomics-page .hero-buttons{
display:flex;gap:18px;flex-wrap:wrap
}

body.tokenomics-page .btn,
body.tokenomics-page .claim-button{
display:inline-block;
  padding:15px 30px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:#111;
  font-weight:800;
}

body.tokenomics-page .btn-outline{
padding:15px 30px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.04);
  color:#fff;
}

body.tokenomics-page .coin{
width:100%;
  max-width:620px;
  display:block;
  margin:auto;
  filter:
    drop-shadow(0 0 35px rgba(243,191,43,.45))
    drop-shadow(0 0 80px rgba(243,191,43,.18))
    drop-shadow(0 40px 100px rgba(0,0,0,.85));
  animation:float 5s ease-in-out infinite;
}

@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-18px)}
}

body.tokenomics-page .cards,
body.tokenomics-page .tokenomics{
display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

body.tokenomics-page .card,
body.tokenomics-page .token-box,
body.tokenomics-page .faq-item{
background:rgba(8,8,8,.82);
  border:1px solid var(--border);
  border-radius:26px;
  padding:36px 28px;
}

body.tokenomics-page .card{
text-align:center
}

body.tokenomics-page .card-icon{
font-size:34px;
  margin-bottom:18px;
}

body.tokenomics-page .card h3,
body.tokenomics-page .faq-item h3{
color:var(--gold);
  margin-bottom:14px;
  font-size:24px;
}

body.tokenomics-page .card p,
body.tokenomics-page .faq-item p{
color:var(--muted);
  line-height:1.8;
}

body.tokenomics-page .story-hero{
max-width:1400px;
  padding-top:140px;
}

body.tokenomics-page .story-intro{
text-align:center;
  max-width:980px;
  margin:0 auto 70px;
}

body.tokenomics-page .story-intro h2{
font-size:clamp(46px,7vw,86px);
  line-height:1;
  color:var(--gold);
  margin-bottom:28px;
}

body.tokenomics-page .story-intro p{
color:var(--muted);
  font-size:22px;
  line-height:1.9;
}

body.tokenomics-page .story-layout{
display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:70px;
  align-items:start;
}

body.tokenomics-page .poster-wrap{
position:-webkit-sticky;
  position:sticky;
  top:105px;
  align-self:start;
  height:calc(100vh - 130px);
  min-height:560px;
}

body.tokenomics-page .poster{
width:100%;
  height:100%;
  min-height:560px;
  object-fit:cover;
  border-radius:34px;
  border:1px solid var(--border);
  box-shadow:
    0 50px 120px rgba(0,0,0,.75),
    0 0 60px rgba(243,191,43,.12);
}

body.tokenomics-page .story-manifest{
display:grid;
  gap:26px;
}

body.tokenomics-page .story-chapter{
background:linear-gradient(145deg, rgba(18,18,18,.92), rgba(8,8,8,.98));
  border:1px solid rgba(243,191,43,.18);
  border-radius:30px;
  padding:38px;
}

body.tokenomics-page .story-chapter span{
display:block;
  color:var(--gold-light);
  font-size:13px;
  letter-spacing:2px;
  margin-bottom:14px;
}

body.tokenomics-page .story-chapter h3{
color:var(--gold);
  font-size:32px;
  margin-bottom:18px;
}

body.tokenomics-page .story-chapter p{
color:var(--muted);
  font-size:18px;
  line-height:1.9;
  margin-bottom:16px;
}

body.tokenomics-page .story-chapter:nth-child(even){
margin-left:40px;
}

body.tokenomics-page .story-chapter{
transition:.25s;
}

body.tokenomics-page .story-chapter:hover{
transform:translateY(-6px);
  border-color:rgba(243,191,43,.35);
  box-shadow:0 0 35px rgba(243,191,43,.08);
}

body.tokenomics-page .story-quote{
margin:70px auto 0;
  max-width:1050px;
  text-align:center;
  padding:55px 38px;
  border-radius:34px;
  background:rgba(243,191,43,.08);
  border:1px solid rgba(243,191,43,.3);
}

body.tokenomics-page .story-quote strong{
display:block;
  font-size:clamp(32px,5vw,58px);
  line-height:1.18;
  color:var(--gold);
  margin-bottom:18px;
}

body.tokenomics-page .story-quote p{
color:#dddddd;
  font-size:20px;
  line-height:1.8;
}

body.tokenomics-page .vision-grid,
body.tokenomics-page .steps-grid{
display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

body.tokenomics-page .vision-card,
body.tokenomics-page .step-card{
background:rgba(8,8,8,.82);
  border:1px solid var(--border);
  border-radius:28px;
  padding:36px;
}

body.tokenomics-page .vision-card h3,
body.tokenomics-page .step-card h3{
color:var(--gold);
  font-size:26px;
  margin-bottom:16px;
}

body.tokenomics-page .vision-card p,
body.tokenomics-page .step-card p{
color:var(--muted);
  line-height:1.85;
}

body.tokenomics-page .step-number{
width:54px;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:rgba(243,191,43,.12);
  border:1px solid rgba(243,191,43,.3);
  color:var(--gold-light);
  font-weight:900;
  font-size:20px;
  margin-bottom:22px;
}

body.tokenomics-page .token-box{
text-align:center
}

body.tokenomics-page .token-box strong{
display:block;font-size:34px;color:var(--gold);margin-bottom:12px
}

body.tokenomics-page .token-box span{
color:var(--muted);line-height:1.6;display:block
}

body.tokenomics-page .status-box{
margin:46px auto 0;
  max-width:1050px;
  background:
    linear-gradient(145deg, rgba(18,18,18,.95), rgba(8,8,8,.98));
  border:1px solid rgba(243,191,43,.25);
  border-radius:32px;
  padding:42px;
  box-shadow:
    0 0 45px rgba(243,191,43,.08),
    0 40px 100px rgba(0,0,0,.45);
}

body.tokenomics-page .status-box h3{
color:var(--gold);
  font-size:34px;
  margin-bottom:12px;
  text-align:center;
}

body.tokenomics-page .status-box > p{
color:var(--muted);
  text-align:center;
  line-height:1.8;
  margin-bottom:34px;
}

body.tokenomics-page .status-grid{
display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

body.tokenomics-page .status-item{
background:
    linear-gradient(145deg, rgba(18,18,18,.95), rgba(8,8,8,.98));
  border:1px solid rgba(243,191,43,.18);
  border-radius:24px;
  padding:28px;
  text-align:left;
  transition:.25s;
  box-shadow:0 0 20px rgba(243,191,43,.04);
}

body.tokenomics-page .status-item:hover{
transform:translateY(-6px);
  border-color:rgba(243,191,43,.4);
  box-shadow:0 0 35px rgba(243,191,43,.12);
}

body.tokenomics-page .status-label{
display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(243,191,43,.12);
  border:1px solid rgba(243,191,43,.25);
  color:var(--gold-light);
  font-size:12px;
  letter-spacing:1px;
  margin-bottom:18px;
}

body.tokenomics-page .status-label.live{
color:#8cffb0;
  border-color:rgba(140,255,176,.35);
  background:rgba(140,255,176,.08);
}

body.tokenomics-page .status-item h4{
font-size:26px;
  color:var(--gold);
  margin-bottom:14px;
}

body.tokenomics-page .status-item p{
color:var(--muted);
  line-height:1.8;
  font-size:16px;
}

body.tokenomics-page .token-address-box,
body.tokenomics-page .claim-box{
margin:50px auto 0;
  background:linear-gradient(145deg, rgba(18,18,18,.95), rgba(8,8,8,.98));
  border:1px solid rgba(243,191,43,.22);
  border-radius:32px;
  padding:42px;
  max-width:950px;
  box-shadow:0 0 40px rgba(243,191,43,.06),0 40px 100px rgba(0,0,0,.55);
}

body.tokenomics-page .token-top{
display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:34px;
}

body.tokenomics-page .solana-icon{
width:72px;
  height:72px;
  border-radius:22px;
  background:rgba(255,255,255,.04);
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.08);
}

body.tokenomics-page .solana-icon img{
width:42px
}

body.tokenomics-page .network-label{
color:#8f8f8f;
  font-size:13px;
  letter-spacing:2px;
  margin-bottom:8px;
}

body.tokenomics-page .token-title{
font-size:28px;font-weight:800;color:#fff
}

body.tokenomics-page .address-label{
color:var(--gold);margin-bottom:14px;font-size:15px;letter-spacing:1px
}

body.tokenomics-page .token-address,
body.tokenomics-page .wallet-example{
background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:22px;
  font-size:18px;
  line-height:1.8;
  word-break:break-all;
  color:#dddddd;
}

body.tokenomics-page .explorer-links{
display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:22px;
}

body.tokenomics-page .explorer-btn{
padding:12px 18px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#dddddd;
  transition:.2s;
}

body.tokenomics-page .explorer-btn:hover{
border-color:rgba(243,191,43,.4);
  color:var(--gold);
  background:rgba(243,191,43,.08);
}

body.tokenomics-page .copy-btn{
margin-top:24px;
  padding:14px 22px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:#111;
  font-weight:800;
  cursor:pointer;
  transition:.2s;
}

body.tokenomics-page .copy-btn:hover{
opacity:.92
}

body.tokenomics-page .claim-box{
text-align:center
}

body.tokenomics-page .claim-box h3{
font-size:42px;margin-bottom:24px;color:var(--gold)
}

body.tokenomics-page .claim-box p{
color:var(--muted);line-height:1.9;font-size:19px;margin-bottom:24px
}

body.tokenomics-page .wallet-example{
margin:34px 0
}

body.tokenomics-page .claim-note{
margin-top:30px;color:#8d8d8d;font-size:14px;line-height:1.8
}

body.tokenomics-page .faq{
display:grid;gap:20px
}

body.tokenomics-page .disclaimer{
background:rgba(243,191,43,.08);
  border:1px solid rgba(243,191,43,.3);
  border-radius:28px;
  padding:40px;
}

body.tokenomics-page .disclaimer h3{
color:var(--gold);margin-bottom:18px;font-size:30px
}

body.tokenomics-page .disclaimer p{
color:#dddddd;line-height:1.9
}


/* UNIFIED GLOBAL HOVER EFFECT */

.card,
body.tokenomics-page .token-box,
body.tokenomics-page .status-item,
body.tokenomics-page .vision-card,
body.tokenomics-page .step-card,
body.tokenomics-page .faq-item,
body.tokenomics-page .story-chapter,
body.tokenomics-page .token-address-box,
body.tokenomics-page .claim-box{
transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease !important;
}

body.tokenomics-page .card:hover,
body.tokenomics-page .token-box:hover,
body.tokenomics-page .status-item:hover,
body.tokenomics-page .vision-card:hover,
body.tokenomics-page .step-card:hover,
body.tokenomics-page .faq-item:hover,
body.tokenomics-page .story-chapter:hover,
body.tokenomics-page .token-address-box:hover,
body.tokenomics-page .claim-box:hover{
transform:translateY(-8px) !important;
  border-color:rgba(243,191,43,.55) !important;
  box-shadow:
    0 0 28px rgba(243,191,43,.28),
    0 0 90px rgba(243,191,43,.18),
    0 30px 90px rgba(0,0,0,.6) !important;
}

@media(max-width:980px){
body.tokenomics-page section{
padding:90px 20px
}

body.tokenomics-page .hero{
grid-template-columns:1fr;
    text-align:center;
    min-height:auto;
    padding-top:105px;
    padding-bottom:50px;
    gap:25px;
}

body.tokenomics-page .hero > div:first-child{
order:2
}

body.tokenomics-page .hero > div:last-child{
order:1
}

body.tokenomics-page .coin{
max-width:240px;margin-bottom:10px
}

body.tokenomics-page .story-layout{
grid-template-columns:1fr;text-align:center
}

body.tokenomics-page .cards,
body.tokenomics-page .tokenomics,
body.tokenomics-page .status-grid,
body.tokenomics-page .vision-grid,
body.tokenomics-page .steps-grid{
grid-template-columns:1fr
}

body.tokenomics-page .hero-buttons{
justify-content:center
}

body.tokenomics-page .token-top{
justify-content:center;flex-direction:column;text-align:center
}

body.tokenomics-page .poster-wrap{
position:relative;top:auto
}

body.tokenomics-page .status-item{
text-align:center
}

body.tokenomics-page .hero h1{
font-size:44px;line-height:1
}

body.tokenomics-page .hero p{
font-size:18px;line-height:1.7
}

body.tokenomics-page .hero-badge{
font-size:12px;padding:8px 14px
}

body.tokenomics-page .story-chapter:nth-child(even){
margin-left:0;
}

body.tokenomics-page .poster{
height:auto;
    min-height:auto;
}

body.tokenomics-page .section-title h2{
font-size:38px
}

}

body.tokenomics-page .notice-box{
margin-top:28px;
  display:inline-block;
  padding:14px 18px;
  border-radius:18px;
  background:rgba(243,191,43,.08);
  border:1px solid rgba(243,191,43,.22);
  color:#d8d8d8;
  line-height:1.7;
  max-width:620px;
  font-size:15px;
}

body.tokenomics-page .regional-teaser{
background:linear-gradient(145deg, rgba(18,18,18,.95), rgba(8,8,8,.98));
  border:1px solid rgba(243,191,43,.22);
  border-radius:34px;
  padding:46px;
  max-width:1050px;
  margin:0 auto;
  box-shadow:0 0 45px rgba(243,191,43,.08),0 40px 100px rgba(0,0,0,.45);
  transition:.28s ease;
}

body.tokenomics-page .regional-teaser:hover{
transform:translateY(-8px);
  border-color:rgba(243,191,43,.55);
  box-shadow:0 0 28px rgba(243,191,43,.28),0 0 90px rgba(243,191,43,.18),0 30px 90px rgba(0,0,0,.6);
}

body.tokenomics-page .regional-teaser-grid{
display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  align-items:center;
}

body.tokenomics-page .regional-teaser h2{
color:var(--gold);font-size:44px;margin-bottom:18px
}

body.tokenomics-page .regional-teaser p{
color:var(--muted);line-height:1.9;font-size:18px;margin-bottom:18px
}

body.tokenomics-page .partner-mini-grid{
display:grid;grid-template-columns:repeat(2,1fr);gap:16px
}

body.tokenomics-page .partner-mini{
background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:22px;
  color:#dddddd;
  line-height:1.6;
}

body.tokenomics-page .partner-mini strong{
display:block;color:var(--gold);margin-bottom:8px;font-size:18px
}

@media(max-width:980px){
body.tokenomics-page .regional-teaser-grid,
body.tokenomics-page .partner-mini-grid{
grid-template-columns:1fr
}

body.tokenomics-page .regional-teaser{
padding:32px 24px;text-align:center
}

body.tokenomics-page .regional-teaser h2{
font-size:36px
}

}

body.tokenomics-page .vision-card-link{
display:block;
  height:100%;
}

body.tokenomics-page .vision-badge{
display:inline-block;
  margin-bottom:16px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(243,191,43,.12);
  border:1px solid rgba(243,191,43,.25);
  color:var(--gold-light);
  font-size:12px;
  letter-spacing:1px;
}

body.tokenomics-page .vision-more{
display:inline-block;
  margin-top:18px;
  color:var(--gold);
  font-weight:800;
}

body.tokenomics-page .faq{
max-width:980px;
  margin:0 auto;
  display:grid;
  gap:16px;
}

body.tokenomics-page .faq-item{
padding:0;
  overflow:hidden;
  cursor:pointer;
}

body.tokenomics-page .faq-question{
width:100%;
  padding:26px 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  background:transparent;
  border:none;
  color:#ffffff;
  text-align:left;
  font:inherit;
  cursor:pointer;
}

body.tokenomics-page .faq-question h3{
margin:0;
  color:var(--gold);
  font-size:22px;
}

body.tokenomics-page .faq-icon{
color:var(--gold);
  font-size:28px;
  flex-shrink:0;
  transition:.25s;
}

body.tokenomics-page .faq-answer{
max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

body.tokenomics-page .faq-answer-inner{
padding:0 30px 28px;
  color:var(--muted);
  line-height:1.85;
}

body.tokenomics-page .faq-item.active .faq-answer{
max-height:360px;
}

body.tokenomics-page .faq-item.active .faq-icon{
transform:rotate(45deg);
}

@media(hover:hover){
body.tokenomics-page .faq-item:hover .faq-answer{
max-height:360px;
}

body.tokenomics-page .faq-item:hover .faq-icon{
transform:rotate(45deg);
}

}

body.tokenomics-page .identity-coin-section{
max-width:1400px;
}

body.tokenomics-page .identity-coin-wrap{
display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:46px;
  align-items:center;
  background:linear-gradient(145deg, rgba(18,18,18,.95), rgba(8,8,8,.98));
  border:1px solid rgba(243,191,43,.24);
  border-radius:38px;
  padding:46px;
  box-shadow:
    0 0 45px rgba(243,191,43,.10),
    0 40px 110px rgba(0,0,0,.55);
}

body.tokenomics-page .identity-coin-wrap:hover{
transform:translateY(-8px);
  border-color:rgba(243,191,43,.55);
  box-shadow:
    0 0 28px rgba(243,191,43,.28),
    0 0 90px rgba(243,191,43,.18),
    0 30px 90px rgba(0,0,0,.6);
}

body.tokenomics-page .identity-coin-wrap{
transition:.28s ease;
}

body.tokenomics-page .identity-coin-image{
width:100%;
  border-radius:32px;
  filter:
    drop-shadow(0 0 32px rgba(243,191,43,.25))
    drop-shadow(0 35px 80px rgba(0,0,0,.70));
}

body.tokenomics-page .identity-coin-text .hero-badge{
margin-bottom:20px;
}

body.tokenomics-page .identity-coin-text h2{
color:var(--gold);
  font-size:clamp(38px,5vw,62px);
  line-height:1.05;
  margin-bottom:22px;
}

body.tokenomics-page .identity-coin-text p{
color:var(--muted);
  font-size:19px;
  line-height:1.9;
  margin-bottom:18px;
}

body.tokenomics-page .identity-coin-claim{
margin-top:28px;
  padding:22px;
  border-radius:22px;
  background:rgba(243,191,43,.08);
  border:1px solid rgba(243,191,43,.25);
  color:#dddddd;
  line-height:1.8;
}

@media(max-width:980px){
body.tokenomics-page .identity-coin-wrap{
grid-template-columns:1fr;
    padding:28px 22px;
    text-align:center;
}

body.tokenomics-page .identity-coin-text{
order:2;
}

body.tokenomics-page .identity-coin-image{
order:1;
}

}

body.tokenomics-page .wallet-app-icon{
width:78px;
  height:78px;
  border-radius:24px;
  margin-bottom:18px;
  box-shadow:
    0 0 28px rgba(150,80,255,.35),
    0 18px 50px rgba(0,0,0,.45);
}

body.tokenomics-page .footer-seo{
margin-top:26px;
  color:#7f7f7f;
  font-size:13px;
  line-height:1.8;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}

body.tokenomics-page .wallet-links{
display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

body.tokenomics-page .wallet-link{
display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  color:#dddddd;
  font-size:14px;
  font-weight:800;
  transition:.22s;
}

body.tokenomics-page .wallet-link:hover{
border-color:rgba(243,191,43,.45);
  color:var(--gold);
  background:rgba(243,191,43,.08);
}

@media(max-width:980px){
body.tokenomics-page .wallet-links{
justify-content:center;
}

}

body.tokenomics-page .store-badges{
display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:22px;
  align-items:center;
}

body.tokenomics-page .store-badges img{
height:54px;
  width:auto;
  border-radius:12px;
  transition:.22s;
  box-shadow:0 10px 28px rgba(0,0,0,.35);
}

body.tokenomics-page .store-badges img:hover{
transform:translateY(-3px);
  box-shadow:
    0 0 20px rgba(243,191,43,.18),
    0 14px 36px rgba(0,0,0,.45);
}

@media(max-width:980px){
body.tokenomics-page .store-badges{
justify-content:center;
}

}

body.tokenomics-page .store-badges{
display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:22px;
  align-items:center;
}

body.tokenomics-page .store-badge{
display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:54px;
  padding:10px 16px;
  border-radius:14px;
  background:#0b0b0b;
  border:1px solid rgba(255,255,255,.16);
  color:#ffffff;
  box-shadow:0 10px 28px rgba(0,0,0,.35);
  transition:.22s;
}

body.tokenomics-page .store-badge:hover{
transform:translateY(-3px);
  border-color:rgba(243,191,43,.45);
  box-shadow:
    0 0 20px rgba(243,191,43,.18),
    0 14px 36px rgba(0,0,0,.45);
}

body.tokenomics-page .store-icon{
font-size:28px;
  line-height:1;
}

body.tokenomics-page .store-text{
display:flex;
  flex-direction:column;
  line-height:1.1;
}

body.tokenomics-page .store-text small{
font-size:11px;
  color:#cccccc;
}

body.tokenomics-page .store-text strong{
font-size:17px;
  color:#ffffff;
}

@media(max-width:980px){
body.tokenomics-page .store-badges{
justify-content:center;
}

}

body.tokenomics-page .step-visual{
display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:22px;
}

body.tokenomics-page .step-icon{
width:54px;
  height:54px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-size:28px;
  box-shadow:0 10px 28px rgba(0,0,0,.35);
}

body.tokenomics-page .step-mini-box{
margin-top:22px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(243,191,43,.08);
  border:1px solid rgba(243,191,43,.18);
  color:#d8d8d8;
  line-height:1.7;
  font-size:14px;
}

body.tokenomics-page .step-title-row{
display:flex;
  align-items:center;
  gap:16px;
  margin:18px 0 16px;
}

body.tokenomics-page .step-title-row h3{
margin:0 !important;
}

body.tokenomics-page .step-title-row .wallet-app-icon,
body.tokenomics-page .step-title-row .step-icon{
width:52px;
  height:52px;
  min-width:52px;
  border-radius:16px;
  margin:0;
}

body.tokenomics-page .step-title-row .step-icon{
display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-size:26px;
  box-shadow:0 10px 28px rgba(0,0,0,.35);
}

@media(max-width:980px){
body.tokenomics-page .step-title-row{
justify-content:center;
    text-align:left;
}

}

body.tokenomics-page .supply-explanation{
margin-top:42px;
}

body.tokenomics-page .supply-explanation-text{
word-break:normal !important;
  overflow-wrap:normal !important;
  hyphens:none !important;
  text-align:left;
  line-height:1.9;
}


body.tokenomics-page .portal-grid{
display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

body.tokenomics-page .portal-card{
background:linear-gradient(145deg, rgba(18,18,18,.95), rgba(8,8,8,.98));
  border:1px solid rgba(243,191,43,.22);
  border-radius:28px;
  padding:34px 28px;
  transition:.28s ease;
  display:block;
  height:100%;
}

body.tokenomics-page .portal-card:hover{
transform:translateY(-8px);
  border-color:rgba(243,191,43,.55);
  box-shadow:
    0 0 28px rgba(243,191,43,.28),
    0 0 90px rgba(243,191,43,.18),
    0 30px 90px rgba(0,0,0,.6);
}

body.tokenomics-page .portal-icon{
font-size:38px;
  margin-bottom:20px;
}

body.tokenomics-page .portal-card h3{
color:var(--gold);
  font-size:25px;
  margin-bottom:14px;
}

body.tokenomics-page .portal-card p{
color:var(--muted);
  line-height:1.8;
  margin-bottom:18px;
}

body.tokenomics-page .portal-more{
color:var(--gold);
  font-weight:800;
}

@media(max-width:980px){
body.tokenomics-page .portal-grid{
grid-template-columns:1fr;
}

}


/* =========================================================
   TOKENOMICS VISUAL FIX
   Live-Banner, Supply-Block, Formel und Community-Fortschritt
   ========================================================= */

body.tokenomics-page #tokenomics{
  padding-top:170px;
}

body.tokenomics-page .live-banner{
  max-width:900px;
  margin:0 auto 40px;
  text-align:center;
  padding:18px 22px;
  border-radius:20px;
  background:rgba(0,255,120,.08);
  border:1px solid rgba(0,255,120,.25);
  color:#9cffbe;
  font-weight:900;
  letter-spacing:.04em;
  box-shadow:
    0 0 24px rgba(0,255,120,.10),
    0 24px 70px rgba(0,0,0,.35);
}

body.tokenomics-page .big-supply{
  max-width:1000px;
  margin:0 auto 60px;
  text-align:center;
  padding:50px 34px;
  border-radius:34px;
  background:linear-gradient(145deg, rgba(18,18,18,.95), rgba(8,8,8,.98));
  border:1px solid rgba(243,191,43,.32);
  box-shadow:
    0 0 28px rgba(243,191,43,.18),
    0 0 90px rgba(243,191,43,.10),
    0 40px 100px rgba(0,0,0,.55);
}

body.tokenomics-page .big-supply-number{
  font-size:clamp(58px,9vw,92px);
  font-weight:900;
  color:var(--gold);
  line-height:1;
  margin-bottom:18px;
}

body.tokenomics-page .big-supply h3{
  color:#fff;
  font-size:28px;
  margin-bottom:12px;
}

body.tokenomics-page .big-supply p{
  color:var(--muted);
  line-height:1.8;
}

body.tokenomics-page .formula-box{
  max-width:1000px;
  margin:40px auto 58px;
  padding:40px 30px;
  border-radius:30px;
  background:rgba(243,191,43,.08);
  border:1px solid rgba(243,191,43,.30);
  text-align:center;
  box-shadow:
    0 0 24px rgba(243,191,43,.10),
    0 30px 90px rgba(0,0,0,.45);
}

body.tokenomics-page .formula-box h3{
  color:#fff;
  font-size:30px;
  margin-bottom:18px;
}

body.tokenomics-page .formula-big{
  font-size:clamp(26px,4.5vw,42px);
  color:var(--gold);
  font-weight:900;
  line-height:1.25;
}

body.tokenomics-page .timeline{
  display:grid;
  gap:18px;
  max-width:1000px;
  margin:40px auto;
}

body.tokenomics-page .timeline-item{
  padding:22px 26px;
  border-radius:22px;
  background:rgba(8,8,8,.82);
  border:1px solid rgba(243,191,43,.24);
  color:#dddddd;
  line-height:1.7;
  box-shadow:0 0 22px rgba(243,191,43,.06);
}

body.tokenomics-page .progress-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:40px;
}

body.tokenomics-page .progress-card{
  padding:34px 28px;
  border-radius:26px;
  text-align:center;
  background:linear-gradient(145deg, rgba(18,18,18,.95), rgba(8,8,8,.98));
  border:1px solid rgba(243,191,43,.28);
  color:#dcdcdc;
  line-height:1.7;
  transition:.28s ease;
  box-shadow:
    0 0 24px rgba(243,191,43,.10),
    0 30px 90px rgba(0,0,0,.45);
}

body.tokenomics-page .progress-card:hover{
  transform:translateY(-8px);
  border-color:rgba(243,191,43,.55);
  box-shadow:
    0 0 28px rgba(243,191,43,.28),
    0 0 90px rgba(243,191,43,.18),
    0 30px 90px rgba(0,0,0,.6);
}

body.tokenomics-page .progress-card strong{
  display:block;
  font-size:42px;
  color:var(--gold);
  margin-bottom:8px;
}

body.tokenomics-page .progress-bar{
  height:16px;
  border-radius:999px;
  background:#222;
  overflow:hidden;
  margin-top:16px;
  border:1px solid rgba(255,255,255,.08);
}

body.tokenomics-page .progress-fill{
  height:100%;
  width:0.006%;
  background:linear-gradient(90deg,var(--gold-light),var(--gold));
  box-shadow:0 0 18px rgba(243,191,43,.35);
}

body.tokenomics-page .progress-card small{
  display:block;
  margin-top:12px;
  color:#9f9f9f;
}

@media(max-width:980px){
  body.tokenomics-page #tokenomics{
    padding-top:145px;
  }

  body.tokenomics-page .progress-grid{
    grid-template-columns:1fr;
  }

  body.tokenomics-page .big-supply{
    padding:38px 24px;
  }
}

/* =========================================================
   COMMUNITY PAGE STYLES
   ========================================================= */

body.community-page{
  --muted:#bdbdbd;
  --border:rgba(243,191,43,.22);
  background:
    radial-gradient(circle at top right, rgba(243,191,43,.10), transparent 25%),
    #050505;
}


body.community-page main{
max-width:1180px;margin:auto;padding:90px 24px
}

body.community-page .hero{
text-align:center;margin-bottom:70px
}

body.community-page .hero h1{
font-size:clamp(44px,7vw,82px);color:var(--gold);line-height:1;margin-bottom:24px
}

body.community-page .hero p{
max-width:780px;margin:auto;color:var(--muted);font-size:20px;line-height:1.9
}

body.community-page .grid{
display:grid;grid-template-columns:repeat(3,1fr);gap:24px
}

body.community-page .card{
background:rgba(8,8,8,.82);border:1px solid var(--border);border-radius:28px;padding:34px 28px;transition:.28s ease
}

body.community-page .card:hover{
transform:translateY(-8px);border-color:rgba(243,191,43,.55);box-shadow:0 0 28px rgba(243,191,43,.28),0 0 90px rgba(243,191,43,.18),0 30px 90px rgba(0,0,0,.6)
}

body.community-page .icon{
font-size:38px;margin-bottom:18px
}

body.community-page .card h3{
color:var(--gold);font-size:25px;margin-bottom:14px
}

body.community-page .card p{
color:var(--muted);line-height:1.8
}

body.community-page .notice{
margin-top:50px;padding:34px;border-radius:28px;background:rgba(243,191,43,.08);border:1px solid rgba(243,191,43,.25);text-align:center;color:#ddd;line-height:1.9
}

@media(max-width:900px){
body.community-page main{
padding:70px 18px
}

body.community-page .grid{
grid-template-columns:1fr
}

body.community-page .hero p{
font-size:18px
}

}

body.community-page .gallery-link{
display:inline-block;
  margin-top:18px;
  color:var(--gold);
  font-weight:900;
}


/* Finaler Community-Header-Schutz:
   Lokale Seitenregeln dürfen den zentral geladenen Header nicht beeinflussen. */
body.community-page #site-header .nav-more-button{
  appearance:none !important;
  -webkit-appearance:none !important;
  background:none !important;
  background-color:transparent !important;
  border:none !important;
  outline:none !important;
  box-shadow:none !important;
  padding:0 !important;
  margin:0 !important;
  color:#d7d7d7 !important;
  font-weight:800 !important;
  font-size:inherit !important;
  font-family:inherit !important;
  line-height:normal !important;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:6px;
}

body.community-page #site-header .nav-more-button:hover,
body.community-page #site-header .nav-more-button:focus,
body.community-page #site-header .nav-more-button:active{
  background:none !important;
  background-color:transparent !important;
  color:var(--gold) !important;
  outline:none !important;
  box-shadow:none !important;
}

/* MASTER HEADER BUTTON FIX */
#site-header .nav-more-button,
header .nav-more-button{
  appearance:none !important;
  -webkit-appearance:none !important;
  background:none !important;
  background-color:transparent !important;
  border:none !important;
  outline:none !important;
  box-shadow:none !important;
  padding:0 !important;
  margin:0 !important;
  color:#d7d7d7 !important;
  font-weight:800 !important;
  font-size:inherit !important;
  font-family:inherit !important;
  line-height:normal !important;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:6px;
}

#site-header .nav-more-button:hover,
#site-header .nav-more-button:focus,
#site-header .nav-more-button:active,
header .nav-more-button:hover,
header .nav-more-button:focus,
header .nav-more-button:active{
  background:none !important;
  background-color:transparent !important;
  color:var(--gold) !important;
  outline:none !important;
  box-shadow:none !important;
}

#site-header .nav-more.open .nav-dropdown,
header .nav-more.open .nav-dropdown{
  display:grid;
  gap:6px;
}
