:root {
  --bg: #08070d;
  --bg-soft: #0d0b14;
  --panel: rgba(17, 14, 24, 0.88);
  --panel-solid: #111018;
  --panel-2: #17131e;
  --line: rgba(255,255,255,.09);
  --line-bright: rgba(174, 91, 255, .34);
  --text: #f6f3fa;
  --muted: #9d96aa;
  --purple: #a85cff;
  --purple-2: #714cf6;
  --pink: #ff3e93;
  --red: #ee314d;
  --cyan: #46dcff;
  --green: #4de5a5;
  --orange: #ffad42;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0,0,0,.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  background:
    radial-gradient(circle at 15% 4%, rgba(124, 28, 91, .18), transparent 27rem),
    radial-gradient(circle at 88% 23%, rgba(59, 35, 128, .14), transparent 30rem),
    var(--bg);
}
body.menu-open, body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, select { cursor: pointer; }
button { color: inherit; }
.shell { width: min(1320px, calc(100% - 56px)); margin-inline: auto; }

.page-noise {
  position: fixed; inset: 0; pointer-events: none; opacity: .024; z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.ambient { position: fixed; width: 380px; aspect-ratio: 1; border-radius: 50%; filter: blur(110px); opacity: .13; pointer-events: none; }
.ambient-one { background: var(--pink); top: 20%; left: -220px; }
.ambient-two { background: var(--purple); top: 55%; right: -260px; }

.site-header {
  width: min(1440px, 100%); height: 82px; padding: 0 34px; margin: auto; display: flex; align-items: center; gap: 38px;
  position: relative; z-index: 50; border-bottom: 1px solid rgba(255,255,255,.055); background: rgba(8,7,13,.82); backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark { width: 43px; height: 43px; display: grid; place-items: center; transform: skew(-8deg); border: 1px solid rgba(255,91,131,.5); background: linear-gradient(145deg, #ff315c, #6d143c 55%, #160b18); box-shadow: 0 0 25px rgba(238,49,77,.24), inset 0 0 12px rgba(255,255,255,.12); clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; transform: skew(8deg) scale(1.1); }
.brand-mark span { font-family: "Chakra Petch", sans-serif; font-size: 25px; font-weight: 700; transform: skew(8deg); text-shadow: 2px 2px 0 rgba(0,0,0,.4); }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy b { font-family: "Chakra Petch", sans-serif; font-size: 18px; letter-spacing: .07em; }
.brand-copy small { color: #8e8799; font-size: 8px; letter-spacing: .25em; margin-top: 5px; }
.main-nav { display: flex; align-items: center; gap: 30px; margin-right: auto; }
.main-nav a { color: #a8a1b1; font-size: 13px; font-weight: 600; transition: .25s; position: relative; }
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a.active::after { content: ""; position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--pink); left: 50%; transform: translateX(-50%); bottom: -14px; box-shadow: 0 0 10px var(--pink); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-button { min-height: 42px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.035); padding: 0 13px; display: inline-flex; align-items: center; gap: 8px; }
.icon-button:hover { border-color: var(--line-bright); background: rgba(168,92,255,.08); }
.icon-button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-label { color: #c6c0ce; font-size: 12px; }
.cart-count { min-width: 19px; height: 19px; padding: 0 5px; border-radius: 20px; display: grid; place-items: center; color: var(--cyan); background: rgba(70,220,255,.1); font-size: 10px; }
.login-link { font-size: 12px; font-weight: 600; padding: 12px 7px; }
.mobile-account, .mobile-balance-pill { display: none; }
.mobile-toggle { display: none; margin-left: auto; width: 43px; height: 43px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.04); padding: 11px; }
.mobile-toggle span { display: block; height: 2px; margin: 4px 0; background: #fff; border-radius: 3px; transition: .25s; }

.button { min-height: 48px; padding: 0 22px; border: 0; border-radius: 12px; background: linear-gradient(135deg, #bd62ff 0%, #7254f6 100%); display: inline-flex; align-items: center; justify-content: center; gap: 8px; color: #fff; font-size: 13px; font-weight: 800; box-shadow: 0 10px 30px rgba(127,75,248,.24), inset 0 1px 0 rgba(255,255,255,.2); transition: transform .2s, filter .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 15px 36px rgba(127,75,248,.36); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 12px; }
.button-wide { width: 100%; }
.outline-button { min-height: 45px; padding: 0 18px; border: 1px solid var(--line); border-radius: 12px; display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; background: rgba(255,255,255,.025); transition: .2s; }
.outline-button:hover { border-color: rgba(168,92,255,.5); background: rgba(168,92,255,.08); }
.text-button { display: inline-flex; align-items: center; gap: 10px; color: #d6d0dc; font-size: 13px; font-weight: 700; }
.text-button span { width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }

.hero { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(360px, .8fr); gap: 20px; padding-top: 32px; }
.hero-card, .wallet-card { min-height: 600px; border: 1px solid var(--line); border-radius: var(--radius); position: relative; overflow: hidden; box-shadow: var(--shadow); }
.hero-card { isolation: isolate; background: linear-gradient(135deg, #120a13 0%, #150910 48%, #090910 100%); }
.hero-card::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(100deg, rgba(8,7,13,.98) 0%, rgba(8,7,13,.8) 46%, rgba(8,7,13,.12) 78%), radial-gradient(circle at 90% 70%, rgba(218,40,76,.28), transparent 37%); }
.hero-grid { position: absolute; inset: 0; z-index: -3; opacity: .14; transform: perspective(500px) rotateX(54deg) scale(1.25) translateY(25%); transform-origin: bottom; background-image: linear-gradient(rgba(255,59,104,.45) 1px, transparent 1px), linear-gradient(90deg, rgba(255,59,104,.45) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to top, #000, transparent 75%); }
.hero-glow { position: absolute; width: 420px; height: 420px; right: 5%; top: 15%; border-radius: 50%; background: #c9274e; opacity: .16; filter: blur(80px); z-index: -1; }
.hero-custom-image { width: min(470px, 100%); max-height: 500px; object-fit: contain; filter: drop-shadow(0 28px 55px rgba(231,48,104,.28)); }
.hero-content { position: relative; z-index: 4; width: 57%; padding: 84px 0 60px 62px; }
.eyebrow { color: #c17aff; text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 800; }
.eyebrow i { display: inline-block; width: 21px; height: 1px; background: currentColor; vertical-align: middle; margin: 0 8px 3px 0; }
.hero h1 { font-family: "Chakra Petch", sans-serif; font-size: clamp(44px, 4.8vw, 72px); line-height: .98; letter-spacing: -.045em; margin: 24px 0; max-width: 650px; }
.hero h1 em { color: transparent; font-style: normal; -webkit-text-stroke: 1px rgba(255,255,255,.72); text-shadow: 0 0 30px rgba(255,62,147,.17); }
.hero-content > p { max-width: 490px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 31px; }
.hero-proof { display: flex; align-items: center; gap: 13px; margin-top: 53px; }
.avatar-stack { display: flex; }
.avatar-stack span { width: 31px; height: 31px; margin-left: -8px; display: grid; place-items: center; border: 2px solid #110b12; border-radius: 50%; background: linear-gradient(135deg, #ec4e76, #5b315f); font-size: 10px; font-weight: 800; }
.avatar-stack span:first-child { margin-left: 0; }
.avatar-stack span:nth-child(2) { background: linear-gradient(135deg, #7759ff, #30285d); }
.avatar-stack span:nth-child(3) { background: linear-gradient(135deg, #33b8d6, #214753); }
.avatar-stack span:nth-child(4) { background: #201924; color: #aaa1b3; }
.hero-proof p { margin: 0; font-size: 11px; line-height: 1.3; }
.hero-proof p span { color: var(--muted); }
.hero-art { position: absolute; right: -2%; top: 50%; width: 49%; aspect-ratio: 1; transform: translateY(-50%); display: grid; place-items: center; }
.core { width: 190px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 35% 65% 58% 42% / 43% 39% 61% 57%; background: radial-gradient(circle at 34% 27%, #ff7898, #b61d43 25%, #4e0d23 57%, #150810 73%); box-shadow: inset -20px -18px 40px rgba(0,0,0,.7), inset 15px 15px 40px rgba(255,255,255,.12), 0 0 70px rgba(220,35,75,.4); transform: rotate(-12deg); animation: float 5s ease-in-out infinite; }
.core::before { content: ""; position: absolute; width: 150px; height: 150px; border-radius: 44% 56% 50% 50%; border: 1px solid rgba(255,255,255,.17); }
.core span { font-family: "Chakra Petch", sans-serif; font-size: 96px; font-weight: 700; transform: rotate(12deg); color: rgba(255,255,255,.92); text-shadow: 7px 8px 0 #551126; }
.orbit { position: absolute; border: 1px solid rgba(255,62,104,.24); border-radius: 50%; }
.orbit-one { width: 310px; height: 310px; transform: rotate(20deg); }
.orbit-two { width: 390px; height: 190px; transform: rotate(-22deg); border-color: rgba(168,92,255,.24); }
.mini-card { position: absolute; min-width: 174px; padding: 11px 13px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(17,12,21,.76); backdrop-filter: blur(14px); box-shadow: 0 15px 40px rgba(0,0,0,.25); font-size: 11px; font-weight: 700; }
.mini-card i { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: rgba(168,92,255,.15); color: #db9cff; font-style: normal; }
.mini-card span { display: flex; flex-direction: column; }
.mini-card small { margin-top: 3px; color: var(--muted); font-size: 8px; font-weight: 500; }
.mini-card-one { top: 17%; left: 0; }
.mini-card-two { right: 1%; bottom: 17%; }
@keyframes float { 50% { transform: rotate(-8deg) translateY(-9px); } }

.wallet-card { padding: 28px; background: linear-gradient(160deg, rgba(18,15,24,.97), rgba(12,12,18,.97)); }
.panel-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.panel-heading h2 { margin: 4px 0 0; font-size: 24px; }
.status-pill { padding: 7px 10px; border-radius: 9px; border: 1px solid rgba(77,229,165,.28); color: #78efb9; background: rgba(77,229,165,.07); font-size: 9px; font-weight: 700; }
.status-pill i, .online i { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); margin-right: 4px; }
.balance { margin: 21px 0 16px; padding: 15px 17px; display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025); }
.balance span { color: var(--muted); font-size: 10px; }
.balance strong { font-family: "Chakra Petch", sans-serif; font-size: 25px; }
.balance small { color: var(--purple); font-size: 12px; margin-left: 2px; }
.tabs { display: grid; grid-template-columns: repeat(3, 1fr); padding: 5px; border: 1px solid var(--line); border-radius: 13px; background: rgba(0,0,0,.22); }
.tab { border: 0; border-radius: 9px; padding: 11px 8px; background: transparent; color: var(--muted); font-size: 10px; font-weight: 700; }
.tab.active { background: linear-gradient(135deg, #b05cff, #6753ef); color: #fff; box-shadow: 0 7px 20px rgba(125,76,244,.28); }
.tab-panel { display: none; padding-top: 21px; }
.tab-panel.active { display: block; }
.tab-panel label { display: block; margin-bottom: 12px; color: #bbb4c2; font-size: 9px; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
input, select { width: 100%; height: 45px; margin-top: 7px; padding: 0 13px; outline: none; color: #eeeaf3; border: 1px solid var(--line); border-radius: 10px; background: #0c0b11; font-size: 11px; }
input::placeholder { color: #5f5967; }
input:focus, select:focus { border-color: rgba(168,92,255,.58); box-shadow: 0 0 0 3px rgba(168,92,255,.08); }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #8f8799 50%), linear-gradient(135deg, #8f8799 50%, transparent 50%); background-position: calc(100% - 16px) 19px, calc(100% - 12px) 19px; background-size: 4px 4px; background-repeat: no-repeat; }
.receive-line { min-height: 45px; margin: 3px 0 11px; padding: 0 13px; display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.025); }
.receive-line span { color: var(--muted); font-size: 10px; }
.receive-line strong { font-size: 14px; }
.form-note { color: #736c7d; font-size: 8px; line-height: 1.5; text-align: center; }
.bank-panel { grid-template-columns: 92px 1fr; gap: 18px; align-items: center; }
.bank-panel.active { display: grid; }
.qr-placeholder { aspect-ratio: 1; border-radius: 14px; display: grid; place-items: center; border: 1px dashed rgba(168,92,255,.45); background: repeating-linear-gradient(45deg, #15121a, #15121a 6px, #0e0c12 6px, #0e0c12 12px); color: #cf8eff; font-family: "Chakra Petch"; font-weight: 700; }
.bank-panel h3, .history-panel h3 { margin: 0 0 7px; font-size: 14px; }
.bank-panel p, .history-panel p { color: var(--muted); font-size: 9px; line-height: 1.6; }
.bank-panel .button { min-height: 39px; margin-top: 8px; font-size: 9px; }
.history-panel { text-align: center; padding-top: 50px; }
.empty-icon { width: 55px; height: 55px; margin: auto auto 14px; display: grid; place-items: center; border-radius: 50%; color: #c780ff; background: rgba(168,92,255,.09); border: 1px solid rgba(168,92,255,.2); font-size: 24px; }

.ticker { margin-top: 28px; overflow: hidden; border-block: 1px solid rgba(255,255,255,.05); background: rgba(255,255,255,.018); }
.ticker div { min-width: max-content; height: 53px; display: flex; align-items: center; gap: 34px; animation: ticker 25s linear infinite; }
.ticker span { color: #686270; font-family: "Chakra Petch"; font-size: 11px; letter-spacing: .12em; font-weight: 700; }
.ticker i { color: #a45cff; font-style: normal; }
@keyframes ticker { to { transform: translateX(-35%); } }

.section { padding-top: 94px; }
.section-heading { margin-bottom: 29px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.section-heading h2, .support-banner h2 { margin: 9px 0 7px; font-family: "Chakra Petch"; font-size: clamp(29px, 3vw, 42px); letter-spacing: -.025em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 12px; }
.section-heading.centered { justify-content: center; text-align: center; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(160deg, rgba(21,18,28,.94), rgba(11,10,16,.96)); transition: transform .25s, border-color .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(168,92,255,.32); box-shadow: 0 24px 50px rgba(0,0,0,.3); }
.card-art { position: relative; height: 190px; overflow: hidden; display: grid; place-items: center; border-bottom: 1px solid var(--line); }
.card-art::before, .card-art::after { content: ""; position: absolute; }
.card-art::before { width: 180px; height: 180px; border-radius: 50%; filter: blur(25px); opacity: .4; }
.card-art::after { inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 26px 26px; mask-image: linear-gradient(#000, transparent); }
.art-boost { background: radial-gradient(circle at center, #42102a, #140b16 70%); }.art-boost::before { background: #ff3568; }
.art-random { background: radial-gradient(circle at center, #28174b, #0d0b16 70%); }.art-random::before { background: #9454ff; }
.art-account { background: radial-gradient(circle at center, #0c3240, #091116 70%); }.art-account::before { background: #32cce7; }
.art-items { background: radial-gradient(circle at center, #4b2914, #15100b 70%); }.art-items::before { background: #ef8b35; }
.art-symbol { position: relative; z-index: 2; width: 90px; height: 90px; display: grid; place-items: center; border-radius: 30% 70% 55% 45% / 50% 35% 65% 50%; background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.035)); border: 1px solid rgba(255,255,255,.18); box-shadow: inset 10px 10px 22px rgba(255,255,255,.08), inset -12px -12px 26px rgba(0,0,0,.45), 0 18px 30px rgba(0,0,0,.25); font-family: "Chakra Petch"; font-size: 45px; font-weight: 700; transform: rotate(-9deg); }
.game-badge { position: absolute; top: 14px; left: 14px; z-index: 3; padding: 5px 8px; border-radius: 6px; background: var(--pink); font-size: 7px; font-weight: 800; letter-spacing: .08em; box-shadow: 0 0 17px rgba(255,62,147,.4); }
.game-badge.purple { background: var(--purple); }.game-badge.cyan { background: #16859f; }.game-badge.orange { background: #c96a21; }
.card-body { padding: 19px; }
.card-meta { display: flex; justify-content: space-between; color: #817a88; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.online { color: #72dbaa; }.online i { width: 5px; height: 5px; }
.card-body h3 { margin: 10px 0 7px; font-size: 16px; }
.card-body p { min-height: 37px; margin: 0; color: var(--muted); font-size: 9px; line-height: 1.65; }
.card-footer { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.card-footer strong { font-family: "Chakra Petch"; font-size: 14px; }
.add-cart { border: 1px solid var(--line); border-radius: 9px; background: rgba(255,255,255,.035); padding: 8px 10px; font-size: 8px; font-weight: 700; }
.add-cart:hover { border-color: var(--purple); color: #d79bff; }
.add-cart span { font-size: 13px; margin-left: 4px; }

.steps-section { padding-bottom: 10px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: rgba(255,255,255,.018); }
.steps-grid article { position: relative; padding: 36px; min-height: 224px; border-right: 1px solid var(--line); }
.steps-grid article:last-child { border: 0; }
.step-number { position: absolute; top: 23px; right: 26px; color: rgba(255,255,255,.07); font-family: "Chakra Petch"; font-size: 34px; font-weight: 700; }
.step-icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(168,92,255,.3); border-radius: 14px; background: linear-gradient(145deg, rgba(168,92,255,.16), rgba(168,92,255,.03)); color: #cc8cff; font-size: 22px; }
.steps-grid h3 { margin: 20px 0 8px; font-size: 15px; }
.steps-grid p { max-width: 300px; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.7; }

.testimonial-section { display: grid; grid-template-columns: .6fr .6fr 1.8fr; gap: 16px; }
.stat-card, .quote-card { border: 1px solid var(--line); border-radius: 19px; background: linear-gradient(145deg, rgba(23,19,30,.92), rgba(11,10,16,.92)); }
.stat-card { min-height: 188px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; }
.stat-card strong { font-family: "Chakra Petch"; color: #d48cff; font-size: 39px; line-height: 1; }
.stat-card strong span { font-size: 17px; color: #777080; }.stat-card > span { margin-top: 10px; color: var(--muted); font-size: 9px; }
.quote-card { position: relative; padding: 29px 33px; overflow: hidden; }
.quote-mark { position: absolute; right: 27px; top: -23px; color: rgba(168,92,255,.12); font-family: Georgia; font-size: 125px; }
.quote-card blockquote { position: relative; margin: 0 0 25px; max-width: 600px; font-size: 14px; line-height: 1.65; }
.quote-card > div { display: flex; align-items: center; gap: 11px; }
.review-avatar { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, #a85cff, #ea3d7e); font-size: 12px; font-weight: 800; }
.quote-card p { display: flex; flex-direction: column; margin: 0 auto 0 0; font-size: 10px; }.quote-card small { color: var(--muted); margin-top: 3px; font-size: 8px; }.stars { color: #ffb64a; letter-spacing: .08em; font-size: 10px; }

.support-banner { margin-top: 94px; padding: 54px 56px; display: flex; align-items: center; justify-content: space-between; gap: 35px; border: 1px solid rgba(168,92,255,.25); border-radius: 22px; background: radial-gradient(circle at 20% 0, rgba(190,45,100,.22), transparent 45%), radial-gradient(circle at 90% 100%, rgba(108,70,245,.2), transparent 40%), #100d16; overflow: hidden; position: relative; }
.support-banner::before { content: ""; position: absolute; width: 310px; height: 310px; border: 1px solid rgba(255,255,255,.05); border-radius: 50%; right: 14%; top: -160px; box-shadow: 0 0 0 35px rgba(255,255,255,.018), 0 0 0 70px rgba(255,255,255,.014); }
.support-banner > * { position: relative; z-index: 1; }
.support-banner p { max-width: 650px; color: var(--muted); font-size: 11px; }
.support-actions { display: flex; gap: 11px; flex: 0 0 auto; }

.footer { margin-top: 90px; padding: 50px 0 30px; display: grid; grid-template-columns: 2.1fr repeat(3, 1fr); gap: 40px; border-top: 1px solid var(--line); }
.footer > div:first-child p { max-width: 270px; margin: 20px 0 0; color: var(--muted); font-size: 10px; line-height: 1.7; }
.footer h3 { margin: 0 0 18px; font-size: 11px; }
.footer > div:not(:first-child):not(.footer-bottom) { display: flex; flex-direction: column; gap: 11px; }
.footer > div a:not(.brand) { color: var(--muted); font-size: 9px; }.footer > div a:hover { color: #fff; }
.footer-bottom { grid-column: 1 / -1; padding-top: 25px; margin-top: 12px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: #625c68; font-size: 8px; }.footer-bottom b { color: var(--pink); }

.floating-contact { position: fixed; z-index: 30; right: 23px; bottom: 22px; height: 48px; padding: 0 16px 0 8px; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(168,92,255,.44); border-radius: 16px; background: rgba(17,12,23,.9); box-shadow: 0 10px 35px rgba(0,0,0,.4), 0 0 25px rgba(168,92,255,.14); backdrop-filter: blur(14px); }
.floating-contact span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: linear-gradient(135deg, #b25eff, #6651ee); }.floating-contact b { font-size: 10px; }
.modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 20px; }
.modal.open { display: grid; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(4,3,7,.72); backdrop-filter: blur(8px); }
.modal-panel { position: relative; width: min(460px, 100%); padding: 30px; border: 1px solid var(--line-bright); border-radius: 20px; background: #14101b; box-shadow: 0 30px 100px #000; }
.modal-panel h2 { margin: 7px 0 22px; font-family: "Chakra Petch"; font-size: 30px; }
.modal-close { position: absolute; right: 17px; top: 15px; border: 0; background: none; color: #8e8797; font-size: 27px; }
.empty-cart { padding: 27px 15px; text-align: center; border: 1px dashed var(--line); border-radius: 14px; }.empty-cart > span { font-size: 32px; }.empty-cart h3 { margin: 10px 0 5px; font-size: 13px; }.empty-cart p { color: var(--muted); font-size: 9px; }
.cart-row { padding: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border: 1px solid var(--line); border-radius: 11px; margin-bottom: 8px; font-size: 10px; }.cart-row button { border: 0; background: transparent; color: #ff6685; }
.cart-total { margin: 20px 0 12px; display: flex; justify-content: space-between; font-size: 11px; }.cart-total strong { font-size: 17px; }
.toast { position: fixed; z-index: 120; left: 50%; bottom: -100px; transform: translateX(-50%); min-width: 290px; padding: 12px 17px; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(77,229,165,.28); border-radius: 13px; background: rgba(13,19,18,.96); box-shadow: 0 18px 45px rgba(0,0,0,.45); transition: bottom .35s; }.toast.show { bottom: 25px; }.toast > span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; background: rgba(77,229,165,.12); color: var(--green); }.toast p { margin: 0; display: flex; flex-direction: column; font-size: 9px; }.toast small { color: var(--muted); margin-top: 3px; }

@media (max-width: 1100px) {
  .site-header { padding-inline: 24px; gap: 22px; }.main-nav { gap: 18px; }.main-nav a { font-size: 11px; }.login-link { display: none; }
  .hero { grid-template-columns: 1.25fr .85fr; }.hero-content { width: 65%; padding-left: 45px; }.hero-art { right: -8%; }.mini-card { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }.card-art { height: 210px; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 32px, 680px); }
  .site-header { height: 70px; padding-inline: 16px; }.brand-copy { display: none; }.mobile-toggle { display: block; order: 2; }.header-actions { order: 3; }.main-nav { position: fixed; top: 70px; left: 0; right: 0; max-height: 0; overflow: hidden; padding: 0 22px; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: rgba(10,8,14,.98); backdrop-filter: blur(20px); transition: max-height .3s, padding .3s; border-bottom: 1px solid var(--line); }.menu-open .main-nav { max-height: 620px; padding-block: 12px 19px; overflow-y: auto; }.main-nav a { padding: 13px 5px; font-size: 12px; }.mobile-account { display: block; margin-top: 8px; padding: 13px 0 2px; border-top: 1px solid var(--line); }.mobile-account > a { display: block; padding: 12px 5px; }.mobile-user-balance { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; padding: 14px; border: 1px solid rgba(168,92,255,.28); border-radius: 12px; background: rgba(168,92,255,.1); }.mobile-user-balance span { color: #a89eaf; font-size: 10px; }.mobile-user-balance b { color: #fff; font-family: "Chakra Petch"; font-size: 17px; }.mobile-auth-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; padding: 10px 0 2px; }.mobile-auth-buttons a { display: grid; place-items: center; min-height: 44px; padding: 0 10px; border-radius: 11px; font-weight: 800; }.mobile-login-button { border: 1px solid rgba(168,92,255,.45); color: #e1bfff !important; background: rgba(168,92,255,.08); }.mobile-register-button { color: #fff !important; background: linear-gradient(135deg,#bd62ff,#7254f6); }.mobile-logout { color: #ff899b !important; }.mobile-balance-pill { display: inline-flex; align-items: center; min-height: 39px; padding: 0 10px; border: 1px solid rgba(82,223,161,.3); border-radius: 10px; color: #67e5ad; background: rgba(82,223,161,.08); font-family: "Chakra Petch"; font-size: 11px; font-weight: 800; }.main-nav a.active::after { display: none; }.header-actions { margin-left: 0; }.cart-label, .header-actions .button { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 20px; }.hero-card, .wallet-card { min-height: auto; }.hero-card { height: 560px; }.hero-content { width: 73%; padding: 68px 0 50px 39px; }.hero-art { width: 54%; right: -7%; opacity: .8; }.wallet-card { padding: 25px; }
  .section { padding-top: 72px; }.steps-grid { grid-template-columns: 1fr; }.steps-grid article { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
  .testimonial-section { grid-template-columns: 1fr 1fr; }.quote-card { grid-column: 1 / -1; }.support-banner { padding: 42px 35px; flex-direction: column; align-items: flex-start; }
  .footer { grid-template-columns: 1.4fr 1fr 1fr; }.footer > div:nth-child(4) { grid-column: 2; }.footer-bottom { grid-column: 1/-1; }
}

@media (max-width: 560px) {
  .shell { width: calc(100% - 24px); }
  .brand-mark { width: 39px; height: 39px; }.mobile-toggle { width: 39px; height: 39px; }.site-header { gap: 8px; }.header-actions { gap: 6px; }.icon-button { min-height: 39px; padding-inline: 10px; }.cart-count { min-width: 17px; height: 17px; }
  .hero { gap: 13px; }.hero-card { height: 500px; border-radius: 18px; }.hero-content { width: 100%; padding: 55px 24px 30px; }.hero-content::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 330px; z-index: -1; background: linear-gradient(#0c0910 3%, rgba(10,7,12,.78) 65%, transparent); }.hero h1 { font-size: 43px; }.hero-content > p { max-width: 330px; font-size: 12px; }.hero-actions { flex-direction: column; align-items: flex-start; gap: 17px; }.hero-proof { margin-top: 36px; }.hero-art { width: 94%; right: -25%; top: 74%; opacity: .58; }.core { width: 160px; }.core span { font-size: 78px; }
  .wallet-card { padding: 21px 17px; border-radius: 18px; }.panel-heading h2 { font-size: 21px; }.form-row { grid-template-columns: 1fr; gap: 0; }
  .ticker { margin-top: 17px; }.ticker div { height: 46px; }
  .section-heading { align-items: flex-start; flex-direction: column; }.section-heading .outline-button { align-self: stretch; }.service-grid { grid-template-columns: 1fr; }.card-art { height: 205px; }.card-body h3 { font-size: 18px; }.card-body p { font-size: 10px; }
  .steps-grid article { padding: 29px; }.testimonial-section { grid-template-columns: 1fr 1fr; gap: 10px; }.stat-card { min-height: 145px; padding: 19px; }.stat-card strong { font-size: 31px; }.quote-card { padding: 25px 22px; }.quote-card blockquote { font-size: 12px; }.stars { display: none; }
  .support-banner { margin-top: 70px; padding: 34px 24px; }.support-actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }.support-actions a { padding-inline: 11px; }
  .footer { margin-top: 70px; grid-template-columns: 1fr 1fr; gap: 34px 20px; }.footer > div:first-child { grid-column: 1/-1; }.footer > div:nth-child(4) { grid-column: auto; }.footer-bottom { flex-direction: column; gap: 8px; }
  .floating-contact { right: 12px; bottom: 12px; padding-right: 8px; }.floating-contact b { display: none; }.toast { min-width: calc(100% - 24px); }
}

/* Mobile overflow hardening */
.hero, .hero-card, .wallet-card, .hero-content, .panel-heading, .tabs, .tab-panel { min-width: 0; }
.hero-card, .wallet-card { width: 100%; }

@media (max-width: 820px) {
  .mobile-toggle { order: 3; margin-left: 0; }
  .header-actions { order: 2; margin-left: auto; }
}

@media (max-width: 560px) {
  .hero h1 { max-width: 290px; font-size: 37px; line-height: 1.02; overflow-wrap: anywhere; }
  .hero-content { overflow: hidden; }
  .hero-art { right: -38%; }
  .panel-heading { align-items: flex-start; }
  .status-pill { flex: 0 0 auto; white-space: nowrap; }
  .tab { min-width: 0; padding-inline: 3px; }
}

.bank-invoice-form{grid-template-columns:150px 1fr}.bank-invoice-form .qr-placeholder{overflow:hidden}.bank-invoice-form .qr-placeholder img{width:100%;height:100%;object-fit:contain;background:#fff}.bank-create label{display:block;margin:12px 0;color:#8f8796;font-size:9px}.bank-create input{width:100%;margin-top:7px}.bank-invoice-result{grid-column:1/-1;display:grid;grid-template-columns:repeat(2,1fr);gap:8px;margin-top:6px;padding:12px;border:1px solid rgba(82,223,161,.22);border-radius:12px;background:rgba(82,223,161,.05)}.bank-invoice-result[hidden]{display:none}.bank-invoice-result>div{padding:8px;border-radius:9px;background:#ffffff05}.bank-invoice-result span{display:block;color:#8f8796;font-size:8px}.bank-invoice-result b{display:block;margin-top:4px;color:#fff;font-size:10px;word-break:break-all}.bank-transfer-content{grid-column:1/-1;position:relative}.bank-transfer-content b{color:#68e5ae;font-size:13px}.bank-transfer-content button{position:absolute;right:8px;top:8px;padding:5px 8px;border:1px solid #ffffff18;border-radius:7px;color:#fff;background:#ffffff08;font-size:7px;cursor:pointer}.bank-invoice-result small{grid-column:1/-1;color:#8f8796;font-size:7px;line-height:1.6}@media(max-width:560px){.bank-invoice-form{grid-template-columns:1fr}.bank-invoice-form .qr-placeholder{width:180px;height:180px;margin:auto}.bank-invoice-result{grid-template-columns:1fr}}
.site-announcement{position:relative;min-height:40px;padding:10px 56px 10px 20px;display:flex;align-items:center;justify-content:center;text-align:center;background:linear-gradient(90deg,#a85cff13,#d73b9c18,#a85cff13);border-bottom:1px solid #a85cff35;color:#d7b5f5;font-size:11px;line-height:1.6}.site-announcement b{color:#fff}.announcement-close{position:absolute;right:18px;top:50%;width:28px;height:28px;transform:translateY(-50%);border:1px solid #ffffff18;border-radius:50%;color:#bdb4c4;background:#ffffff08;font-size:18px;line-height:1;cursor:pointer}.announcement-close:hover{color:#fff;border-color:#c36dff66;background:#a85cff1c}.site-announcement.is-hiding{opacity:0;transform:translateY(-8px);transition:.25s}@media(max-width:560px){.site-announcement{padding:9px 45px 9px 12px;font-size:9px}.announcement-close{right:10px}}
.notice-popup{position:fixed;inset:0;z-index:180;display:none;place-items:center;padding:18px}.notice-popup.open{display:grid}.notice-popup-backdrop{position:absolute;inset:0;background:rgba(2,3,7,.78);backdrop-filter:blur(9px)}.notice-popup-card{position:relative;z-index:2;width:min(540px,100%);padding:26px;border:1px solid rgba(194,73,255,.55);border-radius:20px;background:radial-gradient(circle at 90% 90%,rgba(143,65,234,.17),transparent 38%),linear-gradient(145deg,#171025,#110d1b);box-shadow:0 28px 110px #000,0 0 42px rgba(178,63,255,.2)}.notice-popup-card header{display:flex;align-items:center;gap:13px;padding-right:30px}.notice-popup-icon{width:43px;height:43px;display:grid;place-items:center;border:1px solid rgba(111,205,255,.25);border-radius:12px;background:linear-gradient(145deg,#21304e,#4b205a);font-size:20px}.notice-popup-card small{display:block;color:#43d5ff;font-size:9px;font-weight:900;letter-spacing:.08em}.notice-popup-card h2{margin:4px 0 0;font-family:"Chakra Petch";font-size:22px}.notice-popup-x{position:absolute;right:18px;top:17px;width:31px;height:31px;border:0;color:#aca3b2;background:transparent;font-size:25px;font-weight:700;cursor:pointer}.notice-popup-x:hover{color:#fff}.notice-popup-content{max-height:310px;overflow:auto;margin:22px 0 18px;padding-bottom:20px;border-bottom:1px solid rgba(255,255,255,.1);color:#ded7e4;font-size:12px;line-height:1.85}.notice-popup-choice{display:flex;align-items:center;gap:10px;color:#a89fac;font-size:10px;cursor:pointer}.notice-popup-choice input{width:17px;height:17px;accent-color:#a958ff}.notice-popup-accept{width:100%;min-height:47px;margin-top:20px;border:0;border-radius:11px;color:#090b13;background:linear-gradient(105deg,#b150ff,#3cc8fa);font-size:11px;font-weight:900;cursor:pointer;box-shadow:0 12px 30px rgba(105,91,255,.25)}.notice-popup-accept:hover{filter:brightness(1.08)}@media(max-width:560px){.notice-popup-card{padding:22px 18px}.notice-popup-card h2{font-size:18px}.notice-popup-content{font-size:10px;max-height:42vh}}