/* ==========================================================================
   Lucius Zen Shop — compact pastel shop design
   Cute, playful, 3D animated with improved readability
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;600&family=Quicksand:wght@700&display=swap');

@font-face { font-family: 'JaoCherry'; src: url('สำเนาของ JaoCherry Thin.ttf') format('truetype'); font-weight: 300; font-display: swap; }

/* ========== DECORATIVE LINES ========== */
.deco-line-top {
    position: relative;
    padding-top: 32px;
}
.deco-line-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pink-300), var(--lavender-200), var(--pink-300), transparent);
}
.deco-line-bottom {
    position: relative;
    padding-bottom: 32px;
}
.deco-line-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lavender-200), var(--pink-300), var(--lavender-200), transparent);
}
.deco-line-both {
    position: relative;
    padding-top: 32px;
    padding-bottom: 32px;
}
.deco-line-both::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pink-300), var(--lavender-200), var(--pink-300), transparent);
}
.deco-line-both::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lavender-200), var(--pink-300), var(--lavender-200), transparent);
}

:root {
    /* typography */
    --font: 'Prompt', 'Mali', system-ui, sans-serif;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-bold: 600;

    /* pastel pink palette */
    --ink: #2d2d2d;
    --ink-soft: #666;
    --ink-faint: #999;
    --paper: #ffffff;
    --cream: #fffbf7;
    --pink-50: #fff0f6;
    --pink-100: #fce4ec;
    --pink-200: #f9dcec;
    --pink-300: #f9b4c9;
    --pink-400: #f59ab6;
    --pink-500: #f287a8;
    --pink-600: #e91e63;
    --pink-700: #c2185b;

    /* supporting pastels */
    --peach: #ffd4a3;
    --lavender: #e6d5f7;
    --mint: #c8f5e8;
    --sky: #d4e8ff;
    --yellow: #fff59d;

    /* surface */
    --line: #f9b4c9;
    --line-soft: #fce4ec;
    --bg-raised: #f9dcec;
    --bg-muted: #fff0f6;

    /* shadows */
    --sh-1: rgba(249, 180, 201, 0.15) 0px 8px 18px 0px;
    --sh-2: rgba(245, 154, 182, 0.25) 0px 10px 25px 0px;
    --sh-3: rgba(245, 154, 182, 0.2) 0px 18px 45px 0px;

    /* radii */
    --r-sm: 32px;
    --r-md: 40px;
    --r-lg: 48px;
    --r-pill: 999px;

    /* spacing */
    --sp-1: 8px;
    --sp-2: 16px;
    --sp-3: 24px;
    --sp-4: 32px;
    --sp-5: 48px;
    --sp-6: 64px;

    /* motion */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --dur: 280ms;

    /* danger */
    --danger: #d32f2f;
    --danger-bg: #ffebee;

    /* brand colors */
    --brand-line: #06c755;
    --brand-fb: #1877f2;
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-weight: var(--fw-regular);
    font-size: clamp(14px, 2.2vw, 16px);
    line-height: 1.8;
    color: var(--ink);
    background: var(--cream);
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
    padding-bottom: calc(49px + env(safe-area-inset-bottom));
}

/* animated gradient background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 15% 25%, rgba(255, 240, 246, 0.4) 0%, transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(230, 213, 247, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 50% 85%, rgba(255, 212, 163, 0.25) 0%, transparent 38%),
        radial-gradient(circle at 90% 75%, rgba(200, 245, 232, 0.25) 0%, transparent 35%),
        var(--cream);
    pointer-events: none;
    animation: bgShift 20s ease-in-out infinite alternate;
}

@keyframes bgShift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-2%, 3%) scale(1.05); }
}

/* floating anime GIF decorations - positioned to not overlap text */
.anime-float {
    position: fixed;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
    border-radius: 24px;
    box-shadow: var(--sh-1);
}
.anime-float.a1 {
    top: 5%;
    right: 3%;
    width: clamp(100px, 13vw, 160px);
    animation: float3d1 8s ease-in-out infinite;
}
.anime-float.a2 {
    bottom: 8%;
    left: 2%;
    width: clamp(110px, 15vw, 180px);
    animation: float3d2 10s ease-in-out infinite;
}
.anime-float.a3 {
    top: 55%;
    right: 1%;
    width: clamp(85px, 11vw, 140px);
    animation: float3d3 12s ease-in-out infinite;
}
.anime-float.a4 {
    top: 45%;
    left: 1%;
    width: clamp(90px, 12vw, 150px);
    animation: float3d4 9s ease-in-out infinite;
}

@keyframes float3d1 {
    0%, 100% { transform: translate3d(0, 0, 0) rotateY(0deg) rotateX(0deg); }
    50% { transform: translate3d(12px, -18px, 20px) rotateY(5deg) rotateX(3deg); }
}
@keyframes float3d2 {
    0%, 100% { transform: translate3d(0, 0, 0) rotateY(0deg) rotateX(0deg); }
    50% { transform: translate3d(-15px, 20px, 20px) rotateY(-5deg) rotateX(-4deg); }
}
@keyframes float3d3 {
    0%, 100% { transform: translate3d(0, 0, 0) rotateY(0deg); }
    50% { transform: translate3d(10px, 15px, 15px) rotateY(4deg); }
}
@keyframes float3d4 {
    0%, 100% { transform: translate3d(0, 0, 0) rotateY(0deg); }
    50% { transform: translate3d(-12px, -12px, 18px) rotateY(-4deg); }
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul, ol { list-style: none; }
:focus-visible { outline: 3px solid var(--pink-500); outline-offset: 4px; border-radius: 12px; }

/* wrap */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4.5vw, 40px); }

/* sr-only */
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* icons */
.ico { width: 24px; height: 24px; flex-shrink: 0; }
.ico-lg { width: 40px; height: 40px; }
.ico-xl { width: 56px; height: 56px; }

/* game logos */
.game-logo { height: 36px; width: auto; object-fit: contain; }
.game-logo-lg { height: 52px; width: auto; object-fit: contain; }

/* ---------- typography ---------- */
.h1 {
    font-size: clamp(36px, 7.5vw, 64px);
    line-height: 1.2;
    font-weight: var(--fw-bold);
    letter-spacing: -.01em;
    color: var(--ink);
    text-shadow:
        0 2px 4px rgba(255, 255, 255, 0.8),
        0 3px 8px rgba(211, 47, 47, 0.2);
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 50%, #b71c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(211, 47, 47, 0.25));
    text-align: center;
    margin: 0 auto;
}
.h2 {
    font-size: clamp(28px, 5.5vw, 48px);
    line-height: 1.3;
    font-weight: var(--fw-bold);
    letter-spacing: 0;
}
.h3 {
    font-size: clamp(20px, 4vw, 32px);
    line-height: 1.35;
    font-weight: var(--fw-bold);
}
.lede {
    font-size: clamp(14px, 2.2vw, 16px);
    color: var(--ink-soft);
    line-height: 1.75;
    font-weight: var(--fw-light);
}

/* ---------- section ---------- */
.section { padding: clamp(56px, 10vw, 100px) 0; position: relative; }
.section-head {
    max-width: 720px;
    margin: 0 auto clamp(36px, 7vw, 60px);
    text-align: center;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--pink-100);
    color: var(--pink-700);
    padding: 12px 28px;
    border-radius: var(--r-pill);
    font-size: clamp(15px, 2.5vw, 18px);
    font-weight: var(--fw-bold);
    margin-bottom: 24px;
    box-shadow: var(--sh-1);
    animation: bounce3d 2s ease-in-out infinite;
}

@keyframes bounce3d {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.02); }
}

/* ---------- header ---------- */
.site-head {
    background: rgba(249, 220, 236, 0.85);
    box-shadow: var(--sh-2);
    position: sticky;
    top: 0;
    z-index: 900;
    backdrop-filter: blur(12px);
}
.head-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
    padding-top: var(--sp-3);
    padding-bottom: var(--sp-3);
}
.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform var(--dur) var(--ease);
}
.brand:hover { transform: translateY(-4px) scale(1.02); }
.brand-mark {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--pink-300), var(--pink-500));
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: var(--sh-2);
    overflow: hidden;
}
.brand-name {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 700;
    color: var(--pink-700);
}
.brand-sub {
    font-size: clamp(13px, 2.2vw, 16px);
    color: var(--ink-soft);
    font-weight: var(--fw-light);
}

.burger {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: var(--paper);
    color: var(--pink-600);
    box-shadow: var(--sh-1);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.burger:hover { transform: scale(1.1) rotate(5deg); box-shadow: var(--sh-2); }

.nav-desk {
    display: none;
    gap: var(--sp-1);
}
.nav-desk a {
    padding: 14px 24px;
    border-radius: var(--r-pill);
    font-weight: var(--fw-bold);
    font-size: clamp(16px, 2.4vw, 19px);
    color: var(--ink);
    transition: all var(--dur) var(--ease);
}
.nav-desk a:hover {
    background: var(--pink-200);
    color: var(--pink-700);
    transform: translateY(-2px);
}
.nav-desk a[aria-current] {
    background: var(--pink-200);
    color: var(--pink-700);
}

@media (min-width: 900px) {
    .burger { display: none; }
    .nav-desk {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 1;
        gap: 4px;
    }
    .site-head { min-height: 104px; }
    .head-inner {
        min-height: 104px;
        gap: clamp(18px, 2.2vw, 34px);
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .brand { flex: 0 0 auto; gap: 12px; }
    .brand-mark { width: 58px; height: 58px; border-radius: 18px; }
    .brand-name { font-size: 24px; line-height: 1.15; }
    .brand-sub { margin-top: 4px; font-size: 12px; white-space: nowrap; }
    .nav-desk a {
        padding: 11px clamp(10px, 1.15vw, 17px);
        font-size: clamp(13px, 1.05vw, 15px);
        line-height: 1.35;
        text-align: center;
        white-space: nowrap;
    }
}

/* ---------- drawer (mobile menu) ---------- */
.drawer-veil {
    position: fixed;
    inset: 0;
    z-index: 950;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur) var(--ease);
}
.drawer-veil.show { opacity: 1; pointer-events: auto; }

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 88vw);
    z-index: 960;
    background: var(--paper);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    padding: var(--sp-4) var(--sp-3);
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
    transform: translateX(100%);
    transition: transform 320ms var(--ease);
}
.drawer.open { transform: translateX(0); }

.drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--sp-3);
    border-bottom: 2px solid var(--line-soft);
    margin-bottom: var(--sp-2);
}
.drawer-title {
    font-size: 26px;
    font-weight: var(--fw-bold);
    color: var(--pink-700);
}
.drawer-top button {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--pink-50);
    color: var(--pink-600);
    display: grid;
    place-items: center;
    transition: background var(--dur) var(--ease);
}
.drawer-top button:hover { background: var(--pink-100); }

.drawer a {
    padding: 18px 20px;
    border-radius: var(--r-sm);
    font-weight: var(--fw-bold);
    font-size: clamp(17px, 2.8vw, 20px);
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.drawer a:hover,
.drawer a[aria-current] {
    background: var(--pink-100);
    color: var(--pink-700);
}

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: var(--r-pill);
    font-weight: var(--fw-bold);
    font-size: clamp(16px, 2.5vw, 20px);
    background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
    color: #fff;
    box-shadow: var(--sh-2);
    transition: all var(--dur) var(--ease);
}
.btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--sh-3);
}

.btn-ghost {
    background: var(--paper);
    color: var(--pink-600);
    border: 2px solid var(--pink-300);
}
.btn-ghost:hover {
    background: var(--pink-50);
}

.btn-line {
    background: linear-gradient(135deg, #06c755, #05a647);
    color: #fff;
}

.btn-peach {
    background: linear-gradient(135deg, var(--peach), #ffb366);
    color: var(--ink);
}

.btn-block { width: 100%; }

/* chips */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: var(--sp-3);
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: var(--r-pill);
    background: var(--pink-50);
    border: 2px solid var(--pink-200);
    font-size: clamp(14px, 2.2vw, 17px);
    font-weight: var(--fw-bold);
    color: var(--pink-700);
    box-shadow: var(--sh-1);
    transition: transform var(--dur) var(--ease);
}
.chip:hover {
    transform: translateY(-3px) scale(1.05);
}

/* ---------- hero ---------- */
.hero {
    padding: clamp(48px, 9vw, 90px) 0 clamp(56px, 10vw, 100px);
    position: relative;
}
.hero-grid {
    display: grid;
    gap: clamp(40px, 7vw, 60px);
    align-items: center;
    text-align: center;
}
.hero-grid > * {
    margin: 0 auto;
}
.hero-lede {
    font-size: clamp(15px, 2.7vw, 19px);
    line-height: 1.8;
    color: var(--ink);
    margin-top: var(--sp-3);
    font-weight: var(--fw-regular);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: clamp(20px, 4vw, 32px);
    border-radius: var(--r-md);
    border: 2px solid rgba(249, 180, 201, 0.3);
    box-shadow: var(--sh-2);
}
.hero-lede strong {
    color: var(--pink-700);
    font-weight: var(--fw-bold);
    display: block;
    margin-top: 12px;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: var(--sp-4);
}
.hero-cta .btn {
    min-width: 180px;
    padding: 18px 32px;
    font-size: clamp(15px, 2.8vw, 17px);
    font-weight: var(--fw-bold);
    box-shadow: var(--sh-2);
    transition: all var(--dur) var(--ease);
    border: 2px solid transparent;
}
.hero-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-3);
}
.hero-cta .btn:active {
    transform: translateY(-1px);
}

.hero-art {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}
.hero-art-frame {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-3);
    border: 4px solid var(--pink-200);
    animation: float3dCard 6s ease-in-out infinite;
}
@keyframes float3dCard {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-12px) rotateY(2deg); }
}
.hero-art-frame img {
    width: 100%;
    height: auto;
}

.hero-badge {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    border-radius: 22px;
    background: var(--paper);
    box-shadow: var(--sh-2);
    text-align: center;
    border: 2px solid var(--pink-200);
}
.hero-badge strong {
    font-size: clamp(14px, 2.4vw, 17px);
    font-weight: var(--fw-bold);
}
.hero-badge span {
    font-size: clamp(12px, 2vw, 14px);
    color: var(--ink-soft);
}
.hero-badge-1 {
    top: 10%;
    left: -4%;
    color: var(--pink-600);
    animation: bob3d 4.5s ease-in-out infinite;
}
.hero-badge-2 {
    bottom: 14%;
    right: -6%;
    color: var(--peach);
    animation: bob3d 4.5s ease-in-out 1s infinite;
}
.hero-badge-3 {
    bottom: -2%;
    left: 12%;
    color: var(--lavender);
    animation: bob3d 4.5s ease-in-out 2s infinite;
}
@keyframes bob3d {
    0%, 100% { transform: translateY(0) scale(1) rotateZ(0deg); }
    50% { transform: translateY(-14px) scale(1.05) rotateZ(3deg); }
}

@media (min-width: 800px) {
    .hero-grid { grid-template-columns: 1.2fr 1fr; }
}

/* ---------- ticker ---------- */
.ticker {
    background: var(--pink-200);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    border-top: 2px solid var(--pink-300);
    border-bottom: 2px solid var(--pink-300);
}
.ticker-track {
    display: flex;
    gap: 52px;
    animation: marquee 32s linear infinite;
    white-space: nowrap;
}
.ticker-track span {
    font-weight: var(--fw-bold);
    color: var(--pink-700);
    font-size: clamp(15px, 2.5vw, 19px);
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- services minimal ---------- */
.services-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: var(--sp-5);
    margin-top: var(--sp-6);
}
.service-minimal {
    background: var(--paper);
    border: 2px dashed var(--pink-300);
    border-radius: var(--r-lg);
    padding: clamp(24px, 4vw, 32px);
    position: relative;
    transition: all var(--dur) var(--ease);
}
.service-minimal::before {
    content: '✦';
    position: absolute;
    top: -14px;
    left: 24px;
    background: var(--paper);
    padding: 0 12px;
    font-size: 18px;
    color: var(--pink-500);
}
.service-minimal:hover {
    transform: translateY(-4px);
    border-color: var(--pink-500);
    box-shadow: var(--sh-2);
}
.service-minimal h3 {
    color: var(--pink-700);
    margin-bottom: var(--sp-3);
    font-size: clamp(18px, 3.5vw, 20px);
}
.service-desc {
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: var(--sp-4);
    padding-bottom: var(--sp-4);
    border-bottom: 1px dashed var(--pink-200);
}
.service-details {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}
.service-shop-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: var(--sp-4);
    padding: 12px 14px;
    border: 1px solid rgba(118, 103, 238, .48);
    border-radius: 12px;
    color: #5145b8;
    background: linear-gradient(135deg, rgba(229, 247, 255, .94), rgba(238, 232, 255, .94));
    box-shadow: 0 0 18px rgba(126, 213, 255, .18), inset 0 1px 0 rgba(255,255,255,.9);
    font-size: 14px;
    font-weight: var(--fw-bold);
    text-decoration: none;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.service-shop-link .ico { width: 18px; height: 18px; }
.service-shop-link:hover {
    transform: translateY(-3px);
    border-color: rgba(118, 103, 238, .8);
    box-shadow: 0 8px 24px rgba(100, 152, 255, .2), 0 0 22px rgba(151, 124, 255, .2);
}
.zenzen-installment-rules {
    width: min(100%, 920px);
    margin: 28px auto 0;
    padding: clamp(22px, 4vw, 34px);
    border: 2px solid rgba(156, 197, 255, .78);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(235,247,255,.84) 52%, rgba(242,236,255,.9));
    box-shadow: 0 12px 30px rgba(100,152,255,.13), 0 0 24px rgba(182,139,255,.12);
}
.zenzen-installment-rules h3 {
    margin: 0;
    color: #302969;
    font-size: clamp(22px, 3vw, 30px);
}
.zenzen-rules-intro {
    margin: 5px 0 18px;
    color: #6656dd;
    font-weight: var(--fw-bold);
}
.zenzen-installment-rules ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.zenzen-installment-rules li {
    position: relative;
    padding: 10px 12px 10px 32px;
    border-bottom: 1px dashed rgba(118,103,238,.2);
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.65;
}
.zenzen-installment-rules li::before {
    content: '✦';
    position: absolute;
    left: 8px;
    top: 10px;
    color: #7667ee;
    font-weight: 700;
}
.zenzen-installment-rules li.rule-warning {
    color: #8b4f62;
    background: rgba(255,241,246,.62);
    border-radius: 9px;
}
.zenzen-installment-rules li.rule-warning::before {
    content: '!';
    display: grid;
    place-items: center;
    width: 17px;
    height: 17px;
    top: 12px;
    border: 1px solid #d9859d;
    border-radius: 50%;
    color: #bd516f;
    font-size: 11px;
}
@media (max-width: 600px) {
    .zenzen-installment-rules { margin-top: 20px; padding: 18px 14px; border-radius: 16px; }
    .zenzen-installment-rules h3 { font-size: 21px; }
    .zenzen-rules-intro { font-size: 13px; margin-bottom: 12px; }
    .zenzen-installment-rules ul { gap: 4px; }
    .zenzen-installment-rules li { padding: 8px 8px 8px 27px; font-size: 12px; line-height: 1.55; }
    .zenzen-installment-rules li::before { left: 6px; top: 8px; }
    .zenzen-installment-rules li.rule-warning::before { top: 10px; }
}
.detail-item {
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
}
.detail-item strong {
    color: var(--pink-700);
    font-size: clamp(14px, 2.8vw, 16px);
}
.detail-item span {
    color: var(--ink-soft);
    font-size: clamp(13px, 2.5vw, 15px);
    line-height: 1.6;
}
.service-buy-banner {
    position: relative;
    margin-top: 18px;
    overflow: hidden;
    cursor: pointer;
    border: 1px dashed rgba(118, 103, 238, .62);
    border-radius: 14px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 0 18px rgba(143,216,255,.18);
}
.service-buy-banner img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform var(--dur) var(--ease);
}
.service-buy-banner:hover img { transform: scale(1.025); }
.service-buy-banner span {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 6px 9px;
    border-radius: 8px;
    color: #5145b8;
    background: rgba(255,255,255,.92);
    box-shadow: var(--sh-1);
    font-size: 11px;
    font-weight: var(--fw-bold);
}

/* ---------- tiles (services) ---------- */
.tiles {
    display: grid;
    gap: clamp(24px, 4.5vw, 32px);
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.tile {
    background: var(--paper);
    border: 3px solid var(--pink-200);
    border-radius: var(--r-lg);
    padding: var(--sp-4);
    box-shadow: var(--sh-1);
    transition: all var(--dur) var(--ease);
}
.tile:hover {
    transform: translateY(-8px) scale(1.02) rotateX(2deg);
    box-shadow: var(--sh-3);
    border-color: var(--pink-400);
}
.tile-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: var(--sp-3);
}
.tile-ico {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    animation: spin3d 8s ease-in-out infinite;
}
@keyframes spin3d {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}
.tile-ico.pink { background: linear-gradient(135deg, var(--pink-300), var(--pink-500)); color: #fff; }
.tile-ico.peach { background: linear-gradient(135deg, var(--peach), #ffb366); color: var(--ink); }
.tile-ico.lavender { background: linear-gradient(135deg, var(--lavender), #d4b9f7); color: var(--ink); }
.tile-ico.mint { background: linear-gradient(135deg, var(--mint), #a8e6d1); color: var(--ink); }
.tile h3 {
    font-size: clamp(22px, 3.6vw, 28px);
    font-weight: var(--fw-bold);
    color: var(--pink-700);
}
.tile p {
    color: var(--ink-soft);
    line-height: 1.8;
    font-size: clamp(14px, 2.2vw, 16px);
}
.tile strong { color: var(--ink); }

/* bullet list */
.bullet-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: var(--sp-3);
}
.bullet-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 16px;
    background: var(--pink-50);
    border-radius: var(--r-sm);
    border-left: 4px solid var(--pink-400);
    transition: transform var(--dur) var(--ease);
}
.bullet-list li:hover {
    transform: translateX(6px);
}
.bullet-list .ico {
    color: var(--pink-600);
    flex-shrink: 0;
    margin-top: 2px;
}
.bullet-list span {
    line-height: 1.75;
    font-size: clamp(14px, 2.2vw, 16px);
}

/* ---------- image cards (like Jayleen) ---------- */
.image-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--sp-5);
    margin-top: var(--sp-6);
}
.image-card {
    position: relative;
    animation: float 3s ease-in-out infinite;
}
.image-card:nth-child(2) { animation-delay: 0.5s; }
.image-card:nth-child(3) { animation-delay: 1s; }
.image-card:nth-child(4) { animation-delay: 1.5s; }
.image-wrapper {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--sh-2);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    border: 3px solid var(--pink-200);
}
.image-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--sh-3);
}
.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}
.credit-card {
    align-self: center;
    animation: creditFloat 4.8s ease-in-out infinite;
}
.credit-card .image-wrapper {
    border: 2px dashed rgba(118, 103, 238, .72);
    border-radius: 18px;
    padding: 6px;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(232,243,255,.88), rgba(242,236,255,.9));
    box-shadow: 0 12px 28px rgba(86,71,201,.16), 0 0 26px rgba(143,216,255,.25);
}
.credit-link { display: block; color: inherit; text-decoration: none; }
.credit-card .image-wrapper::before {
    content: '';
    position: absolute;
    inset: 5px;
    z-index: 1;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,.86);
    border-radius: 13px;
}
.credit-card .image-wrapper img {
    height: 148px;
    object-fit: cover;
    object-position: center;
    border-radius: 13px;
}
.credit-card .card-title-tag {
    z-index: 2;
    bottom: 12px;
    padding: 7px 14px;
    border: 1px solid rgba(118,103,238,.28);
    color: #5145b8;
    background: rgba(255,255,255,.94);
    box-shadow: 0 5px 15px rgba(86,71,201,.16);
    font-size: 13px;
}
.credit-card .sticker { color: #7667ee; }
.credit-card:hover .image-wrapper {
    transform: translateY(-5px) rotate(-1deg);
    box-shadow: 0 18px 36px rgba(86,71,201,.22), 0 0 34px rgba(143,216,255,.34);
}
@keyframes creditFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    35% { transform: translateY(-5px) rotate(.35deg); }
    70% { transform: translateY(2px) rotate(-.35deg); }
}
@media (max-width: 600px) {
    .credit-card .image-wrapper img { height: 118px; }
    .credit-card .card-title-tag { bottom: 10px; font-size: 12px; padding: 6px 11px; }
}
.promo-image-card {
    width: min(100%, 760px);
    margin: var(--sp-6) auto 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px dashed var(--pink-400);
    border-radius: var(--r-lg);
    background: var(--paper);
    box-shadow: var(--sh-2);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.promo-image-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-3);
}
.promo-image-card img {
    display: block;
    width: 100%;
    height: auto;
}
.promo-image-caption {
    padding: 12px 16px;
    color: var(--ink-soft);
    background: rgba(255, 255, 255, .92);
    text-align: center;
    font-size: clamp(13px, 2.3vw, 15px);
}
.topup-pricing {
    width: min(100%, 820px);
    margin: 20px auto 0;
    overflow: hidden;
    border: 1px solid rgba(156, 197, 255, .82);
    border-radius: 18px;
    background: rgba(255,255,255,.82);
    box-shadow: var(--sh-2), 0 0 28px rgba(143,216,255,.16);
}
.topup-pricing-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 18px;
    color: #5145b8;
    background: linear-gradient(135deg, rgba(216,233,255,.92), rgba(233,221,255,.9));
    border-bottom: 1px solid rgba(156,197,255,.72);
}
.topup-pricing-head span { font-size: 20px; font-weight: var(--fw-bold); }
.topup-pricing-head strong { color: var(--ink-soft); font-size: 14px; }
.topup-rate-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rate-panel { padding: 16px 18px 18px; }
.rate-panel + .rate-panel { border-left: 1px dashed rgba(118,103,238,.38); }
.rate-title { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; color: #5b4dca; }
.rate-title img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 0 12px rgba(126,213,255,.32);
}
.rate-title h3 { font-size: 18px; }
.rate-list { display: grid; gap: 5px; }
.rate-list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 9px;
    color: var(--ink-soft);
    background: rgba(245,249,255,.8);
    font-size: 14px;
}
.rate-list > div:nth-child(even) { background: rgba(242,236,255,.66); }
.rate-list strong { color: #5145b8; white-space: nowrap; }
.topup-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    margin: 0 18px 18px;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #54dca3, #45bde4 50%, #8179f5);
    box-shadow: 0 8px 22px rgba(69,189,228,.24);
    font-size: 14px;
    font-weight: var(--fw-bold);
}
.topup-contact .ico { width: 21px; height: 21px; }
@media (max-width: 600px) {
    .topup-pricing-head { align-items: flex-start; flex-direction: column; gap: 2px; padding: 13px 14px; }
    .topup-pricing-head span { font-size: 18px; }
    .topup-pricing-head strong { font-size: 12px; }
    .topup-rate-grid { grid-template-columns: 1fr; }
    .rate-panel { padding: 14px; }
    .rate-panel + .rate-panel { border-left: 0; border-top: 1px dashed rgba(118,103,238,.38); }
    .topup-contact { margin: 0 14px 14px; }
}

.payment-mobile-grid { display: block; }
@media (max-width: 600px) {
    .payment-mobile-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .payment-mobile-grid > .section { width: 100%; min-width: 0; padding: 30px 0; }
    .payment-mobile-grid > .payment-mobile-methods { order: 1; }
    .payment-mobile-grid > .payment-mobile-warning { order: 2; padding-top: 12px; }
    .payment-mobile-grid .wrap { padding: 0 16px; }
    .payment-mobile-grid .section-head { margin-bottom: 18px; text-align: left; }
    .payment-mobile-grid .section-head .h2 { font-size: 25px; line-height: 1.25; }
    .payment-mobile-grid .section-head .lede { font-size: 13px; line-height: 1.55; }
    .payment-mobile-grid .pay-grid { display: flex; flex-direction: column; gap: 16px; }
    .payment-mobile-grid .pay-card { padding: 12px; border: 1px solid rgba(156,197,255,.82); border-radius: 16px; }
    .payment-mobile-grid .pay-card:hover { transform: none; }
    .payment-mobile-grid .pay-kind { gap: 8px; padding: 11px 10px; margin-bottom: 12px; border-radius: 10px; font-size: 14px; }
    .payment-mobile-grid .pay-kind .ico { width: 18px; height: 18px; }
    .payment-mobile-grid .qr-frame { border-width: 2px; border-radius: 10px; }
    .payment-mobile-grid .qr-tip { display: none; }
    .payment-mobile-grid .qr-tools { gap: 4px; }
    .payment-mobile-grid .qr-tools button { gap: 5px; padding: 9px 6px; font-size: 12px; }
    .payment-mobile-grid .qr-tools .ico { width: 15px; height: 15px; }
    .payment-mobile-grid .kbank-header { margin: -12px -12px 12px; padding: 14px 10px; border-radius: 16px 16px 0 0; gap: 7px; }
    .payment-mobile-grid .bank-logo { height: 28px; }
    .payment-mobile-grid .wallet-logo { width: 40px; height: 25px; }
    .payment-mobile-grid .wallet-header span { font-size: 14px; }
    .payment-mobile-grid .kbank-header span { margin-left: 0 !important; font-size: 14px !important; }
    .payment-mobile-grid .acct { gap: 7px; padding: 11px; }
    .payment-mobile-grid .acct-label { font-size: 12px; }
    .payment-mobile-grid .acct-no { font-size: 24px; letter-spacing: .02em; }
    .payment-mobile-grid .acct-name { font-size: 12px; line-height: 1.45; overflow-wrap: anywhere; }
    .payment-mobile-grid .copy-btn { gap: 5px; margin-top: 10px; padding: 10px 8px; font-size: 12px; }
    .payment-mobile-grid .copy-btn .ico { width: 15px; height: 15px; }
    .payment-mobile-grid .pay-card > p { margin-top: 12px !important; font-size: 12px !important; line-height: 1.55; overflow-wrap: anywhere; }
    .payment-mobile-grid .wallet-note { margin-top: 12px !important; font-size: 11px !important; }
    .payment-mobile-grid .slip { padding: 18px 16px; border: 1px solid rgba(232,140,157,.68); border-radius: 16px; background: rgba(255,247,249,.94); }
    .payment-mobile-grid .slip-head { gap: 8px; }
    .payment-mobile-grid .slip-head .ico { width: 21px; height: 21px; }
    .payment-mobile-grid .slip-head h3 { font-size: 18px; line-height: 1.3; }
    .payment-mobile-grid .slip-lede { margin: 10px 0 14px; font-size: 13px; line-height: 1.6; }
    .payment-mobile-grid .slip-list { gap: 9px; }
    .payment-mobile-grid .slip-list li { gap: 8px; padding: 8px 0; }
    .payment-mobile-grid .slip-list .ico { width: 18px; height: 18px; }
    .payment-mobile-grid .slip-list span { font-size: 12px; line-height: 1.55; }
}
.account-check-grid {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
    gap: clamp(22px, 4vw, 38px);
    width: min(100%, 960px);
    margin: 0 auto;
    align-items: center;
}
.account-check-media {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 2px dashed rgba(118, 103, 238, .62);
    border-radius: 18px;
    padding: 8px;
    background: rgba(255,255,255,.86);
    box-shadow: var(--sh-2), 0 0 28px rgba(143,216,255,.2);
}
.account-check-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}
.account-check-media > span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 8px 12px;
    border-radius: 10px;
    color: #5145b8;
    background: rgba(255,255,255,.92);
    box-shadow: var(--sh-1);
    font-size: 13px;
    font-weight: var(--fw-bold);
}
.account-check-details {
    display: grid;
    gap: 10px;
}
.check-detail {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 14px 16px;
    border: 1px solid rgba(156,197,255,.7);
    border-radius: 14px;
    background: rgba(255,255,255,.76);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.check-detail > .ico {
    width: 24px;
    height: 24px;
    margin: 3px auto 0;
    color: #6656dd;
    filter: drop-shadow(0 0 7px rgba(143,216,255,.65));
}
.check-detail strong,
.check-detail span {
    display: block;
}
.check-detail strong {
    color: var(--ink);
    font-size: 15px;
    margin-bottom: 3px;
}
.check-detail span {
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.55;
}
.account-check-note {
    color: var(--ink-soft);
    padding: 12px 14px;
    border-left: 3px solid #8179f5;
    background: rgba(242,236,255,.7);
    font-size: 13px;
    line-height: 1.6;
}
@media (max-width: 760px) {
    .account-check-grid { grid-template-columns: 1fr; }
    .account-check-media { width: min(100%, 520px); margin: 0 auto; }
}
.card-title-tag {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: var(--fw-bold);
    font-size: clamp(14px, 2.5vw, 16px);
    color: var(--pink-700);
    box-shadow: var(--sh-2);
    display: flex;
    align-items: center;
    gap: 8px;
}
.sticker {
    position: absolute;
    font-size: 24px;
    pointer-events: none;
    animation: stickerFloat 2s ease-in-out infinite;
    z-index: 2;
}
.sticker-1 { top: -12px; left: -12px; }
.sticker-2 { top: -8px; right: -8px; animation-delay: 0.3s; }
.sticker-3 { bottom: 30%; right: -12px; animation-delay: 0.6s; }
.sticker-4 { bottom: -8px; left: -8px; animation-delay: 0.9s; }
@keyframes stickerFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

/* ---------- payment banner (no emoji) ---------- */
.pay-banner {
    background: linear-gradient(135deg, var(--pink-100) 0%, var(--lavender-100) 100%);
    padding: var(--sp-7) 0;
    margin: var(--sp-8) 0;
}
.pay-banner-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--sp-4);
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}
.pay-banner-card {
    background: var(--paper);
    border: 3px solid var(--pink-200);
    border-radius: var(--r-lg);
    padding: clamp(20px, 4vw, 28px);
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 24px);
    box-shadow: var(--sh-2);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.pay-banner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-3);
}
.pay-banner-card svg.ico {
    flex-shrink: 0;
    color: var(--pink-600);
}
.pay-banner-text {
    flex: 1;
}
.pay-banner-text strong {
    display: block;
    font-size: clamp(16px, 3vw, 19px);
    font-weight: var(--fw-bold);
    color: var(--ink);
    margin-bottom: 6px;
}
.pay-banner-text span {
    font-size: clamp(14px, 2.5vw, 16px);
    color: var(--ink-soft);
}
.pay-banner-warn {
    border-color: var(--orange-300);
    background: linear-gradient(135deg, var(--paper) 0%, var(--orange-50) 100%);
    transition: all var(--dur) var(--ease);
}
.pay-banner-warn:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-3);
    border-color: var(--orange-600);
}
.pay-banner-warn svg.ico {
    color: var(--orange-600);
}
.pay-banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--pink-600) 0%, var(--pink-700) 100%);
    color: white;
    font-weight: var(--fw-bold);
    font-size: clamp(15px, 2.8vw, 17px);
    border-radius: 999px;
    text-decoration: none;
    box-shadow: var(--sh-2);
    transition: all var(--dur) var(--ease);
    align-self: center;
    margin-top: var(--sp-2);
}
.pay-banner-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--sh-3);
    background: linear-gradient(135deg, var(--pink-700) 0%, var(--pink-800) 100%);
}

.acc {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.acc-item {
    background: var(--paper);
    border: 2px solid var(--pink-200);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-1);
    transition: all var(--dur) var(--ease);
}
.acc-item:hover {
    transform: translateX(4px);
}
.acc-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 26px;
    text-align: left;
    font-weight: var(--fw-bold);
    font-size: clamp(17px, 2.8vw, 20px);
    color: var(--ink);
    transition: background var(--dur) var(--ease);
}
.acc-btn:hover { background: var(--pink-50); }
.acc-btn[aria-expanded="true"] { background: var(--pink-100); color: var(--pink-700); }
.acc-btn .ico-lead { color: var(--pink-500); flex-shrink: 0; }
.acc-btn .ico-chev {
    margin-left: auto;
    transition: transform var(--dur) var(--ease);
    color: var(--pink-400);
}
.acc-btn[aria-expanded="true"] .ico-chev { transform: rotate(180deg); }

.acc-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 320ms var(--ease);
}
.acc-btn[aria-expanded="true"] + .acc-panel { grid-template-rows: 1fr; }
.acc-panel > div {
    overflow: hidden;
}
.acc-panel p {
    padding: 0 26px 24px 66px;
    color: var(--ink-soft);
    line-height: 1.8;
    font-size: clamp(14px, 2.2vw, 16px);
}

.acc-item.warn {
    border-color: var(--danger);
}
.acc-item.warn .acc-btn .ico-lead { color: var(--danger); }
.acc-item.warn .acc-btn[aria-expanded="true"] { background: var(--danger-bg); color: var(--danger); }

/* ---------- flow (steps) ---------- */
.flow {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.flow-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--paper);
    border: 2px solid var(--pink-200);
    border-radius: var(--r-md);
    padding: 24px;
    box-shadow: var(--sh-1);
    transition: all var(--dur) var(--ease);
}
.flow-item:hover {
    transform: translateX(8px) scale(1.01);
    box-shadow: var(--sh-2);
}
.flow-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-300), var(--pink-500));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: var(--fw-bold);
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: var(--sh-1);
}
.flow-item.accent .flow-num {
    background: linear-gradient(135deg, var(--peach), #ff9966);
    color: var(--ink);
    animation: pulse3d 2.5s ease-in-out infinite;
}
@keyframes pulse3d {
    0%, 100% { transform: scale(1) rotateZ(0deg); }
    50% { transform: scale(1.12) rotateZ(180deg); }
}
.flow-item h4 {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: var(--fw-bold);
    margin-bottom: 8px;
    color: var(--pink-700);
}
.flow-item p {
    color: var(--ink-soft);
    line-height: 1.8;
    font-size: clamp(14px, 2.2vw, 16px);
}
.flow-item strong { color: var(--ink); }

/* ---------- gallery (rules images) ---------- */
.gal {
    display: grid;
    gap: clamp(28px, 5.5vw, 40px);
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.gal-card {
    background: var(--paper);
    border: 3px solid var(--pink-200);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-2);
    transition: all var(--dur) var(--ease);
}
.gal-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--sh-3);
}
.gal-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 26px;
    background: var(--pink-100);
    border-bottom: 2px solid var(--pink-200);
}
.gal-head .ico { color: var(--pink-600); }
.gal-head h3 {
    font-size: clamp(18px, 3.2vw, 22px);
    font-weight: var(--fw-bold);
    color: var(--pink-700);
}
.gal-shot {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.gal-shot img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--dur) var(--ease);
}
.gal-shot:hover img { transform: scale(1.05); }
.gal-zoom {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(249, 180, 201, 0.95);
    color: #fff;
    border-radius: var(--r-pill);
    font-size: 14px;
    font-weight: var(--fw-bold);
    box-shadow: var(--sh-2);
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
}
.gal-shot:hover .gal-zoom { opacity: 1; }
.gal-note {
    padding: 20px 26px;
    color: var(--ink-soft);
    line-height: 1.75;
    font-size: clamp(15px, 2.4vw, 17px);
}

/* ---------- slip (warning card) ---------- */
.slip {
    background: var(--danger-bg);
    border: 3px solid var(--danger);
    border-radius: var(--r-lg);
    padding: var(--sp-4);
    box-shadow: var(--sh-2);
    max-width: 860px;
    margin: 0 auto;
}
.slip-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: var(--sp-2);
}
.slip-head .ico { color: var(--danger); }
.slip-head h3 {
    font-size: clamp(22px, 4vw, 30px);
    font-weight: var(--fw-bold);
    color: var(--danger);
}
.slip-lede {
    font-size: clamp(14px, 2.5vw, 17px);
    line-height: 1.8;
    margin-bottom: var(--sp-3);
    color: var(--ink);
}
.slip-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.slip-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.slip-list .ico {
    color: var(--danger);
    flex-shrink: 0;
    margin-top: 2px;
}
.slip-list span {
    line-height: 1.8;
    font-size: clamp(14px, 2.3vw, 16px);
}

/* ---------- payment ---------- */
.pay-grid {
    display: grid;
    gap: clamp(32px, 5.5vw, 44px);
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    max-width: 940px;
    margin: 0 auto;
}
.pay-card {
    background: var(--paper);
    border: 3px solid var(--pink-200);
    border-radius: var(--r-lg);
    padding: var(--sp-4);
    box-shadow: var(--sh-2);
    transition: all var(--dur) var(--ease);
}
.pay-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-3);
}
.pay-kind {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 16px 22px;
    background: var(--pink-100);
    border-radius: var(--r-md);
    font-weight: var(--fw-bold);
    font-size: clamp(18px, 3.2vw, 22px);
    color: var(--pink-700);
    margin-bottom: var(--sp-3);
}
.kbank-header {
    background: linear-gradient(135deg, #138f3e 0%, #0a6e2f 100%);
    padding: 28px 20px;
    margin: -24px -24px 24px -24px;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.bank-logo {
    height: 52px;
    width: auto;
}
@media (max-width: 600px) {
    .bank-logo { height: 40px; }
    .kbank-header { padding: 20px 16px; }
}
.qr-frame {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 3px solid var(--pink-200);
    cursor: pointer;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.qr-frame:hover {
    transform: scale(1.03);
    box-shadow: var(--sh-2);
}
.qr-frame img {
    width: 100%;
    height: auto;
    display: block;
}
.qr-tip {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(249, 180, 201, 0.95);
    color: #fff;
    border-radius: var(--r-pill);
    font-size: 14px;
    font-weight: var(--fw-bold);
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
}
.qr-frame:hover .qr-tip { opacity: 1; }

.qr-tools {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}
.qr-tools button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: var(--pink-100);
    color: var(--pink-700);
    border-radius: var(--r-md);
    font-weight: var(--fw-bold);
    font-size: clamp(15px, 2.4vw, 17px);
    transition: all var(--dur) var(--ease);
}
.qr-tools button:hover {
    background: var(--pink-200);
    transform: translateY(-2px);
}

.acct {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
    background: var(--pink-50);
    border-radius: var(--r-md);
    border: 2px solid var(--pink-200);
}
.acct-label {
    font-size: clamp(15px, 2.4vw, 17px);
    color: var(--ink-soft);
    font-weight: var(--fw-light);
}
.acct-no {
    font-size: clamp(26px, 4.5vw, 32px);
    font-weight: var(--fw-bold);
    color: var(--pink-700);
    letter-spacing: .03em;
    cursor: pointer;
    user-select: all;
}
.acct-name {
    font-size: clamp(16px, 2.6vw, 18px);
    color: var(--ink);
    font-weight: var(--fw-regular);
}
.wallet-header {
    color: #ec6d27;
    background: linear-gradient(135deg, #fff3df, #fff9f2);
    border: 1px solid rgba(244, 166, 84, .54);
}
.wallet-logo {
    width: 42px;
    height: 28px;
    object-fit: contain;
}
.wallet-copy-btn {
    color: #b9571d;
    background: #fff1e3;
}
.wallet-copy-btn:hover { background: #ffe2c8; }
.wallet-note {
    margin-top: 16px;
    color: var(--ink-soft);
    text-align: center;
    font-size: 14px;
    line-height: 1.55;
}
.copy-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    margin-top: 16px;
    background: var(--pink-200);
    color: var(--pink-700);
    border-radius: var(--r-md);
    font-weight: var(--fw-bold);
    font-size: clamp(16px, 2.6vw, 18px);
    transition: all var(--dur) var(--ease);
}
.copy-btn:hover {
    background: var(--pink-300);
    transform: translateY(-3px);
}

/* ---------- social links ---------- */
.social {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 760px;
    margin: 0 auto;
}
.social-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 26px;
    background: var(--paper);
    border: 2px solid var(--pink-200);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-1);
    transition: all var(--dur) var(--ease);
}
.social-row:hover {
    transform: translateX(10px) scale(1.01);
    box-shadow: var(--sh-2);
    border-color: var(--pink-400);
}
.social-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #fff;
    box-shadow: var(--sh-1);
}
.badge-line { background: linear-gradient(135deg, #06c755, #05a647); }
.badge-fb { background: linear-gradient(135deg, #1877f2, #0c5fcd); }
.badge-ig { background: linear-gradient(135deg, #8fd8ff 0%, #927bff 48%, #ff9bd2 100%); }
.badge-mint { background: linear-gradient(135deg, var(--mint), #a8e6d1); color: var(--ink); }
.badge-peach { background: linear-gradient(135deg, var(--peach), #ffb366); color: var(--ink); }
.social-txt {
    flex: 1;
}
.social-txt strong {
    display: block;
    font-size: clamp(18px, 3.2vw, 21px);
    font-weight: var(--fw-bold);
    color: var(--ink);
    margin-bottom: 4px;
}
.social-txt span {
    display: block;
    font-size: clamp(14px, 2.2vw, 17px);
    color: var(--ink-soft);
}
.ico-go { color: var(--pink-400); margin-left: auto; }

/* ---------- honest (special section bg) ---------- */
.honest {
    background: linear-gradient(180deg, var(--pink-50) 0%, var(--lavender) 100%);
    border-top: 2px solid var(--pink-200);
    border-bottom: 2px solid var(--pink-200);
}

/* ---------- footer ---------- */
.foot {
    background: var(--pink-200);
    padding: clamp(48px, 8vw, 72px) 0 var(--sp-4);
    border-top: 3px solid var(--pink-300);
}
.foot-grid {
    display: grid;
    gap: var(--sp-4);
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-bottom: var(--sp-4);
}
.foot-grid h4 {
    font-size: clamp(20px, 3.4vw, 24px);
    font-weight: var(--fw-bold);
    color: var(--pink-700);
    margin-bottom: 16px;
}
.foot-grid p {
    color: var(--ink-soft);
    line-height: 1.8;
    font-size: clamp(14px, 2.2vw, 16px);
}
.foot-grid a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--ink);
    font-size: clamp(14px, 2.2vw, 16px);
    transition: all var(--dur) var(--ease);
}
.foot-grid a:hover {
    color: var(--pink-700);
    transform: translateX(6px);
}
.foot-note {
    text-align: center;
    padding-top: var(--sp-3);
    border-top: 2px solid var(--pink-300);
    color: var(--ink-soft);
    font-size: clamp(15px, 2.3vw, 16px);
}

/* ---------- mobile sticky bar (iOS tab bar style) ---------- */
.mbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 252, 254, 0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 0.5px solid rgba(0, 0, 0, 0.04);
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom);
    will-change: transform;
    transform: translateZ(0);
    box-shadow: 0 -0.5px 0 0 rgba(0, 0, 0, 0.04);
}
.mbar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 0;
    min-height: 49px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: all 180ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    color: var(--ink-soft);
}
.mbar a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.04);
    opacity: 0;
    transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mbar a:active::before {
    opacity: 1;
}
.mbar .ico {
    width: 28px;
    height: 28px;
    transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
}
.m-line {
    color: #06c755;
}
.m-line:active {
    color: #05a647;
}
.m-pay {
    color: var(--pink-600);
}
.m-pay:active {
    color: var(--pink-700);
}
.m-ghost {
    color: var(--ink-soft);
}
.m-ghost:active {
    color: var(--ink);
}

@media (min-width: 800px) {
    .mbar { display: none; }
    body { padding-bottom: 0; }
}

@media (max-width: 374px) {
    .mbar a {
        font-size: 9px;
        gap: 2px;
    }
    .mbar .ico {
        width: 24px;
        height: 24px;
    }
}

/* ---------- music button ---------- */
.music-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 890;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
    color: #fff;
    box-shadow: var(--sh-3);
    display: grid;
    place-items: center;
    transition: transform var(--dur) var(--ease);
}
.music-btn:hover { transform: scale(1.15) rotate(15deg); }
.music-btn[aria-pressed="true"] { animation: spin3dBtn 3s linear infinite; }
@keyframes spin3dBtn {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 799px) {
    .music-btn {
        bottom: 100px;
        right: 20px;
        width: 58px;
        height: 58px;
    }
}

/* ---------- lightbox ---------- */
.lb {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--sp-3);
    backdrop-filter: blur(8px);
}
.lb.show { display: flex; }
.lb-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: var(--sp-3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}
.lb-title {
    color: #fff;
    font-size: clamp(18px, 3.4vw, 23px);
    font-weight: var(--fw-bold);
}
.lb-close {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    display: grid;
    place-items: center;
    transition: background var(--dur) var(--ease);
}
.lb-close:hover { background: rgba(255, 255, 255, 0.25); }
.lb-stage {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    overflow: hidden;
    cursor: grab;
    touch-action: none;
}
.lb-stage.grabbing { cursor: grabbing; }
.lb-stage img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    transform-origin: center;
    transition: transform 280ms var(--ease);
}
.lb-foot {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--sp-3);
    display: flex;
    gap: 14px;
    justify-content: center;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.lb-foot button {
    padding: 14px 22px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: var(--fw-bold);
    font-size: clamp(15px, 2.4vw, 17px);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background var(--dur) var(--ease);
}
.lb-foot button:hover { background: rgba(255, 255, 255, 0.25); }

/* ---------- toast ---------- */
.toast-tray {
    position: fixed;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}
.toast {
    padding: 16px 28px;
    background: var(--ink);
    color: #fff;
    border-radius: var(--r-pill);
    box-shadow: var(--sh-3);
    font-weight: var(--fw-bold);
    font-size: clamp(16px, 2.6vw, 18px);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 280ms var(--ease), transform 280ms var(--ease);
    pointer-events: auto;
}
.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- reveal (scroll anim) ---------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- large gif strip ---------- */
.large-gif-container {
    display: flex;
    gap: clamp(20px, 4vw, 32px);
    justify-content: center;
    align-items: center;
    margin: var(--sp-5) 0;
    overflow: hidden;
}
.large-gif {
    width: clamp(140px, 22vw, 240px);
    height: auto;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-2);
    border: 3px solid var(--pink-200);
    transition: transform var(--dur) var(--ease);
    animation: floatGif 4s ease-in-out infinite;
}
.large-gif:nth-child(1) { animation-delay: 0s; }
.large-gif:nth-child(2) { animation-delay: 0.8s; }
.large-gif:nth-child(3) { animation-delay: 1.6s; }
.large-gif:hover {
    transform: scale(1.08) translateY(-8px);
}
@keyframes floatGif {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ---------- policy minimal ---------- */
.policy-minimal {
    background: var(--paper);
    border: 2px dashed var(--pink-300);
    border-radius: var(--r-xl);
    padding: clamp(32px, 5vw, 48px);
    max-width: 900px;
    margin: var(--sp-7) auto;
    position: relative;
}
.policy-minimal::before {
    content: '✦';
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--paper);
    padding: 0 16px;
    font-size: 24px;
    color: var(--pink-600);
}
.policy-minimal h3 {
    text-align: center;
    margin-bottom: var(--sp-5);
    color: var(--pink-700);
    font-size: clamp(20px, 4vw, 26px);
}
.policy-minimal-lead {
    text-align: center;
    color: var(--ink-soft);
    margin-bottom: var(--sp-6);
    line-height: 1.8;
}
.policy-items {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}
.policy-item {
    padding: var(--sp-4);
    background: var(--pink-50);
    border-radius: var(--r-md);
    border-left: 4px solid var(--pink-400);
    transition: all var(--dur) var(--ease);
}
.policy-item:hover {
    transform: translateX(4px);
    box-shadow: var(--sh-1);
}
.policy-item strong {
    display: block;
    margin-bottom: var(--sp-2);
    color: var(--pink-700);
    font-size: clamp(15px, 2.8vw, 17px);
}
.policy-item span {
    color: var(--ink-soft);
    line-height: 1.7;
    font-size: clamp(14px, 2.5vw, 16px);
}
.policy-note-bottom {
    text-align: center;
    margin-top: var(--sp-5);
    padding-top: var(--sp-5);
    border-top: 2px dashed var(--pink-200);
    color: var(--ink-soft);
    line-height: 1.8;
}

/* ---------- policy card (old version) ---------- */
.policy-card {
    background: var(--paper);
    border: 3px solid var(--pink-200);
    border-radius: var(--r-lg);
    padding: clamp(28px, 5vw, 40px);
    box-shadow: var(--sh-2);
    max-width: 920px;
    margin: 0 auto;
}
.policy-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: var(--sp-3);
}
.policy-icon {
    font-size: clamp(36px, 6vw, 48px);
    flex-shrink: 0;
}
.policy-head h3 {
    font-size: clamp(20px, 3.8vw, 28px);
    font-weight: var(--fw-bold);
    color: var(--pink-700);
    line-height: 1.3;
}
.policy-lead {
    font-size: clamp(14px, 2.5vw, 17px);
    line-height: 1.8;
    color: var(--ink-soft);
    margin-bottom: var(--sp-4);
}
.policy-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: var(--sp-3);
}
.policy-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--pink-50);
    border-radius: var(--r-md);
    border-left: 4px solid var(--pink-400);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.policy-point:hover {
    transform: translateX(6px);
    box-shadow: var(--sh-1);
}
.policy-point.good {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left-color: #66bb6a;
}
.pp-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}
.policy-point div {
    font-size: clamp(14px, 2.3vw, 16px);
    line-height: 1.75;
    color: var(--ink);
}
.policy-point strong {
    color: var(--pink-700);
    font-weight: var(--fw-bold);
}
.policy-point.good strong {
    color: #2e7d32;
}
.policy-note {
    font-size: clamp(14px, 2.4vw, 16px);
    line-height: 1.8;
    color: var(--ink-soft);
    padding: 20px;
    background: var(--lavender);
    border-radius: var(--r-md);
    border: 2px solid var(--pink-200);
}
.policy-note strong {
    color: var(--pink-700);
}
@media (max-width: 600px) {
    .hero-badge {
        padding: 10px 14px;
    }
    .hero-badge strong { font-size: 13px; }
    .hero-badge span { font-size: 11px; }
    .hero-badge-1 { left: 3%; top: 8%; }
    .hero-badge-2 { right: 3%; bottom: 12%; }
    .hero-badge-3 { left: 6%; bottom: 3%; }

    /* ปรับ h1 ให้อ่านง่ายบน mobile */
    .h1 {
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.3;
    }

    /* ปรับ hero-lede ให้อ่านง่าย */
    .hero-lede {
        font-size: clamp(14px, 3.5vw, 16px);
        padding: 16px 20px;
        margin-top: 20px;
    }

    /* ปรับปุ่มให้เหมาะกับ mobile */
    .btn {
        padding: 16px 24px;
        font-size: 15px;
        min-width: auto;
    }

    .hero-cta {
        flex-direction: column;
        gap: 14px;
        width: 100%;
        margin-top: 24px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        min-width: auto;
        padding: 18px 24px;
    }

    /* ปรับ pay-banner ให้อ่านง่าย */
    .pay-banner-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }

    .pay-banner-text strong {
        font-size: 16px;
    }

    .pay-banner-text span {
        font-size: 14px;
    }

    /* ปรับ section spacing */
    .wrap {
        padding: 0 16px;
    }

    /* ปรับ social-row ให้เหมาะกับ mobile */
    .social-row {
        padding: 16px;
    }

    .social-txt strong {
        font-size: 15px;
    }

    .social-txt span {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    body::before { animation: none; }
    .anime-float { display: none; }
}

/* Lucius Zen Shop compact tuning */
.wrap { max-width: 1080px; }
.section { padding: clamp(38px, 7vw, 72px) 0; }
.section-head { margin-bottom: clamp(24px, 5vw, 42px); }
.h1 { font-size: clamp(30px, 5.8vw, 52px); letter-spacing: 0; }
.h2 { font-size: clamp(24px, 4.5vw, 40px); }
.hero { padding: clamp(34px, 7vw, 68px) 0 clamp(42px, 7vw, 76px); }
.hero-grid { gap: clamp(24px, 5vw, 44px); }
.hero-lede { font-size: clamp(14px, 2.2vw, 17px); padding: clamp(16px, 3vw, 22px); }
.hero-art { max-width: 420px; }
.hero-cta { margin-top: 24px; gap: 12px; }
.hero-cta .btn { min-width: 156px; padding: 14px 24px; }
.services-minimal { gap: 24px; margin-top: 38px; }
.service-minimal { border-radius: 22px; padding: clamp(20px, 3vw, 26px); }
.policy-minimal { max-width: 820px; margin: 38px auto; border-radius: 24px; padding: clamp(24px, 4vw, 36px); }
.image-cards { gap: 22px; }
.social-row { padding: 18px 22px; border-radius: 22px; }
.pay-banner { margin: 42px 0; padding: 38px 0; }
.pay-banner-card { border-radius: 22px; padding: clamp(18px, 3vw, 24px); }
.foot { padding: clamp(34px, 6vw, 54px) 0 var(--sp-4); }

@media (max-width: 600px) {
    .section { padding: 34px 0; }
    .hero { padding: 28px 0 40px; }
    .hero-art { max-width: 320px; }
    .services-minimal { gap: 18px; margin-top: 28px; }
    .policy-minimal { margin: 28px auto; }
}

/* Blue-purple pastel glow theme */
:root {
    --ink: #20223f;
    --ink-soft: #626788;
    --ink-faint: #8b90ad;
    --paper: rgba(255, 255, 255, 0.9);
    --cream: #f7fbff;
    --pink-50: #f5f9ff;
    --pink-100: #e9f3ff;
    --pink-200: #d8e9ff;
    --pink-300: #bcd9ff;
    --pink-400: #9ec5ff;
    --pink-500: #8b9dff;
    --pink-600: #7667ee;
    --pink-700: #5647c9;
    --pink-800: #4133a7;
    --lavender: #e9ddff;
    --lavender-100: #f2ecff;
    --lavender-200: #d9c8ff;
    --peach: #b8f0ff;
    --mint: #c9f7ff;
    --sky: #d9edff;
    --line: #bcd9ff;
    --line-soft: #e3efff;
    --bg-raised: rgba(232, 240, 255, 0.78);
    --bg-muted: rgba(245, 249, 255, 0.86);
    --sh-1: rgba(118, 103, 238, 0.14) 0px 8px 20px 0px;
    --sh-2: rgba(100, 152, 255, 0.22) 0px 12px 30px 0px, rgba(182, 139, 255, 0.16) 0px 0px 24px 0px;
    --sh-3: rgba(86, 71, 201, 0.22) 0px 18px 48px 0px, rgba(126, 213, 255, 0.28) 0px 0px 34px 0px;
}

body {
    background: #f7fbff;
}

body::before {
    background:
        radial-gradient(circle at 16% 22%, rgba(188, 217, 255, 0.58) 0%, transparent 40%),
        radial-gradient(circle at 84% 18%, rgba(217, 200, 255, 0.58) 0%, transparent 42%),
        radial-gradient(circle at 50% 84%, rgba(201, 247, 255, 0.42) 0%, transparent 36%),
        linear-gradient(135deg, #f8fcff 0%, #f2edff 52%, #edf8ff 100%);
}

.site-head,
.drawer,
.hero-lede,
.service-minimal,
.policy-minimal,
.pay-banner-card,
.pay-card,
.social-row,
.image-card,
.gal-card,
.flow-item,
.acc-item {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(156, 197, 255, 0.72);
    box-shadow: var(--sh-1), inset 0 1px 0 rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
}

.brand-mark,
.btn,
.pay-banner-btn,
.flow-num,
.music-btn {
    box-shadow: 0 0 24px rgba(126, 213, 255, 0.38), 0 0 34px rgba(137, 112, 255, 0.22);
}

.btn,
.pay-banner-btn,
.mbar .m-line,
.mbar .m-pay {
    background: linear-gradient(135deg, #8fd8ff 0%, #927bff 100%);
}

.ticker,
.foot {
    background: linear-gradient(135deg, rgba(216, 233, 255, 0.95), rgba(233, 221, 255, 0.95));
}

.hero-art-frame {
    border-color: rgba(188, 217, 255, 0.92);
    box-shadow: var(--sh-3), 0 0 42px rgba(139, 157, 255, 0.24);
}

.hero-badge {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(188, 217, 255, 0.84);
    box-shadow: 0 0 22px rgba(143, 216, 255, 0.28);
}

.service-minimal:hover,
.social-row:hover,
.pay-banner-card:hover,
.image-card:hover {
    border-color: rgba(118, 103, 238, 0.66);
    box-shadow: var(--sh-3), 0 0 30px rgba(143, 216, 255, 0.24);
}

.brand-mark {
    position: relative;
    padding: 5px;
    overflow: visible;
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #eaf5ff 42%, #f1eaff 100%);
    border: 2px solid rgba(255, 255, 255, 0.95);
}

.brand-mark::before,
.hero-art-frame::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px dashed rgba(118, 103, 238, 0.58);
    border-radius: inherit;
    pointer-events: none;
    filter: drop-shadow(0 0 8px rgba(143, 216, 255, 0.55));
}

.brand-mark::after,
.hero-art-frame::after {
    content: '✦';
    position: absolute;
    right: -9px;
    top: -12px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #7667ee;
    background: #ffffff;
    border: 2px solid rgba(188, 217, 255, 0.95);
    box-shadow: 0 0 18px rgba(143, 216, 255, 0.42);
    font-size: 14px;
}

.brand-mark img,
.hero-art-frame img {
    border: 3px solid rgba(255, 255, 255, 0.96);
    box-shadow: inset 0 0 0 2px rgba(188, 217, 255, 0.75);
}

.hero-art-frame {
    overflow: visible;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(232,243,255,0.9), rgba(242,236,255,0.9));
}

.hero-art-frame img {
    display: block;
    border-radius: 34px;
}

/* Hero service chips and primary actions */
.hero-chips {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 540px);
    gap: 10px;
    margin: 20px auto 0;
}

.hero-chips .chip {
    min-width: 0;
    min-height: 54px;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(156, 197, 255, 0.92);
    border-radius: 16px;
    color: #5145b8;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(232, 243, 255, 0.86) 52%, rgba(242, 236, 255, 0.9));
    box-shadow: 0 8px 22px rgba(100, 152, 255, 0.15), inset 0 1px 0 #fff;
    overflow: hidden;
}

.hero-chips .chip::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 16px rgba(143, 216, 255, 0.2);
}

.hero-chips .chip {
    position: relative;
}

.hero-chips .chip:hover {
    transform: translateY(-3px);
    border-color: rgba(118, 103, 238, 0.72);
    box-shadow: 0 10px 28px rgba(100, 152, 255, 0.24), 0 0 20px rgba(151, 124, 255, 0.18);
}

.hero-chips .game-logo,
.hero-chips .ico {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    object-fit: contain;
}

.hero-chips .verified-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #6656dd;
    background: linear-gradient(145deg, #ffffff, #e7f5ff 52%, #eee7ff);
    border: 1px solid rgba(156, 197, 255, 0.92);
    box-shadow: 0 0 14px rgba(126, 213, 255, 0.5), 0 0 20px rgba(146, 123, 255, 0.24);
}

.hero-chips .verified-icon .ico {
    width: 22px;
    height: 22px;
}

/* Keep badge labels readable over the pastel artwork. */
.hero-badge {
    background: rgba(255, 255, 255, .96);
    border-color: rgba(156, 197, 255, .9);
    box-shadow: 0 10px 28px rgba(86, 71, 201, .2), 0 0 24px rgba(143, 216, 255, .28);
    backdrop-filter: blur(12px) saturate(130%);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
}

.hero-badge strong {
    color: #29235f;
    font-weight: 700;
    text-shadow: 0 1px 0 #fff;
}

.hero-badge span {
    color: #625aa0;
    font-weight: 600;
}

.hero-badge-1 { border-color: rgba(118, 103, 238, .62); }
.hero-badge-2,
.hero-badge-3 {
    background: rgba(255, 255, 255, .985);
    border-width: 2px;
    box-shadow: 0 12px 30px rgba(41, 35, 95, .23), 0 0 26px rgba(143, 216, 255, .34), inset 0 0 0 1px rgba(255,255,255,.9);
}
.hero-badge-2 { border-color: rgba(41, 152, 198, .82); }
.hero-badge-3 { border-color: rgba(116, 75, 202, .78); }
.hero-badge-2 strong,
.hero-badge-3 strong {
    color: #211b57;
    text-shadow: 0 1px 0 #fff, 0 0 1px rgba(33,27,87,.16);
}
.hero-badge-2 span,
.hero-badge-3 span {
    color: #40496f;
    text-shadow: 0 1px 0 #fff;
}

@media (min-width: 800px) {
    .foot {
        position: relative;
        overflow: hidden;
        padding: 54px 0 20px;
        border-top: 1px solid rgba(118, 103, 238, .28);
        background: linear-gradient(135deg, rgba(221, 239, 255, .98), rgba(239, 231, 255, .98) 56%, rgba(219, 247, 255, .96));
        box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 -12px 34px rgba(100,152,255,.1);
    }

    .foot::before {
        content: '';
        position: absolute;
        inset: 0 0 auto;
        height: 3px;
        background: linear-gradient(90deg, transparent, #8fd8ff 26%, #927bff 52%, #8fd8ff 78%, transparent);
        box-shadow: 0 0 18px rgba(126,213,255,.65);
    }

    .foot-grid {
        grid-template-columns: minmax(300px, 1.35fr) minmax(190px, .8fr) minmax(190px, .8fr);
        gap: 0;
        margin-bottom: 32px;
    }

    .foot-grid > div {
        min-width: 0;
        padding: 4px 34px;
    }

    .foot-grid > div:first-child { padding-left: 0; }
    .foot-grid > div:last-child { padding-right: 0; }

    .foot-grid > div + div {
        border-left: 1px dashed rgba(86, 71, 201, .28);
    }

    .foot-grid h4 {
        position: relative;
        margin-bottom: 18px;
        color: #302969;
        font-size: 20px;
    }

    .foot-grid h4::after {
        content: '';
        display: block;
        width: 36px;
        height: 3px;
        margin-top: 8px;
        border-radius: 3px;
        background: linear-gradient(90deg, #76cfff, #8179f5);
        box-shadow: 0 0 10px rgba(118,207,255,.46);
    }

    .foot-grid p {
        max-width: 370px;
        color: #555b7d;
        line-height: 1.85;
    }

    .foot-grid a {
        width: fit-content;
        max-width: 100%;
        padding: 7px 0;
        color: #3f4568;
        font-size: 14px;
    }

    .foot-grid a .ico {
        width: 19px;
        height: 19px;
        color: #6255d4;
    }

    .foot-grid a:hover {
        color: #5145b8;
        transform: translateX(5px);
        text-shadow: 0 0 12px rgba(126,213,255,.45);
    }

    .foot-note {
        padding-top: 18px;
        border-top: 1px solid rgba(86, 71, 201, .2);
        color: #68708f;
        font-size: 13px;
    }
}

/* Desktop composition: use the wider canvas without stretching content. */
@media (min-width: 900px) {
    .wrap { max-width: 1200px; }
    .section { padding: 68px 0; }
    .section-head { max-width: 760px; margin-bottom: 38px; }

    .hero { padding: 56px 0 64px; }
    .hero-grid {
        grid-template-columns: minmax(0, 1.18fr) minmax(370px, .82fr);
        gap: clamp(48px, 6vw, 82px);
        text-align: left;
    }
    .hero-grid > * { margin: 0; }
    .hero-chips,
    .hero-actions { margin-left: 0; margin-right: 0; }
    .hero-art { width: 100%; max-width: 440px; justify-self: end; }

    /* Inner pages have one hero column; center it and use the available width. */
    body:not(:has(.hero-art)) .hero-grid {
        grid-template-columns: minmax(0, 860px);
        justify-content: center;
        text-align: center;
    }
    body:not(:has(.hero-art)) .hero-grid > div { width: 100%; }
    body:not(:has(.hero-art)) .hero-lede { max-width: 820px; margin-left: auto; margin-right: auto; }
    body:not(:has(.hero-art)) .hero-cta { justify-content: center; margin-left: auto; margin-right: auto; }

    .payment-mobile-grid .slip { max-width: 980px; margin: 0 auto; }
    .payment-mobile-grid .pay-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: min(100%, 1120px);
        gap: 22px;
    }
    .payment-mobile-grid .pay-card { min-width: 0; height: 100%; padding: 20px; }
    .payment-mobile-grid .qr-frame { max-width: 310px; margin: 0 auto; }
    .promo-image-card { max-width: 820px; margin-left: auto; margin-right: auto; }
    .policy-minimal { max-width: 920px; }

    .services-minimal {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }
    .service-minimal { height: 100%; }
    .image-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .image-cards .image-card { min-width: 0; }
    .topup-pricing { max-width: 900px; }
    .account-check-grid { grid-template-columns: minmax(340px, .82fr) minmax(420px, 1.18fr); }
}

@media (min-width: 900px) and (max-width: 1120px) {
    .wrap { padding-left: 28px; padding-right: 28px; }
    .head-inner { gap: 14px; }
    .brand-sub { display: none; }
    .nav-desk a { padding: 10px 8px; font-size: 12px; }
    .payment-mobile-grid .pay-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .payment-mobile-grid .pay-card:last-child { grid-column: 1 / -1; width: min(100%, 520px); justify-self: center; }
}

@media (min-width: 1280px) {
    .wrap { max-width: 1240px; }
    .hero-grid { grid-template-columns: minmax(0, 1.25fr) minmax(410px, .75fr); }
    .hero-art { max-width: 465px; }
}

/* Desktop footer hierarchy. */
@media (min-width: 900px) {
    .foot {
        padding: 64px 0 24px;
        background:
            linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px) 0 0 / 44px 44px,
            linear-gradient(135deg, rgba(224,243,255,.98), rgba(239,232,255,.98) 54%, rgba(222,247,255,.98));
    }
    .foot .wrap { position: relative; }
    .foot .wrap::before {
        content: 'LUCIUS ZEN SHOP';
        position: absolute;
        top: -28px;
        left: 0;
        padding: 7px 14px;
        border: 1px solid rgba(118,103,238,.45);
        border-radius: 8px;
        color: #5145b8;
        background: rgba(255,255,255,.82);
        box-shadow: 0 0 20px rgba(126,213,255,.3), inset 0 1px 0 #fff;
        font-family: var(--font);
        font-size: 11px;
        font-weight: var(--fw-bold);
        letter-spacing: 0;
    }
    .foot-grid {
        grid-template-columns: minmax(420px, 1.5fr) minmax(215px, .75fr) minmax(240px, .85fr);
        margin-bottom: 38px;
    }
    .foot-grid > div { padding: 8px 42px; }
    .foot-grid > div:first-child { padding-left: 0; }
    .foot-grid > div:last-child { padding-right: 0; }
    .foot-grid > div + div { border-left-color: rgba(86,71,201,.2); }
    .foot-grid h4 { font-size: 18px; }
    .foot-grid > div:first-child h4 {
        font-size: 28px;
        color: #29235f;
    }
    .foot-grid > div:first-child p {
        font-size: 15px;
        line-height: 1.9;
    }
    .foot-grid a {
        position: relative;
        padding: 8px 0 8px 14px;
    }
    .foot-grid a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #8a7df0;
        box-shadow: 0 0 8px rgba(126,213,255,.8);
        transform: translateY(-50%);
    }
    .foot-grid > div:last-child a::before { background: #61bfe9; }
    .foot-grid a:hover { transform: translateX(7px); }
    .foot-note {
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 48px;
        padding-top: 20px;
    }
    .foot-note::after {
        content: 'Lucius Zen Shop';
        color: #5145b8;
        font-weight: var(--fw-bold);
    }
}

.hero-chips .chip > span {
    min-width: 0;
    overflow-wrap: anywhere;
    line-height: 1.15;
    font-size: 14px;
}

.hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 540px);
    gap: 12px;
    margin: 16px auto 0;
}

.hero-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 17px;
    font-size: 15px;
    box-shadow: 0 10px 28px rgba(100, 152, 255, 0.28), 0 0 24px rgba(146, 123, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-actions .btn-line {
    background: linear-gradient(135deg, #54dca3 0%, #45bde4 48%, #8179f5 100%);
}

.hero-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(100, 152, 255, 0.36), 0 0 30px rgba(146, 123, 255, 0.3);
}

@media (max-width: 600px) {
    .hero-chips {
        gap: 7px;
        margin-top: 16px;
    }

    .hero-chips .chip {
        min-height: 48px;
        gap: 5px;
        padding: 8px 6px;
        border-radius: 13px;
    }

    .hero-chips .game-logo,
    .hero-chips .ico {
        width: 21px;
        height: 21px;
        flex-basis: 21px;
    }

    .hero-chips .verified-icon {
        width: 25px;
        height: 25px;
        flex-basis: 25px;
    }

    .hero-chips .verified-icon .ico {
        width: 19px;
        height: 19px;
    }

    .hero-chips .chip > span {
        font-size: 12px;
    }

    .hero-actions {
        gap: 9px;
        margin-top: 13px;
    }

    .hero-actions .btn {
        min-height: 50px;
        gap: 7px;
        padding: 11px 10px;
        border-radius: 14px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .hero-chips {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        grid-template-columns: 1fr;
    }
}
