:root {
  --ink: #514247;
  --muted: #8e7b81;
  --cream: #fff9f1;
  --milk: #fffdf9;
  --pink: #f6b8c8;
  --pink-deep: #e883a0;
  --pink-soft: #fde5eb;
  --peach: #f7c8b8;
  --lilac: #d9c9ed;
  --butter: #f5dfaa;
  --line: rgba(111, 80, 89, .14);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { min-width: 320px; min-height: 100vh; margin: 0; overflow-x: hidden; background: var(--cream); }
button { font: inherit; }
button:focus-visible, canvas:focus-visible, a:focus-visible { outline: 3px solid rgba(232, 131, 160, .35); outline-offset: 3px; }

body::before {
  content: "";
  position: fixed;
  z-index: -4;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(213, 160, 176, .21) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.page-glow { position: fixed; z-index: -3; border-radius: 50%; filter: blur(8px); pointer-events: none; }
.glow-one { top: -180px; right: -120px; width: 520px; height: 520px; background: rgba(248, 199, 214, .62); }
.glow-two { top: 45%; left: -260px; width: 520px; height: 520px; background: rgba(255, 226, 210, .7); }
.paw-confetti { position: fixed; z-index: -2; top: 45%; right: -90px; color: rgba(225, 146, 170, .16); font-size: 40px; letter-spacing: 16px; transform: rotate(83deg); }
.page-shell { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }

.topbar { display: flex; align-items: center; justify-content: space-between; min-height: 84px; border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.brand > span:last-child { display: grid; gap: 2px; }
.brand strong { font-size: 15px; letter-spacing: .04em; }
.brand small { color: var(--muted); font-size: 10px; }
.mini-cat { position: relative; z-index: 0; display: block; width: 37px; height: 32px; border: 2px solid var(--ink); border-radius: 48% 48% 44% 44%; background: var(--pink-soft); }
.mini-cat::before, .mini-cat::after { content: ""; position: absolute; z-index: -1; top: -8px; width: 14px; height: 14px; border: 2px solid var(--ink); background: var(--pink-soft); transform: rotate(45deg); }
.mini-cat::before { left: 1px; border-radius: 4px 2px 5px 2px; }
.mini-cat::after { right: 1px; border-radius: 2px 4px 2px 5px; }
.mini-cat i::before, .mini-cat i::after { content: ""; position: absolute; top: 12px; width: 4px; height: 5px; border-radius: 50%; background: var(--ink); }
.mini-cat i::before { left: 9px; }
.mini-cat i::after { right: 9px; }
.counter { display: flex; align-items: baseline; gap: 5px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 99px; color: var(--muted); font-size: 11px; background: rgba(255,255,255,.48); }
.counter strong { color: var(--pink-deep); font: 900 23px/1 Georgia, serif; }

.intro { max-width: 800px; margin: 76px auto 65px; text-align: center; }
.eyebrow { color: #b47387; font-size: 11px; font-weight: 900; letter-spacing: .15em; }
.intro h1 { margin: 17px 0 20px; font-size: clamp(43px, 7vw, 76px); line-height: 1.08; letter-spacing: -.055em; }
.intro h1 em { color: var(--pink-deep); font-family: Georgia, "Songti SC", serif; font-weight: 500; }
.intro p { max-width: 650px; margin: 0 auto; color: var(--muted); font-size: 15px; line-height: 1.9; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 22px; margin-bottom: 23px; }
.section-heading > div > span { display: block; margin-bottom: 5px; color: var(--pink-deep); font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.section-heading h2 { margin: 0; font-size: 24px; letter-spacing: -.025em; }
.section-heading h2 b { color: var(--pink-deep); }
.section-heading p { margin: 0 0 3px; color: var(--muted); font-size: 11px; }
.section-heading.compact { width: min(650px, 100%); margin: 0 auto 24px; }

.player-picker { margin: 0 auto 90px; }
.player-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.player-button { position: relative; display: flex; align-items: center; gap: 13px; min-width: 0; padding: 15px; border: 1.5px solid var(--line); border-radius: 22px; color: var(--ink); text-align: left; cursor: pointer; background: rgba(255, 253, 249, .76); box-shadow: 0 7px 24px rgba(117, 84, 94, .06); transition: .2s ease; }
.player-button:hover { transform: translateY(-3px); border-color: rgba(232,131,160,.35); }
.player-button.active { border-color: var(--ink); background: #fff; box-shadow: 5px 6px 0 var(--player-color); transform: translate(-2px, -2px); }
.player-button.active::after { content: "正在刮"; position: absolute; top: -9px; right: 12px; padding: 3px 8px; border-radius: 99px; color: #fff; font-size: 8px; font-weight: 900; background: var(--ink); }
.player-avatar { position: relative; z-index: 0; flex: 0 0 48px; width: 48px; height: 45px; border: 2px solid var(--ink); border-radius: 48% 48% 45% 45%; background: var(--player-color); }
.player-avatar::before, .player-avatar::after { content: ""; position: absolute; z-index: -1; top: -8px; width: 17px; height: 17px; border: 2px solid var(--ink); background: var(--player-color); transform: rotate(45deg); }
.player-avatar::before { left: 2px; border-radius: 5px 2px 6px 2px; }
.player-avatar::after { right: 2px; border-radius: 2px 5px 2px 6px; }
.player-avatar i::before, .player-avatar i::after { content: ""; position: absolute; top: 17px; width: 5px; height: 6px; border-radius: 50%; background: var(--ink); }
.player-avatar i::before { left: 12px; }
.player-avatar i::after { right: 12px; }
.player-avatar b { position: absolute; right: 0; bottom: 6px; left: 0; font-size: 12px; font-weight: 500; text-align: center; }
.player-copy { min-width: 0; }
.player-copy strong { display: block; overflow: hidden; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.player-copy small { display: block; margin-top: 4px; color: var(--muted); font-size: 9px; }

.scratch-section { margin-bottom: 95px; scroll-margin-top: 20px; }
.scratch-zone { position: relative; width: min(650px, 100%); margin: 0 auto; }
.card-shadow { position: absolute; z-index: 0; inset: 15px -13px -16px 13px; border: 2px solid var(--ink); border-radius: 35px; background: var(--peach); transform: rotate(1.5deg); }
.cat-ear { position: absolute; z-index: 2; top: -26px; width: 82px; height: 82px; border: 2px solid var(--ink); background: var(--milk); transform: rotate(45deg); }
.cat-ear::after { content: ""; position: absolute; inset: 17px; border-radius: 9px; background: var(--pink-soft); }
.ear-left { left: 45px; border-radius: 18px 7px 24px 7px; }
.ear-right { right: 45px; border-radius: 7px 18px 7px 24px; }
.scratch-card { position: relative; z-index: 3; overflow: hidden; width: 100%; aspect-ratio: 1.72 / 1; border: 2px solid var(--ink); border-radius: 34px; background: var(--milk); box-shadow: 0 18px 42px rgba(110, 79, 88, .13); touch-action: none; }
.card-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; padding: 38px 50px 32px; text-align: center; background: linear-gradient(145deg, #fffdf9 20%, #fff3f4); }
.card-content::before, .card-content::after { content: "🐾"; position: absolute; color: rgba(232,131,160,.1); font-size: 85px; transform: rotate(-25deg); }
.card-content::before { left: -13px; bottom: -23px; }
.card-content::after { top: -20px; right: 0; transform: rotate(24deg); }
.content-topline { position: absolute; z-index: 1; top: 25px; right: 30px; left: 30px; display: flex; justify-content: space-between; color: #a98b94; font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.card-code { font-family: Georgia, serif; }
.surprise-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 64px; height: 58px; margin-bottom: 16px; border: 2px solid var(--ink); border-radius: 48% 48% 42% 42%; color: var(--ink); font-size: 27px; background: var(--pink-soft); box-shadow: 4px 4px 0 var(--butter); transform: rotate(-3deg); }
.surprise-text { position: relative; z-index: 1; max-width: 520px; margin: 0; font-size: clamp(24px, 4vw, 34px); font-weight: 850; line-height: 1.45; letter-spacing: -.025em; }
.content-note { position: relative; z-index: 1; margin-top: 13px; color: #9c858c; font-size: 11px; }
.cat-face { position: absolute; right: 26px; bottom: 19px; width: 42px; height: 25px; opacity: .45; }
.cat-face i { position: absolute; top: 3px; width: 5px; height: 6px; border-radius: 50%; background: var(--ink); }
.cat-face i:first-child { left: 7px; }
.cat-face i:nth-child(2) { right: 7px; }
.cat-face b { position: absolute; right: 0; bottom: 0; left: 0; font-size: 12px; text-align: center; }
#scratchCanvas { position: absolute; z-index: 5; inset: 0; display: block; width: 100%; height: 100%; cursor: grab; transition: opacity .42s ease; }
#scratchCanvas:active { cursor: grabbing; }
#scratchCanvas.revealed { pointer-events: none; opacity: 0; }
.scratch-complete { position: absolute; z-index: 6; right: 18px; bottom: 17px; padding: 6px 10px; border: 1px solid rgba(91,67,74,.15); border-radius: 99px; color: #966d7a; font-size: 9px; font-weight: 900; opacity: 0; background: rgba(255,255,255,.82); transform: translateY(5px); transition: .3s; }
.scratch-complete.show { opacity: 1; transform: none; }
.scratch-progress { display: grid; grid-template-columns: auto 1fr 38px; gap: 12px; align-items: center; margin: 30px 14px 0; color: #9c858c; font-size: 10px; font-weight: 800; }
.progress-track { overflow: hidden; height: 8px; border-radius: 99px; background: rgba(195, 148, 162, .16); }
.progress-track i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--pink), var(--pink-deep)); transition: width .2s; }
.scratch-progress strong { color: var(--ink); text-align: right; }
.actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 28px auto 0; }
.actions button { min-height: 48px; padding: 0 19px; border-radius: 15px; font-size: 12px; font-weight: 850; cursor: pointer; transition: .18s; }
.primary-button { border: 2px solid var(--ink); color: #fff; background: var(--ink); box-shadow: 4px 4px 0 var(--pink); }
.primary-button:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--pink); }
.primary-button span { margin-left: 7px; }
.secondary-button { border: 2px solid var(--ink); color: var(--ink); background: var(--pink-soft); }
.secondary-button:hover { transform: translateY(-2px); background: #ffdce5; }
.ghost-button { border: 1px solid var(--line); color: #826f75; background: rgba(255,255,255,.55); }
.ghost-button:hover { border-color: rgba(111,80,89,.3); background: #fff; }

.playground { margin-bottom: 85px; }
.interaction-card { display: grid; grid-template-columns: .85fr 1.15fr; gap: 32px; align-items: center; padding: 30px; border: 1.5px solid var(--line); border-radius: 28px; background: rgba(255,253,249,.78); box-shadow: 0 14px 40px rgba(111, 80, 89, .07); }
.interaction-copy { padding: 4px 10px; }
.bubble-cat { display: inline-block; margin-bottom: 10px; color: var(--pink-deep); font: 700 20px/1 monospace; }
.interaction-copy h3 { margin: 0 0 8px; font-size: 21px; }
.interaction-copy p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.quick-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.quick-actions button { display: flex; align-items: center; justify-content: space-between; min-height: 58px; padding: 0 16px; border: 1.5px solid rgba(111,80,89,.17); border-radius: 17px; color: var(--ink); font-size: 12px; font-weight: 850; cursor: pointer; background: #fff; transition: .18s; }
.quick-actions button:nth-child(1) { background: #fff0f3; }
.quick-actions button:nth-child(2) { background: #f9f1ff; }
.quick-actions button:nth-child(3) { background: #fff8e8; }
.quick-actions button:nth-child(4) { background: #ffefea; }
.quick-actions button:hover { border-color: var(--ink); transform: translateY(-2px) rotate(-.5deg); box-shadow: 3px 3px 0 var(--pink); }
.quick-actions span { font-size: 15px; }
.friend-log { display: flex; flex-wrap: wrap; gap: 8px; min-height: 44px; padding: 14px 4px 0; }
.friend-log .log-pill, .empty-log { padding: 7px 11px; border: 1px solid var(--line); border-radius: 99px; color: var(--muted); font-size: 10px; background: rgba(255,255,255,.55); animation: pop-in .25s ease both; }
.friend-log .log-pill strong { color: var(--pink-deep); }

.cat-rules { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cat-rules > div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 25px 22px; border-right: 1px solid var(--line); }
.cat-rules > div:last-child { border-right: 0; }
.cat-rules span { color: var(--pink-deep); font: 800 12px/1.6 Georgia, serif; }
.cat-rules p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.cat-rules strong { display: block; color: var(--ink); font-size: 13px; }
footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 9px; padding: 32px 0 45px; color: #a38f95; font-size: 10px; }
footer i { color: var(--pink-deep); font-style: normal; }
footer small { flex-basis: 100%; margin-top: 3px; text-align: center; }

.barrage-layer { position: fixed; z-index: 30; inset: 0; overflow: hidden; pointer-events: none; }
.barrage-item { position: absolute; left: 100%; display: flex; align-items: center; gap: 7px; width: max-content; max-width: 78vw; padding: 7px 12px 7px 8px; border: 1px solid rgba(111,80,89,.13); border-radius: 99px; color: #715b62; font-size: 11px; font-weight: 750; white-space: nowrap; background: rgba(255, 253, 249, .88); box-shadow: 0 6px 22px rgba(111,80,89,.1); backdrop-filter: blur(7px); animation: barrage-move var(--duration, 11s) linear forwards; }
.barrage-item .dot { display: grid; place-items: center; width: 23px; height: 23px; border: 1px solid rgba(81,66,71,.2); border-radius: 50%; font-size: 11px; background: var(--item-color, var(--pink-soft)); }
.barrage-item strong { color: var(--pink-deep); }
.toast { position: fixed; z-index: 40; left: 50%; bottom: 25px; padding: 11px 17px; border-radius: 99px; color: #fff; font-size: 11px; font-weight: 800; pointer-events: none; opacity: 0; background: var(--ink); transform: translate(-50%, 12px); transition: .22s; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@keyframes barrage-move { to { transform: translateX(calc(-100vw - 100% - 40px)); } }
@keyframes pop-in { from { opacity: 0; transform: scale(.85) translateY(4px); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
  .barrage-item { animation-duration: 1ms; }
}

@media (max-width: 760px) {
  .page-shell { width: min(100% - 28px, 1080px); }
  .topbar { min-height: 72px; }
  .intro { margin: 55px auto 52px; }
  .intro h1 { font-size: 47px; }
  .player-picker { margin-bottom: 75px; }
  .player-list { grid-template-columns: repeat(2, 1fr); }
  .scratch-card { aspect-ratio: 1.4 / 1; }
  .card-content { padding: 36px 32px 28px; }
  .interaction-card { grid-template-columns: 1fr; gap: 21px; }
  .cat-rules { grid-template-columns: 1fr; }
  .cat-rules > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .cat-rules > div:last-child { border-bottom: 0; }
}

@media (max-width: 480px) {
  .counter span:first-child { display: none; }
  .counter { padding: 7px 10px; }
  .intro h1 { font-size: 39px; }
  .intro p { font-size: 13px; }
  .section-heading { align-items: start; flex-direction: column; gap: 7px; }
  .section-heading h2 { font-size: 21px; }
  .player-list { gap: 10px; }
  .player-button { gap: 9px; padding: 11px; border-radius: 18px; }
  .player-avatar { flex-basis: 41px; width: 41px; height: 39px; }
  .player-avatar i::before { left: 10px; }
  .player-avatar i::after { right: 10px; }
  .player-copy strong { font-size: 12px; }
  .player-copy small { display: none; }
  .cat-ear { top: -20px; width: 62px; height: 62px; }
  .ear-left { left: 35px; }
  .ear-right { right: 35px; }
  .scratch-card { aspect-ratio: 1.08 / 1; border-radius: 27px; }
  .content-topline { top: 20px; right: 21px; left: 21px; }
  .surprise-icon { width: 56px; height: 51px; margin-bottom: 13px; }
  .surprise-text { font-size: 22px; }
  .content-note { margin-top: 10px; }
  .actions { align-items: stretch; flex-direction: column; }
  .quick-actions { grid-template-columns: 1fr; }
  .interaction-card { padding: 23px 18px; }
  .barrage-item { font-size: 10px; }
}

/* 软萌主题：圆润字体、奶油色层次和贴纸装饰 */
:root {
  --ink: #715d64;
  --muted: #a18890;
  --cream: #fffaf4;
  --line: rgba(201, 151, 166, .18);
  font-family: "Arial Rounded MT Bold", "Hiragino Maru Gothic ProN", "PingFang SC", -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 222, 230, .48) 0 90px, transparent 92px),
    radial-gradient(circle at 94% 34%, rgba(245, 225, 190, .42) 0 125px, transparent 127px),
    linear-gradient(180deg, #fffaf5, #fff8f2 55%, #fffaf7);
}

body::after {
  content: "♡ 　🐾　 · 　♡ 　🐾　 · 　♡";
  position: fixed;
  z-index: -2;
  right: -110px;
  bottom: 12%;
  color: rgba(231, 167, 185, .13);
  font-size: 30px;
  letter-spacing: 12px;
  transform: rotate(-74deg);
  pointer-events: none;
}

h1, h2, h3, button, .brand, .counter, .surprise-text { font-family: inherit; }
.topbar { border-bottom: 1px dashed rgba(211, 161, 176, .25); }
.mini-cat, .mini-cat::before, .mini-cat::after { border-color: rgba(113, 93, 100, .48); }
.counter { border: 0; background: rgba(255, 237, 242, .75); box-shadow: inset 0 0 0 1px rgba(213, 159, 176, .16); }

.intro { position: relative; max-width: 880px; margin-bottom: 52px; padding: 45px 55px 28px; border-radius: 54px; background: rgba(255,255,255,.48); box-shadow: 0 20px 70px rgba(215, 164, 179, .08); }
.intro::before, .intro::after { content: ""; position: absolute; z-index: -1; border-radius: 50%; background: rgba(255,255,255,.62); }
.intro::before { top: -28px; left: 9%; width: 95px; height: 68px; box-shadow: 70px 1px 0 rgba(255,255,255,.62), 138px 17px 0 rgba(255,255,255,.62); }
.intro::after { right: 7%; bottom: 48px; width: 72px; height: 55px; box-shadow: -55px 10px 0 rgba(255,255,255,.62); }
.eyebrow { font-weight: 700; letter-spacing: .13em; }
.intro h1 { font-weight: 700; letter-spacing: -.045em; text-shadow: 0 3px 0 rgba(255,255,255,.95); }
.intro h1 em { font-family: "Kaiti SC", "STKaiti", "Hiragino Maru Gothic ProN", cursive; font-weight: 600; }
.intro p { font-weight: 400; }
.hero-sticker { position: absolute; z-index: 2; display: grid; place-items: center; width: 76px; height: 76px; border: 1px solid rgba(202, 150, 166, .23); border-radius: 48% 52% 46% 54%; color: #b57e8f; font-size: 11px; line-height: 1.45; background: #fff0f4; box-shadow: 0 8px 20px rgba(190, 136, 153, .1); }
.sticker-left { left: -42px; top: 32px; transform: rotate(-11deg); }
.sticker-right { right: -30px; top: 80px; width: 64px; height: 64px; background: #fff6dc; transform: rotate(9deg); }

.cat-peek-row { position: relative; z-index: 2; display: flex; justify-content: center; gap: 15px; margin-top: 31px; }
.peek-cat { display: grid; justify-items: center; gap: 7px; }
.peek-cat > span { position: relative; display: block; width: 56px; height: 48px; border: 1px solid rgba(113,93,100,.3); border-radius: 48% 48% 43% 43%; background: var(--cat-color); box-shadow: inset 0 -7px 0 rgba(255,255,255,.18), 0 5px 13px rgba(169, 121, 136, .08); }
.peek-cat > span::before, .peek-cat > span::after { content: ""; position: absolute; z-index: -1; top: -9px; width: 19px; height: 19px; border: 1px solid rgba(113,93,100,.3); border-radius: 5px; background: var(--cat-color); transform: rotate(45deg); }
.peek-cat > span::before { left: 3px; }
.peek-cat > span::after { right: 3px; }
.peek-cat i::before, .peek-cat i::after { content: ""; position: absolute; top: 18px; width: 5px; height: 6px; border-radius: 50%; background: rgba(113,93,100,.75); }
.peek-cat i::before { left: 14px; }
.peek-cat i::after { right: 14px; }
.peek-cat b { position: absolute; right: 0; bottom: 7px; left: 0; font-size: 12px; font-weight: 400; }
.peek-cat small { color: #aa8b94; font-size: 9px; }
.peek-cat.pink { --cat-color: #f8c5d2; }
.peek-cat.peach { --cat-color: #f7d2c5; }
.peek-cat.lilac { --cat-color: #e0d5ef; }
.peek-cat.butter { --cat-color: #f7e8bd; }

.soft-divider { display: flex; align-items: center; justify-content: center; gap: 13px; margin: 2px auto 50px; color: #d99eb0; font-size: 12px; }
.soft-divider i { width: 56px; height: 1px; background: linear-gradient(90deg, transparent, rgba(218,165,181,.45), transparent); }
.soft-divider.second { margin: -35px auto 56px; color: #d7b9c2; }

.section-heading h2 { font-weight: 650; letter-spacing: -.015em; }
.section-heading > div > span { font-weight: 650; }
.player-button { border: 0; border-radius: 26px; background: rgba(255,255,255,.7); box-shadow: inset 0 0 0 1px rgba(214, 167, 181, .17), 0 11px 30px rgba(179, 127, 143, .07); }
.player-button:hover { border-color: transparent; box-shadow: inset 0 0 0 1px rgba(214, 167, 181, .3), 0 13px 30px rgba(179,127,143,.1); }
.player-button.active { border: 0; background: #fffdfb; box-shadow: 0 8px 22px rgba(174,122,138,.1), 5px 6px 0 var(--player-color); }
.player-button.active::after { color: #886b74; background: #fff0f4; box-shadow: 0 3px 9px rgba(183,130,146,.1); }
.player-avatar, .player-avatar::before, .player-avatar::after { border-width: 1px; border-color: rgba(113,93,100,.3); }
.player-copy strong { font-weight: 650; }

.scratch-section { padding: 30px 0 24px; border-radius: 55px; background: radial-gradient(ellipse at center, rgba(255, 231, 237, .38), transparent 70%); }
.card-shadow { border: 0; background: #f9d8df; box-shadow: 0 12px 32px rgba(190,135,152,.09); }
.cat-ear { border-width: 1px; border-color: rgba(151, 112, 123, .28); }
.scratch-card { border: 0; border-radius: 38px; box-shadow: 0 18px 48px rgba(164, 113, 129, .13), inset 0 0 0 1px rgba(213,159,176,.16); }
.surprise-icon { border: 0; color: #846a72; box-shadow: 4px 4px 0 rgba(245,223,170,.72); }
.surprise-text { color: #715d64; font-weight: 650; }
.card-charm { position: absolute; z-index: 4; top: 35%; width: 72px; padding: 11px 8px; border-radius: 20px; color: #a87d8b; font-size: 9px; line-height: 1.45; text-align: center; background: rgba(255,255,255,.84); box-shadow: 0 8px 24px rgba(175,124,140,.11); }
.card-charm b { color: #d3899f; font-size: 10px; font-weight: 650; }
.charm-left { left: -94px; transform: rotate(-8deg); }
.charm-right { right: -94px; transform: rotate(8deg); }

.actions button { border: 0; border-radius: 99px; font-weight: 650; }
.primary-button { color: #745b63; background: #f7c6d3; box-shadow: 0 7px 18px rgba(208, 139, 160, .2); }
.primary-button:hover { transform: translateY(-2px); box-shadow: 0 10px 23px rgba(208,139,160,.25); }
.secondary-button { border: 0; color: #7d6670; background: #fff0f3; box-shadow: inset 0 0 0 1px rgba(215,165,181,.18); }
.ghost-button { border: 0; background: rgba(255,255,255,.68); box-shadow: inset 0 0 0 1px rgba(215,165,181,.15); }

.interaction-card { border: 0; border-radius: 34px; background: rgba(255,255,255,.65); box-shadow: inset 0 0 0 1px rgba(214,167,181,.15), 0 16px 45px rgba(173,122,138,.08); }
.interaction-copy h3 { font-weight: 650; }
.quick-actions button { border: 0; border-radius: 22px; font-weight: 650; box-shadow: inset 0 0 0 1px rgba(199,150,165,.12); }
.quick-actions button:hover { border-color: transparent; box-shadow: 0 7px 18px rgba(202,139,158,.13); transform: translateY(-2px); }
.friend-log .log-pill, .empty-log { border: 0; background: #fff5f7; box-shadow: inset 0 0 0 1px rgba(215,165,181,.13); }

.cat-rules { gap: 12px; border: 0; }
.cat-rules > div { border: 0; border-radius: 24px; background: rgba(255,255,255,.58); box-shadow: inset 0 0 0 1px rgba(215,165,181,.14); }
.cat-rules strong { font-weight: 650; }
.barrage-item { border: 0; color: #806971; font-weight: 550; background: rgba(255, 249, 247, .9); box-shadow: 0 7px 24px rgba(182,128,144,.11), inset 0 0 0 1px rgba(215,165,181,.14); }
.barrage-item strong { font-weight: 650; }

@media (max-width: 900px) {
  .card-charm { display: none; }
  .hero-sticker { transform: scale(.84) rotate(-8deg); }
  .sticker-left { left: -18px; }
  .sticker-right { right: -5px; transform: scale(.84) rotate(8deg); }
}

@media (max-width: 620px) {
  .intro { padding: 38px 18px 24px; border-radius: 38px; }
  .hero-sticker { display: none; }
  .cat-peek-row { gap: 9px; }
  .peek-cat > span { width: 47px; height: 43px; }
  .peek-cat i::before { left: 12px; }
  .peek-cat i::after { right: 12px; }
  .soft-divider { margin-bottom: 42px; }
  .scratch-section { border-radius: 38px; }
  .cat-rules { gap: 9px; }
}
