
:root{
  --bg-0:#22140a;
  --bg-1:#2c1a0d;
  --bg-2:#3a2412;
  --surface:#4a2e16;
  --surface-2:#603b10;
  --amber-1:#eaa353;
  --amber-2:#d0f8a0;
  --brand:#603b10;
  --brand-mid:#87551c;
  --brand-light:#eaa353;
  --brand-lime:#d0f8a0;
  --ink:#fbf3e7;
  --ink-muted:#d8c4ac;
  --ink-faint:#b39676;
  --line:rgba(234,163,83,.22);
  --line-soft:rgba(255,255,255,.08);
  --action:#f2b84b;
  --action-strong:#ffcf6b;
  --danger:#e8734a;
  --radius-lg:26px;
  --radius-md:18px;
  --radius-sm:12px;
  --frame-max:1180px;
  --font-display:'Manrope','Noto Sans Myanmar',sans-serif;
  --font-body:'Noto Sans Myanmar','Manrope',sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{margin:0;padding:0}
body{
  font-family:var(--font-body);
  background:
    radial-gradient(circle at 12% -10%, rgba(234,163,83,.24), transparent 42%),
    radial-gradient(circle at 92% 8%, rgba(208,248,160,.10), transparent 38%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 45%, var(--bg-2) 100%);
  color:var(--ink);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:var(--font-display);font-weight:800;letter-spacing:-.01em;margin:0 0 .5em}
p{margin:0 0 1em;color:var(--ink-muted)}
ul{margin:0;padding:0}
li{list-style:none}
button{font-family:inherit}

.wrap{max-width:var(--frame-max);margin:0 auto;padding:0 20px}
@media (min-width:900px){.wrap{padding:0 32px}}

.eyebrow{font-size:12px;font-weight:800;letter-spacing:.16em;color:var(--brand-lime);text-transform:uppercase;display:flex;align-items:center;gap:10px;margin-bottom:14px}
.eyebrow::before{content:"";width:26px;height:2px;background:var(--brand-lime);display:inline-block}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:14px 26px;border-radius:999px;font-weight:800;font-size:15px;border:1px solid transparent;cursor:pointer;transition:transform .15s ease, box-shadow .15s ease}
.btn-primary{background:linear-gradient(120deg,var(--action) 0%,var(--action-strong) 100%);color:#241203;box-shadow:0 14px 34px rgba(242,184,75,.32)}
.btn-primary:hover{transform:translateY(-2px)}
.btn-ghost{background:rgba(255,255,255,.05);color:var(--ink);border-color:var(--line)}
.btn-ghost:hover{background:rgba(255,255,255,.09)}
.btn-sm{padding:10px 18px;font-size:13px}

/* ===== Header ===== */
.site-header{position:sticky;top:0;z-index:60;background:rgba(34,20,10,.86);backdrop-filter:blur(14px);border-bottom:1px solid var(--line-soft)}
.site-header .wrap{display:flex;align-items:center;gap:18px;height:72px}
.brand-mark{display:flex;align-items:center;gap:10px;font-family:var(--font-display);font-weight:800;font-size:20px;color:var(--ink);flex-shrink:0}
.brand-mark img{width:40px;height:40px;border-radius:12px;box-shadow:0 6px 18px rgba(0,0,0,.35)}
.rail-nav{display:none}
@media (min-width:960px){
  .rail-nav{display:flex;align-items:center;gap:2px;margin-left:12px;overflow-x:auto;scrollbar-width:none}
  .rail-nav::-webkit-scrollbar{display:none}
  .rail-nav a{padding:9px 14px;border-radius:999px;font-size:14px;font-weight:600;color:var(--ink-muted);white-space:nowrap}
  .rail-nav a:hover,.rail-nav a.is-active{background:rgba(234,163,83,.14);color:var(--ink)}
}
.header-actions{margin-left:auto;display:flex;align-items:center;gap:10px}
.header-actions .btn-ghost{display:none}
@media (min-width:640px){.header-actions .btn-ghost{display:inline-flex}}
.hamburger{display:inline-flex;width:42px;height:42px;border-radius:12px;background:rgba(255,255,255,.06);border:1px solid var(--line-soft);align-items:center;justify-content:center;cursor:pointer}
@media (min-width:960px){.hamburger{display:none}}
.hamburger span{display:block;width:18px;height:2px;background:var(--ink);position:relative}
.hamburger span::before,.hamburger span::after{content:"";position:absolute;left:0;width:18px;height:2px;background:var(--ink)}
.hamburger span::before{top:-6px}
.hamburger span::after{top:6px}

.mobile-drawer{position:fixed;inset:0;z-index:90;display:none}
.mobile-drawer.is-open{display:block}
.mobile-drawer .scrim{position:absolute;inset:0;background:rgba(10,6,3,.72)}
.mobile-drawer .panel{position:absolute;top:0;right:0;bottom:0;width:min(88vw,360px);background:linear-gradient(180deg,#2c1a0d,#22140a);border-left:1px solid var(--line);padding:20px;overflow-y:auto}
.mobile-drawer .panel-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.mobile-drawer .close-btn{width:38px;height:38px;border-radius:10px;background:rgba(255,255,255,.07);border:1px solid var(--line-soft);color:var(--ink);font-size:18px;display:flex;align-items:center;justify-content:center;cursor:pointer}
.mobile-drawer nav a{display:block;padding:12px 6px;border-bottom:1px solid var(--line-soft);font-weight:700;font-size:15px}
.mobile-drawer .drawer-cta{margin-top:18px;display:flex;flex-direction:column;gap:10px}
body.drawer-open{overflow:hidden}

/* ===== Breadcrumb ===== */
.crumbs{padding:16px 0 0;font-size:13px;color:var(--ink-faint)}
.crumbs a{color:var(--ink-faint)}
.crumbs a:hover{color:var(--brand-lime)}
.crumbs span{margin:0 6px}

/* ===== Hero (inner pages) ===== */
.page-hero{padding:36px 0 40px;position:relative}
.page-hero .eyebrow{margin-bottom:12px}
.page-hero h1{font-size:clamp(30px,4.6vw,48px);line-height:1.12}
.page-hero .lede{font-size:17px;max-width:64ch;color:var(--ink-muted)}
.page-hero-media{margin-top:26px;border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--line);box-shadow:0 26px 60px rgba(0,0,0,.4)}
.page-hero-media img{width:100%;height:auto;aspect-ratio:16/9;object-fit:cover}

/* ===== Sections ===== */
section{padding:44px 0}
.section-head{max-width:70ch;margin-bottom:26px}
.section-head h2{font-size:clamp(24px,3.2vw,34px)}
.panel{background:linear-gradient(165deg, rgba(74,46,22,.55), rgba(58,36,18,.4));border:1px solid var(--line);border-radius:var(--radius-lg);padding:clamp(20px,3.4vw,36px)}
.panel-soft{background:rgba(255,255,255,.03);border:1px solid var(--line-soft);border-radius:var(--radius-md);padding:22px}

.grid-2{display:grid;gap:22px;grid-template-columns:1fr}
@media (min-width:760px){.grid-2{grid-template-columns:1fr 1fr}}
.grid-3{display:grid;gap:20px;grid-template-columns:1fr}
@media (min-width:640px){.grid-3{grid-template-columns:repeat(2,1fr)}}
@media (min-width:980px){.grid-3{grid-template-columns:repeat(3,1fr)}}
.grid-4{display:grid;gap:18px;grid-template-columns:repeat(2,1fr)}
@media (min-width:900px){.grid-4{grid-template-columns:repeat(4,1fr)}}

.feature-card{background:rgba(255,255,255,.035);border:1px solid var(--line-soft);border-radius:var(--radius-md);padding:22px;display:flex;flex-direction:column;gap:10px}
.feature-card img{border-radius:var(--radius-sm);width:100%;aspect-ratio:4/3;object-fit:cover;margin-bottom:6px}
.feature-card h3{font-size:18px;margin-bottom:4px}
.feature-card p{font-size:14.5px;margin-bottom:0}

.media-figure{border-radius:var(--radius-md);overflow:hidden;border:1px solid var(--line)}
.media-figure img{width:100%;aspect-ratio:4/3;object-fit:cover}
.media-figure figcaption{padding:12px 16px;font-size:13px;color:var(--ink-faint);background:rgba(0,0,0,.18)}
figure{margin:0}

.step-list{counter-reset:step;display:grid;gap:14px}
.step-list li{counter-increment:step;position:relative;padding:16px 16px 16px 58px;background:rgba(255,255,255,.03);border:1px solid var(--line-soft);border-radius:var(--radius-sm)}
.step-list li::before{content:counter(step);position:absolute;left:16px;top:16px;width:30px;height:30px;border-radius:9px;background:linear-gradient(135deg,var(--brand-light),var(--brand-lime));color:#241203;font-weight:800;display:flex;align-items:center;justify-content:center;font-size:14px}
.step-list h4{font-size:15.5px;margin-bottom:4px}
.step-list p{font-size:14px;margin-bottom:0}

/* Sport feature (per-sport dedicated coverage) */
.sport-feature{display:flex;gap:18px;align-items:stretch;background:rgba(255,255,255,.035);border:1px solid var(--line-soft);border-radius:var(--radius-md);padding:14px;margin-bottom:14px}
.sport-feature img{width:120px;height:120px;flex-shrink:0;border-radius:14px;object-fit:cover}
.sport-feature .body{display:flex;flex-direction:column;gap:6px;justify-content:center}
.sport-feature .tag{display:inline-flex;align-items:center;gap:6px;font-size:11px;font-weight:800;letter-spacing:.08em;color:var(--brand-lime);text-transform:uppercase}
.sport-feature h3{font-size:16.5px;margin:0}
.sport-feature p{font-size:13.5px;margin:0;color:var(--ink-muted)}
@media (max-width:520px){
  .sport-feature{flex-direction:row}
  .sport-feature img{width:96px;height:96px}
}

.faq-list{display:grid;gap:12px}
.faq-item{border:1px solid var(--line-soft);border-radius:var(--radius-sm);background:rgba(255,255,255,.03);overflow:hidden}
.faq-item summary{padding:16px 18px;font-weight:700;cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:12px}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";font-size:20px;color:var(--brand-lime);flex-shrink:0}
.faq-item[open] summary::after{content:"−"}
.faq-item .a{padding:0 18px 18px;font-size:14.5px;color:var(--ink-muted)}

.table-wrap{overflow-x:auto;border-radius:var(--radius-md);border:1px solid var(--line-soft)}
table{width:100%;border-collapse:collapse;font-size:14px;min-width:520px}
th,td{padding:12px 14px;text-align:left;border-bottom:1px solid var(--line-soft)}
th{color:var(--brand-lime);font-size:12px;text-transform:uppercase;letter-spacing:.06em;background:rgba(255,255,255,.03)}
tr:last-child td{border-bottom:none}

.pill{display:inline-flex;align-items:center;gap:6px;padding:6px 12px;border-radius:999px;background:rgba(234,163,83,.14);color:var(--brand-lime);font-size:12px;font-weight:700}

.trust-strip{padding:38px 0}
.trust-strip .marks{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
@media (min-width:640px){.trust-strip .marks{grid-template-columns:repeat(5,1fr)}}
@media (min-width:960px){.trust-strip .marks{grid-template-columns:repeat(7,1fr)}}
.trust-mark{background:rgba(255,255,255,.05);border:1px solid var(--line-soft);border-radius:14px;padding:12px;display:flex;align-items:center;justify-content:center;height:64px}
.trust-mark img.trust-logo-mark{object-fit:contain;width:100%;height:100%;max-height:38px;filter:saturate(1.05)}
.trust-note{font-size:12.5px;color:var(--ink-faint);margin-top:14px}

.cta-band{background:linear-gradient(120deg, rgba(96,59,16,.85), rgba(135,85,28,.75));border:1px solid var(--line);border-radius:var(--radius-lg);padding:clamp(24px,4vw,44px);display:flex;flex-direction:column;gap:16px;align-items:flex-start}
@media (min-width:760px){.cta-band{flex-direction:row;align-items:center;justify-content:space-between}}
.cta-band h2{font-size:clamp(22px,3vw,30px);margin-bottom:6px}
.cta-band p{margin-bottom:0}
.cta-band .actions{display:flex;gap:10px;flex-wrap:wrap}

.notice{border-left:3px solid var(--brand-lime);background:rgba(208,248,160,.06);padding:14px 18px;border-radius:0 var(--radius-sm) var(--radius-sm) 0;font-size:13.5px;color:var(--ink-muted)}

/* ===== Footer ===== */
.site-footer{margin-top:60px;border-top:1px solid var(--line-soft);background:rgba(20,12,6,.6);padding:44px 0 26px}
.footer-grid{display:grid;gap:28px;grid-template-columns:1fr}
@media (min-width:780px){.footer-grid{grid-template-columns:1.3fr repeat(3,1fr)}}
.footer-brand{display:flex;flex-direction:column;gap:12px}
.footer-brand .brand-mark{font-size:19px}
.footer-brand p{font-size:13.5px;max-width:38ch}
.footer-col h3{font-size:12px;text-transform:uppercase;letter-spacing:.1em;color:var(--brand-lime);margin-bottom:12px}
.footer-col a{display:block;padding:6px 0;font-size:14px;color:var(--ink-muted)}
.footer-col a:hover{color:var(--ink)}
.social-row{display:flex;gap:10px;margin-top:6px}
.social-row a{width:38px;height:38px;border-radius:11px;background:rgba(255,255,255,.06);border:1px solid var(--line-soft);display:flex;align-items:center;justify-content:center}
.social-row svg{width:17px;height:17px;fill:var(--ink-muted)}
.footer-legal{margin-top:34px;padding-top:20px;border-top:1px solid var(--line-soft);display:flex;flex-direction:column;gap:10px;font-size:12.5px;color:var(--ink-faint)}
@media (min-width:780px){.footer-legal{flex-direction:row;justify-content:space-between;align-items:center}}
.footer-legal .legal-links{display:flex;gap:16px;flex-wrap:wrap}
.footer-legal a{color:var(--ink-faint)}

/* ===== Mobile sticky CTA ===== */
.mobile-cta{position:fixed;left:0;right:0;bottom:0;z-index:70;padding:10px 14px calc(10px + env(safe-area-inset-bottom));background:rgba(24,14,7,.92);backdrop-filter:blur(10px);border-top:1px solid var(--line-soft);display:flex;gap:10px}
.mobile-cta a{flex:1}
@media (min-width:960px){.mobile-cta{display:none}}
body{padding-bottom:78px}
@media (min-width:960px){body{padding-bottom:0}}

/* Review section */
.review-grid{display:grid;gap:16px;grid-template-columns:1fr}
@media (min-width:700px){.review-grid{grid-template-columns:repeat(3,1fr)}}
.review-card{background:rgba(255,255,255,.035);border:1px solid var(--line-soft);border-radius:var(--radius-md);padding:20px;display:flex;flex-direction:column;gap:10px}
.review-card .stars{display:flex;gap:3px}
.review-card .stars svg{width:15px;height:15px;fill:var(--action)}
.review-card q{font-style:italic;font-size:14.5px;color:var(--ink-muted)}
.review-card .who{display:flex;align-items:center;gap:10px;margin-top:4px}
.review-card .avatar{width:34px;height:34px;border-radius:10px;background:linear-gradient(135deg,var(--brand-light),var(--brand-lime));color:#241203;font-weight:800;display:flex;align-items:center;justify-content:center;font-size:13px}
.review-card .who strong{font-size:13.5px;display:block}
.review-card .who span{font-size:12px;color:var(--ink-faint)}

@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}*{transition:none!important}}

/* Social media links (footer) */
.social-row{display:flex;gap:10px;margin:16px 0 4px}
.social-icon{width:34px;height:34px;display:flex;align-items:center;justify-content:center;border-radius:50%;border:1px solid var(--line-soft);color:var(--ink-muted);flex-shrink:0;transition:color .15s,border-color .15s}
.social-icon svg{width:16px;height:16px}
.social-icon:hover{color:var(--action);border-color:var(--action)}
