:root{
  --bg:#070707;
  --bg2:#0c0c0c;
  --panel:#0f0f10;
  --panel2:#121213;

  --text:#f7f7f7;
  --muted:rgba(247,247,247,.72);
  --stroke:rgba(255,255,255,.12);

  --gold:#f7c948;
  --gold2:#ffb020;
  --amber:#ffcc66;

  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius:16px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 520px at 18% 10%, rgba(247,201,72,.18), transparent 62%),
    radial-gradient(800px 480px at 86% 24%, rgba(255,176,32,.12), transparent 62%),
    var(--bg);
  color:var(--text);
}
a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92%); margin:0 auto}

/* HEADER */
.tw-header{
  position:sticky; top:0; z-index:50;
  background: rgba(7,7,7,.78);
  backdrop-filter: blur(10px);
}
.tw-header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.tw-header__line{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}

.tw-brand{display:flex; gap:10px; align-items:center}
.tw-brand__mark{
  width:42px; height:42px;
  display:grid; place-items:center;
  border-radius:12px;
  background:
    linear-gradient(135deg, rgba(247,201,72,1), rgba(255,176,32,1));
  color:#0b0b0b;
  font-weight:1000;
  box-shadow: 0 10px 28px rgba(247,201,72,.18);
}
.tw-brand__name{display:block; font-weight:1000; letter-spacing:.6px}
.tw-brand__tag{display:block; font-size:12px; color:var(--muted); margin-top:1px}

/* NAV */
.tw-nav{display:flex; gap:18px; align-items:center}
.tw-nav__link{
  padding:10px 10px;
  color:rgba(247,247,247,.86);
  border-radius:12px;
  transition:.2s ease;
}
.tw-nav__link:hover{
  background: rgba(255,255,255,.06);
  color: var(--gold);
}

/* BURGER */
.tw-burger{
  display:none;
  width:46px; height:44px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  cursor:pointer;
}
.tw-burger span{
  display:block;
  width:20px; height:2px;
  background: var(--text);
  margin:5px auto;
  border-radius:2px;
}

/* HERO */
.tw-hero{padding:46px 0 12px}
.tw-hero__grid{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:26px;
  align-items:start;
}
.tw-kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  border-radius:999px;
  color:var(--muted);
  margin:0 0 14px;
}
.tw-kicker__dot{
  width:8px; height:8px; border-radius:999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(247,201,72,.18);
}

.tw-h1{
  font-size: clamp(28px, 3.8vw, 44px);
  line-height:1.10;
  margin:0 0 10px;
}
.tw-accent{color:var(--gold)}
.tw-h2{
  margin:0 0 12px;
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(247,247,247,.88);
  font-weight:800;
}
.tw-lead{
  margin:0 0 18px;
  color: var(--muted);
  line-height:1.75;
}

.tw-hero__cta{
  display:flex; flex-wrap:wrap;
  gap:14px;
  margin: 10px 0 16px;
}

/* BUTTONS with animated hover */
.tw-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:13px 16px;
  border-radius: 8px;
  font-weight: 1000;
  border:1px solid var(--stroke);
  letter-spacing:.3px;
  position:relative;
  overflow:hidden;
  transition: transform .15s ease, filter .2s ease;
}
.tw-btn::before{
  content:"";
  position:absolute;
  inset:0;
  transform: translateX(-110%);
  transition: transform .45s ease;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}
.tw-btn:hover::before{transform: translateX(110%)}
.tw-btn:hover{transform: translateY(-1px); filter:brightness(1.05)}

.tw-btn--primary{
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color:#0b0b0b;
  border-color: transparent;
  box-shadow: 0 14px 44px rgba(247,201,72,.14);
}
.tw-btn--outline{
  background: rgba(255,255,255,.03);
  color: var(--gold);
  border-color: rgba(247,201,72,.45);
}
.tw-btn--wide{width:100%}

/* mini cards */
.tw-mini{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top: 12px;
}
.tw-mini__card{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  border-radius: 12px;
  padding:12px;
}
.tw-mini__title{font-weight:1000}
.tw-mini__sub{font-size:12px; color:var(--muted); margin-top:2px}

/* Right side card */
.tw-hero__side{position:relative}
.tw-sideCard{
  border:1px solid rgba(247,201,72,.22);
  background:
    radial-gradient(720px 320px at 20% 0%, rgba(247,201,72,.16), transparent 60%),
    rgba(255,255,255,.03);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.tw-sideCard__top{padding:16px}
.tw-badge{
  display:inline-flex;
  padding:7px 10px;
  border-radius: 999px;
  background: rgba(247,201,72,.14);
  border:1px solid rgba(247,201,72,.36);
  color: var(--gold);
  font-weight:1000;
}
.tw-sideCard__price{
  font-size:44px;
  font-weight:1000;
  margin:10px 0 6px;
  color: var(--gold);
}
.tw-sideCard__text{
  margin:0 0 14px;
  color: var(--muted);
  line-height:1.7;
}
.tw-sideCard__bottom{
  padding:14px 16px 16px;
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
}
.tw-chip{
  display:inline-flex;
  padding:6px 10px;
  border-radius: 999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  font-weight:900;
  margin-bottom:10px;
}
.tw-bullets{margin:0; padding-left:18px; color:var(--muted); line-height:1.85}
.tw-glow{
  position:absolute;
  width:220px; height:220px;
  right:-50px; bottom:-70px;
  background: radial-gradient(circle at 30% 30%, rgba(247,201,72,.28), transparent 60%);
  filter: blur(10px);
  pointer-events:none;
}

/* SECTIONS */
.tw-sec{padding:48px 0}
.tw-sec--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.tw-sec__head{margin-bottom:16px}
.tw-sec__title{
  margin:0 0 8px;
  font-size: clamp(22px, 3vw, 30px);
}
.tw-sec__sub{
  margin:0 0 10px;
  color: rgba(247,247,247,.84);
  font-weight:800;
}
.tw-sec__text{
  margin:0;
  color: var(--muted);
  line-height:1.8;
}

/* cards */
.tw-cards3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}
.tw-card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.tw-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.05);
  border-color: rgba(247,201,72,.25);
}
.tw-card__h{margin:0 0 6px; font-weight:1000}
.tw-card__p{margin:0; color:var(--muted); line-height:1.7}

/* panels */
.tw-grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:14px;
}
.tw-panel{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
}
.tw-panel--gold{
  border-color: rgba(247,201,72,.24);
  background:
    radial-gradient(700px 260px at 20% 0%, rgba(247,201,72,.14), transparent 60%),
    rgba(255,255,255,.03);
}
.tw-panel__h{margin:0 0 10px; font-weight:1000}

.tw-steps{margin:0; padding-left:18px; color:var(--muted); line-height:1.9}
.tw-steps--two{columns:2; column-gap:26px}

.tw-ticks{list-style:none; margin:0; padding:0; color:var(--muted)}
.tw-ticks li{position:relative; padding-left:26px; margin:10px 0; line-height:1.75}
.tw-ticks li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  width:18px; height:18px;
  display:grid; place-items:center;
  border-radius:6px;
  background: rgba(247,201,72,.14);
  border: 1px solid rgba(247,201,72,.35);
  color: var(--gold);
  font-weight:1000;
}

/* Bonus CTA card */
.tw-ctaCard{
  border-radius: var(--radius);
  border:1px solid rgba(247,201,72,.22);
  background:
    radial-gradient(900px 320px at 30% 0%, rgba(255,176,32,.18), transparent 60%),
    rgba(255,255,255,.03);
  padding:18px;
}
.tw-ctaCard__label{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-weight:900;
}
.tw-ctaCard__big{font-size:26px; font-weight:1000; margin:10px 0 6px; color: var(--gold)}
.tw-ctaCard__p{margin:0 0 14px; color:var(--muted); line-height:1.75}

/* Notice / disclaimer blocks */
.tw-notice{
  border:1px dashed rgba(247,201,72,.45);
  background: rgba(247,201,72,.08);
  border-radius: var(--radius);
  padding:14px 16px;
  color: rgba(247,247,247,.92);
  line-height:1.8;
}
.tw-disclaimer{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:14px 16px;
  color: var(--muted);
  line-height:1.8;
}

/* FAQ */
.tw-faq{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  overflow:hidden;
}
.tw-faq__q{
  width:100%;
  text-align:left;
  padding:14px 16px;
  background: transparent;
  border:0;
  color: var(--text);
  font-weight:1000;
  cursor:pointer;
  border-bottom:1px solid rgba(255,255,255,.10);
  transition: background .2s ease, color .2s ease;
}
.tw-faq__q:hover{background: rgba(255,255,255,.05); color: var(--gold)}
.tw-faq__a{
  padding:0 16px;
  color: var(--muted);
  max-height:0;
  overflow:hidden;
  transition: max-height .25s ease, padding .25s ease;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.tw-faq__a.is-open{padding:14px 16px; max-height:240px}

/* Footer */
.tw-footer{
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.28);
  padding:34px 0;
}
.tw-footer__grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap:18px;
}
.tw-footer__brand{font-weight:1000; letter-spacing:.6px; font-size:18px}
.tw-footer__title{font-weight:1000; margin:0 0 10px}
.tw-footer__text{margin:8px 0 0; color:var(--muted); line-height:1.7}
.tw-footer__copy{margin:10px 0 0; color:rgba(247,247,247,.55); font-size:13px}
.tw-footer a{display:block; padding:6px 0; color:var(--muted)}
.tw-footer a:hover{color: var(--gold)}

/* Scroll top */
.tw-top{
  position:fixed;
  right:16px; bottom:16px;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
  display:none;
}
.tw-top.show{display:block}

/* Reveal animation */
.tw-reveal{
  opacity:0;
  transform: translateY(12px);
  transition: .55s ease;
}
.tw-reveal.is-in{
  opacity:1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .tw-hero__grid{grid-template-columns:1fr}
  .tw-mini{grid-template-columns:1fr}
  .tw-footer__grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 760px){
  .tw-burger{display:block}
  .tw-nav{
    position:fixed;
    inset:70px 12px auto 12px;
    display:none;
    flex-direction:column;
    gap:6px;
    padding:10px;
    border-radius: 16px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(7,7,7,.92);
    backdrop-filter: blur(12px);
  }
  .tw-nav.open{display:flex}
  .tw-grid2{grid-template-columns:1fr}
  .tw-cards3{grid-template-columns:1fr}
  .tw-steps--two{columns:1}
  .tw-footer__grid{grid-template-columns:1fr}
}
/* ===== Center Single Image Section ===== */

.tw-singleMedia{
  padding: 28px 0;
}

.tw-singleMedia__wrap{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  box-shadow: 0 25px 70px rgba(0,0,0,.55);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}

.tw-singleMedia__wrap img{
  width:100%;
  height: 320px;
  object-fit: cover;
  display:block;
  transition: transform .4s ease, filter .4s ease;
}

/* gold accent version */
.tw-singleMedia__wrap--gold{
  border: 1px solid rgba(247,201,72,.35);
  background:
    radial-gradient(900px 260px at 30% 0%, rgba(247,201,72,.16), transparent 60%),
    rgba(255,255,255,.03);
}

/* Hover effect */
.tw-singleMedia__wrap:hover{
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(247,201,72,.15);
}

.tw-singleMedia__wrap:hover img{
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* Responsive */
@media (max-width:768px){
  .tw-singleMedia__wrap img{
    height: 220px;
  }
}

/* ===== Login Page Hero ===== */
.tw-pageHero{
  padding: 46px 0 10px;
}
.tw-pageHero__inner{
  text-align:left;
}
.tw-pageHero__title{
  margin:0 0 10px;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 1000;
  line-height:1.12;
}
.tw-pageHero__lead{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 980px;
}
.tw-pageHero__cta{
  display:flex;
  justify-content:center;
  margin: 22px 0 10px;
}
.tw-pageHero__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.tw-pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(247,247,247,.78);
  font-weight:900;
  font-size: 12px;
}

/* Active nav link */
.tw-nav__link.is-active{
  color: var(--gold);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(247,201,72,.25);
}

/* Issues list */
.tw-stack{display:grid; gap:12px; margin-top:12px;}
.tw-issue{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.tw-issue__h{margin:0 0 6px; font-weight:1000}
.tw-issue__p{margin:0; color: var(--muted); line-height:1.75}

/* Center hero button on mobile too */
@media (max-width:760px){
  .tw-pageHero__cta{justify-content:flex-start}
}

/* ===== Register Page: Prev/Next bar + Floating bonus ===== */
.tw-navPosts{
  padding: 22px 0 28px;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.01);
}
.tw-navPosts__grid{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  gap:14px;
  align-items:center;
}
.tw-navPosts__item{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:14px 16px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.tw-navPosts__item:hover{
  transform: translateY(-2px);
  border-color: rgba(247,201,72,.25);
  background: rgba(255,255,255,.05);
}
.tw-navPosts__k{
  font-weight:1000;
  color: rgba(247,247,247,.78);
  letter-spacing:.3px;
  font-size:12px;
}
.tw-navPosts__t{
  font-weight:1000;
  color: rgba(247,247,247,.92);
  line-height:1.25;
}
.tw-navPosts__item--right{
  text-align:right;
  align-items:flex-end;
}
.tw-navPosts__line{
  width:1px;
  height:54px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.22), transparent);
}

/* floating bonus button */
.tw-floatBonus{
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 60;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(247,201,72,.35);
  background: linear-gradient(135deg, rgba(247,201,72,.95), rgba(255,176,32,.95));
  color:#0b0b0b;
  font-weight:1000;
  box-shadow: 0 18px 55px rgba(247,201,72,.18);
  transition: transform .2s ease, filter .2s ease;
}
.tw-floatBonus:hover{
  transform: translateY(-2px);
  filter: brightness(1.04);
}
.tw-floatBonus span{white-space:nowrap}

@media (max-width:760px){
  .tw-navPosts__grid{grid-template-columns:1fr}
  .tw-navPosts__line{display:none}
  .tw-floatBonus{right:12px; bottom:78px; padding:10px 12px}
}

/* ===== Blog page UI ===== */
.tw-blogTools{
  margin-top: 16px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.tw-blogSearch{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  max-width: 760px;
}
.tw-blogSearch__icon{color: rgba(247,247,247,.65); font-weight:1000}
.tw-blogSearch input{
  width:100%;
  background: transparent;
  border:0;
  outline:none;
  color: var(--text);
  font-size:14px;
}
.tw-blogSearch input::placeholder{color: rgba(247,247,247,.50)}

.tw-blogFilter{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.tw-chipBtn{
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(247,247,247,.78);
  font-weight: 1000;
  cursor:pointer;
  transition: .2s ease;
}
.tw-chipBtn:hover{
  background: rgba(255,255,255,.06);
  color: var(--gold);
  border-color: rgba(247,201,72,.25);
}
.tw-chipBtn.is-active{
  background: rgba(247,201,72,.12);
  border-color: rgba(247,201,72,.45);
  color: var(--gold);
}

/* Blog grid cards */
.tw-blogGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.tw-post{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.tw-post:hover{
  transform: translateY(-3px);
  border-color: rgba(247,201,72,.25);
  background: rgba(255,255,255,.05);
}

.tw-post__media{
  display:block;
  height: 180px;
  overflow:hidden;
  position:relative;
}
.tw-post__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transition: transform .35s ease, filter .35s ease;
  filter: contrast(1.02) saturate(1.05);
}
.tw-post:hover .tw-post__media img{
  transform: scale(1.06);
  filter: brightness(1.05);
}
.tw-post__media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.68));
  pointer-events:none;
}

.tw-post__body{ padding: 14px 14px 16px; }
.tw-post__meta{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:10px;
}
.tw-post__tag{
  display:inline-flex;
  width:max-content;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(247,247,247,.74);
  font-weight:900;
  font-size:12px;
}
.tw-post__date{
  color: rgba(247,201,72,.88);
  font-size:12px;
  font-weight:900;
}
.tw-post__title{
  margin:0 0 10px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 1000;
}
.tw-post__title a:hover{ color: var(--gold); }
.tw-post__excerpt{
  margin:0 0 12px;
  color: var(--muted);
  line-height: 1.75;
}
.tw-post__btn{
  display:inline-flex;
  color: var(--gold);
  font-weight: 1000;
}
.tw-post__btn:hover{ text-decoration: underline; }

/* Responsive */
@media (max-width: 1020px){
  .tw-blogGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .tw-blogGrid{ grid-template-columns: 1fr; }
  .tw-post__media{ height: 200px; }
}

/* ===== Disclaimer Page UI ===== */
.tw-disclaimerPage{
  max-width: 980px;
  margin: 0 auto;
}

.tw-disH{
  margin: 18px 0 8px;
  font-size: 22px;
  font-weight: 1000;
  line-height: 1.2;
}

.tw-disP{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.9;
}

.tw-disList{
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(247,247,247,.84);
  line-height: 1.9;
}
.tw-disList li{ margin: 6px 0; }

.tw-noteBox{
  border-radius: 18px;
  padding: 16px 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  margin-bottom: 14px;
}
.tw-noteBox__h{
  margin:0 0 8px;
  font-weight:1000;
  font-size: 18px;
}
.tw-noteBox__p{
  margin:0;
  color: var(--muted);
  line-height: 1.85;
}

.tw-warnBox{
  margin: 14px 0 8px;
  border-radius: 18px;
  padding: 16px 16px;
  border: 1px solid rgba(247,201,72,.35);
  background:
    radial-gradient(900px 240px at 30% 0%, rgba(247,201,72,.18), transparent 60%),
    rgba(255,255,255,.02);
}
.tw-warnBox__h{
  margin:0 0 8px;
  font-weight:1000;
  color: var(--gold);
}
.tw-warnBox__p{
  margin:0;
  color: rgba(247,247,247,.84);
  line-height: 1.85;
}

.tw-bottomCTA{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* ghost button if not exists */
.tw-btn--ghost{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: rgba(247,247,247,.86);
}
.tw-btn--ghost:hover{
  border-color: rgba(247,201,72,.35);
  color: var(--gold);
  background: rgba(255,255,255,.06);
}
/* ===== About page: 3 cards ===== */
.tw-grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 12px;
}

.tw-miniCard{
  border-radius: 18px;
  padding: 16px 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 55px rgba(0,0,0,.40);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.tw-miniCard:hover{
  transform: translateY(-3px);
  border-color: rgba(247,201,72,.25);
  background: rgba(255,255,255,.05);
}
.tw-miniCard__k{
  width:max-content;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(247,201,72,.35);
  background: rgba(247,201,72,.10);
  color: var(--gold);
  font-weight: 1000;
  font-size: 12px;
  margin-bottom: 10px;
}
.tw-miniCard__h{
  margin: 0 0 8px;
  font-weight: 1000;
  font-size: 18px;
}
.tw-miniCard__p{
  margin:0;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 980px){
  .tw-grid3{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .tw-grid3{ grid-template-columns: 1fr; }
}