:root { --ink: #151719; --muted: #64676c; --paper: #f7f5f1; --panel: #ffffff; --line: #dfddd8; --accent: #a62420; --accent-dark: #7d1816; --gold: #b9914f; --soft-gold: #f5eee1; --dark-panel: #202224; --shadow: 0 14px 34px rgba(25, 25, 25, .09); --c-header: #fff3cf; --c-header-soft: rgba(255, 232, 176, .82); --c-dark-bg: #0d0b08; --c-dark-glass: rgba(15, 14, 11, .58); --c-dark-glass-strong: rgba(15, 14, 11, .92); --c-gold-line: rgba(255, 221, 150, .42); --c-gold-line-soft: rgba(255, 221, 150, .28); --c-gold-hover: #ffe7aa; --grad-logo: linear-gradient(135deg, #f7d68a, #a87521); --grad-logo-light: linear-gradient(135deg, #fff8df, #d7a848); --grad-dark-panel: linear-gradient(135deg, rgba(255, 221, 150, .14), rgba(255, 255, 255, .04)); --grad-light-panel: linear-gradient(135deg, #fff, #f4efe6); }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--c-dark-bg); color: var(--ink); font-family: Inter, "Noto Sans TC", "Microsoft JhengHei", system-ui, sans-serif; line-height: 1.65; overflow-x: hidden; }
body[data-theme="dark"] { --ink: #f7f0df; --muted: #d9c8a3; --paper: #11100d; --panel: rgba(26, 24, 20, .94); --line: rgba(255, 221, 150, .18); --accent: #d9a23b; --accent-dark: #b67b21; --gold: #f0c36b; --soft-gold: rgba(255, 221, 150, .12); --shadow: 0 18px 42px rgba(0, 0, 0, .3); background: var(--c-dark-bg); }
body[data-theme="light"] { --ink: #152032; --muted: #526071; --paper: #f5f8fc; --panel: #ffffff; --line: #d9e3ee; --accent: #125ca8; --accent-dark: #0b4480; --gold: #b7791f; --soft-gold: #fff7e8; --shadow: 0 16px 34px rgba(15, 35, 62, .1); background: #f5f8fc; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 20; color: var(--c-header); }
.header-inner { display: flex; min-height: 92px; align-items: center; gap: 18px; }
.brand { display: flex; align-items: center; gap: 10px; min-width: 245px; margin-right: auto; }
.logo-mark { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--c-gold-line); border-radius: 14px; background: var(--grad-logo); color: #111; box-shadow: 0 16px 38px rgba(0, 0, 0, .22); }
.logo-mark i { font-size: 24px; line-height: 1; }
.brand strong, .brand small { display: block; }
.brand strong { color: var(--c-header); font-size: clamp(20px, 2.7vw, 28px); font-weight: 900; letter-spacing: .04em; text-shadow: 0 2px 16px rgba(0, 0, 0, .42); }
.brand small { color: var(--c-header-soft); font-size: 10px; letter-spacing: 1px; }
.header-menu { position: relative; z-index: 30; margin-left: 0; }
.menu-toggle { display: inline-grid; width: 44px; min-width: 44px; height: 44px; min-height: 44px; place-items: center; border: 1px solid var(--c-gold-line); border-radius: 999px; background: var(--c-dark-glass); color: var(--c-header); box-shadow: 0 12px 28px rgba(0, 0, 0, .18); backdrop-filter: blur(10px); cursor: pointer; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease; }
.menu-toggle:hover, .menu-toggle:focus-visible, .header-menu.open .menu-toggle { border-color: rgba(255, 221, 150, .78); background: rgba(45, 33, 12, .72); box-shadow: 0 0 0 3px rgba(255, 221, 150, .16), 0 14px 30px rgba(0, 0, 0, .22); outline: 0; transform: translateY(-1px); }
.menu-toggle svg { width: 21px; height: 21px; }
.site-nav { position: absolute; top: calc(100% + 10px); right: 0; display: grid; min-width: 190px; padding: 8px; gap: 6px; border: 1px solid var(--c-gold-line-soft); border-radius: 8px; background: var(--c-dark-glass-strong); box-shadow: 0 18px 42px rgba(0, 0, 0, .28); backdrop-filter: blur(14px); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-6px); transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }
.header-menu.open .site-nav { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.site-nav a { display: inline-flex; min-height: 42px; align-items: center; justify-content: flex-start; gap: 8px; padding: 9px 12px; border: 1px solid rgba(255, 221, 150, .34); border-radius: 7px; background: rgba(15, 14, 11, .56); color: #fff3cf; box-shadow: none; backdrop-filter: blur(10px); font-size: 14px; font-weight: 900; white-space: nowrap; }
.site-nav a:hover, .site-nav a.active { border-color: rgba(255, 221, 150, .72); color: #ffe7aa; background: rgba(45, 33, 12, .66); }
.site-nav svg { width: 16px; height: 16px; }
.points-balance { display: flex; align-items: center; gap: 7px; min-height: 44px; padding: 10px 14px; border: 1px solid rgba(255, 221, 150, .34); border-radius: 999px; background: rgba(15, 14, 11, .56); color: #fff3cf; box-shadow: 0 12px 28px rgba(0, 0, 0, .18); backdrop-filter: blur(10px); font-size: 13px; font-weight: 900; }
.points-balance svg, .price svg { width: 17px; height: 17px; }
.points-balance strong { color: #ffe7aa; font-size: 16px; }
.theme-toggle { position: relative; display: inline-grid; width: 44px; min-width: 44px; height: 44px; min-height: 44px; place-items: center; overflow: hidden; border: 1px solid rgba(255, 221, 150, .42); border-radius: 999px; background: rgba(15, 14, 11, .58); box-shadow: 0 12px 28px rgba(0, 0, 0, .18); backdrop-filter: blur(10px); cursor: pointer; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease; }
.theme-toggle:hover, .theme-toggle:focus-visible { border-color: rgba(255, 221, 150, .78); box-shadow: 0 0 0 3px rgba(255, 221, 150, .16), 0 14px 30px rgba(0, 0, 0, .22); outline: 0; transform: translateY(-1px); }
.theme-toggle[disabled] { opacity: .72; cursor: not-allowed; transform: none; }
body[data-theme-locked] .theme-toggle { display: none; }
.theme-toggle-img { position: absolute; inset: 5px; width: 32px; height: 32px; border-radius: 999px; object-fit: cover; opacity: 0; transform: scale(.72) rotate(-18deg); transition: opacity .18s ease, transform .18s ease; }
body[data-theme="dark"] .theme-toggle-night, body[data-theme="light"] .theme-toggle-day { opacity: 1; transform: scale(1) rotate(0); }
body[data-theme="light"] .theme-toggle { border-color: rgba(18, 92, 168, .22); background: rgba(255, 255, 255, .82); box-shadow: 0 12px 28px rgba(15, 35, 62, .12); }
.hero { isolation: isolate; position: relative; display: flex; min-height: min(670px, 84vh); align-items: flex-end; overflow: hidden; background: #191919 url("../img/black-panther-shop-hero.jpg") center top / cover no-repeat; }
@media (min-width: 1024px) { .hero { min-height: 800px; } }
.hero-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10, 9, 7, .18), rgba(10, 9, 7, .08) 52%, rgba(10, 9, 7, .2)); }
.hero-content { display: flex; flex-direction: column; justify-content: flex-end; min-height: min(670px, 84vh); padding: 118px 0 34px; color: #fff; }
.hero-copy-panel { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.eyebrow, .section-kicker { margin: 0 0 9px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 1.4px; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 780px; margin-bottom: 12px; color: #fff4d5; font-size: clamp(34px, 5vw, 58px); line-height: 1.08; text-shadow: 0 2px 18px rgba(0, 0, 0, .42); }
.hero-copy { max-width: 620px; margin-bottom: 0; color: rgba(255, 248, 230, .92); font-size: 18px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.hero-badges span { display: inline-flex; min-height: 40px; align-items: center; gap: 8px; padding: 8px 13px; border: 1px solid rgba(255, 221, 150, .34); border-radius: 999px; background: rgba(12, 12, 12, .52); color: #ffe7aa; font-weight: 900; backdrop-filter: blur(10px); }
.hero-badges svg { width: 17px; height: 17px; }
.about-hero { isolation: isolate; position: relative; min-height: min(500px, 72vh); display: flex; align-items: flex-end; overflow: hidden; background: #191919 url("../img/black-panther-shop-hero.jpg") center top / cover no-repeat; }
.about-hero-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10, 9, 7, .24), rgba(10, 9, 7, .1) 48%, rgba(10, 9, 7, .82)); }
.about-hero-content { padding: 128px 0 56px; color: #fff8e6; text-shadow: 0 2px 18px rgba(0, 0, 0, .42); }
.about-hero-content h1 { max-width: 760px; margin-bottom: 14px; }
.about-hero-content p:not(.eyebrow) { max-width: 680px; margin: 0; color: rgba(255, 248, 230, .92); font-size: 18px; }
.about-section { padding: 76px 0; background: var(--paper); }
.about-section-soft { background: #fff; }
.about-section-dark { background: #171613; color: #fff8e6; }
.about-section-dark .section-heading p, .about-section-dark .about-card p, .about-section-dark .about-card a { color: rgba(255, 248, 230, .76); }
.about-intro, .about-split { display: grid; grid-template-columns: minmax(210px, .58fr) minmax(0, 1fr); gap: clamp(28px, 6vw, 72px); align-items: start; }
.about-intro h2, .about-split h2 { margin-bottom: 0; font-size: clamp(30px, 4vw, 44px); line-height: 1.18; }
.about-intro p, .about-split p { color: var(--muted); font-size: 17px; }
.about-intro p:last-child { margin-bottom: 0; }
.section-heading.centered { display: block; text-align: center; }
.about-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.about-card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.about-card, .about-panel { border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: var(--shadow); }
.about-card { min-height: 250px; padding: 26px; }
.about-card > svg { width: 34px; height: 34px; margin-bottom: 18px; color: var(--accent); }
.about-card h2 { margin-bottom: 10px; font-size: 21px; }
.about-card p { margin: 0; color: var(--muted); }
.about-card a { color: var(--accent); font-weight: 900; }
.about-category-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.about-panel { padding: 28px; }
.about-panel h3 { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; font-size: 22px; }
.about-panel h3 svg { width: 22px; height: 22px; color: var(--accent); }
.about-panel ul { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.about-panel li { display: flex; gap: 9px; align-items: center; color: #4c5054; }
.about-panel li svg { width: 17px; height: 17px; color: #257443; }
.about-panel hr { height: 1px; margin: 20px 0; border: 0; background: var(--line); }
.about-panel > p:last-child { margin-bottom: 0; }
.dark-card, .about-section-dark .about-card { border-color: rgba(255, 221, 150, .2); background: rgba(255, 255, 255, .055); box-shadow: none; }
.dark-card > svg { color: #f7d68a; }
.primary-action, .redeem-button, .modal-confirm { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; border: 0; border-radius: 6px; background: var(--accent); color: #fff; cursor: pointer; font-weight: 800; transition: background .2s ease, transform .2s ease, box-shadow .2s ease; }
.primary-action { padding: 11px 18px; }
.primary-action:hover, .redeem-button:hover, .modal-confirm:hover { background: var(--accent-dark); box-shadow: 0 8px 16px rgba(125, 24, 22, .2); transform: translateY(-2px); }
.primary-action svg, .redeem-button svg { width: 18px; }
.store-strip { border-bottom: 1px solid var(--line); background: #fff; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-grid div { display: flex; min-height: 72px; align-items: center; justify-content: center; gap: 9px; border-right: 1px solid var(--line); color: #4e5053; font-size: 14px; font-weight: 700; }
.strip-grid div:first-child { border-left: 1px solid var(--line); }
.strip-grid svg { width: 19px; color: var(--accent); }
.catalog-section, .process-section, .faq-section { padding: 78px 0; }
.catalog-search-panel { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) auto; gap: 14px; margin-bottom: 34px; padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 8px 22px rgba(25, 25, 25, .05); }
.search-field { min-width: 0; }
.search-field.full-field { grid-column: 1 / -1; }
.search-field label { display: block; margin-bottom: 5px; color: #5b5e62; font-size: 12px; font-weight: 800; }
.search-input-wrap { position: relative; }
.search-input-wrap svg { position: absolute; top: 50%; left: 11px; width: 17px; height: 17px; color: #898d91; pointer-events: none; transform: translateY(-50%); }
.search-field input, .search-field select { width: 100%; min-height: 42px; border: 1px solid #d7d4ce; border-radius: 5px; background: #fff; color: var(--ink); font: inherit; font-size: 14px; }
.search-field input { padding: 8px 11px 8px 36px; }
.search-field select { padding: 8px 10px; }
.search-field input:focus, .search-field select:focus { border-color: var(--accent); outline: 3px solid rgba(166, 36, 32, .1); }
.clear-filter-button { display: inline-flex; min-height: 42px; align-items: center; align-self: end; gap: 6px; padding: 8px 12px; border: 1px solid #d7d4ce; border-radius: 5px; background: #fff; color: #56595d; cursor: pointer; font-weight: 800; }
.clear-filter-button:hover { border-color: var(--ink); color: var(--ink); }
.clear-filter-button svg { width: 16px; height: 16px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.section-heading h2, .faq-layout h2 { margin-bottom: 4px; font-size: 32px; line-height: 1.2; }
.section-heading p { margin-bottom: 0; color: var(--muted); }
.catalog-count { color: var(--muted); font-size: 13px; }
.catalog-tools { display: flex; align-items: center; gap: 14px; }
.view-switch { display: flex; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 6px; background: #fff; }
.view-button { display: inline-flex; min-height: 32px; align-items: center; gap: 5px; padding: 5px 8px; border: 0; border-radius: 4px; background: transparent; color: var(--muted); cursor: pointer; font-size: 12px; font-weight: 800; }
.view-button svg { width: 15px; height: 15px; }
.view-button:hover, .view-button.active { background: var(--ink); color: #fff; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.catalog-grid[hidden], .catalog-table-wrap[hidden], .catalog-empty[hidden] { display: none; }
.source-card { display: flex; min-width: 0; overflow: hidden; flex-direction: column; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); box-shadow: 0 9px 24px rgba(25, 25, 25, .06); }
.source-media { position: relative; display: grid; width: 100%; aspect-ratio: 16 / 10; place-items: center; overflow: hidden; border: 0; background: #e9e5df; }
.source-media-image { padding: 0; cursor: zoom-in; }
.source-media-image img { width: 100%; height: 100%; object-fit: cover; }
.source-media-image span { position: absolute; right: 9px; bottom: 9px; display: flex; align-items: center; gap: 5px; padding: 5px 7px; border-radius: 4px; background: rgba(21, 23, 25, .86); color: #fff; font-size: 11px; font-weight: 800; }
.source-media-image span svg { width: 14px; height: 14px; }
.source-media-icon { color: #9b2925; background: linear-gradient(rgba(255, 255, 255, .52), rgba(255, 255, 255, .52)), repeating-linear-gradient(135deg, #eee7db 0 10px, #e7ded0 10px 20px); }
.source-media-icon svg { width: 60px; height: 60px; stroke-width: 1.4; }
.source-body { display: flex; min-width: 0; flex: 1; flex-direction: column; padding: 17px; }
.source-body .product-meta { margin-bottom: 11px; }
.source-body h3 { margin-bottom: 7px; font-size: 19px; line-height: 1.35; }
.source-body > p { margin-bottom: 15px; color: var(--muted); font-size: 13px; }
.source-features { display: grid; gap: 5px; margin: 0 0 16px; padding: 0; list-style: none; color: #55585c; font-size: 12px; }
.source-features li { display: flex; align-items: center; gap: 5px; }
.source-features svg { width: 14px; height: 14px; color: #257443; }
.source-footer { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.source-footer .price strong { font-size: 19px; }
.source-footer .price .free-price { color: #257443; }
.source-actions { display: flex; gap: 7px; margin-top: 11px; }
.source-actions .redeem-button { min-width: 0; flex: 1; padding: 8px 10px; font-size: 13px; }
.demo-link { display: inline-flex; min-width: 0; align-items: center; justify-content: center; gap: 5px; padding: 8px 9px; border: 1px solid #cec9c0; border-radius: 6px; background: #fff; color: #55585c; font-size: 12px; font-weight: 800; }
.demo-link:hover { border-color: var(--ink); color: var(--ink); }
.demo-link svg { width: 15px; height: 15px; }
.free-download-button { background: #257443; }
.free-download-button:hover { background: #1c5d34; box-shadow: 0 8px 16px rgba(28, 93, 52, .18); }
.catalog-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 8px 22px rgba(25, 25, 25, .05); }
.catalog-table { width: 100%; min-width: 1040px; border-collapse: collapse; font-size: 13px; }
.catalog-table th { padding: 12px; background: #f3f0eb; color: #65686c; font-size: 12px; text-align: left; white-space: nowrap; }
.catalog-table td { padding: 12px; border-top: 1px solid #ebe8e2; vertical-align: middle; }
.catalog-table tbody tr:hover { background: #fcfbf8; }
.table-tool-name { display: flex; min-width: 230px; align-items: center; gap: 9px; }
.table-tool-icon { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; border-radius: 5px; background: #f7e9e8; color: var(--accent); }
.table-tool-icon svg { width: 18px; height: 18px; }
.table-price { color: #805d23; white-space: nowrap; }
.table-summary { max-width: 340px; color: var(--muted); }
.table-actions { display: flex; gap: 6px; justify-content: end; white-space: nowrap; }
.table-actions .demo-link, .table-actions .redeem-button { min-width: 0; padding: 7px 9px; font-size: 12px; }
.catalog-empty { margin: 0; padding: 26px; border: 1px dashed #c9c5bd; border-radius: 8px; background: #fff; color: var(--muted); text-align: center; }
.catalog-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 22px; }
.catalog-pagination button, .catalog-pagination strong { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--line); border-radius: 4px; background: #fff; color: #9a9da1; }
.catalog-pagination strong { border-color: var(--accent); background: var(--accent); color: #fff; }
.catalog-pagination svg { width: 16px; height: 16px; }
.discovery-section { padding: 54px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.discovery-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: 46px; align-items: center; }
.discovery-layout h2 { margin-bottom: 9px; font-size: 28px; line-height: 1.25; }
.discovery-layout p { margin-bottom: 0; color: var(--muted); }
.popular-searches { padding: 18px; border-left: 3px solid var(--gold); background: #faf7f1; }
.popular-searches strong { display: block; margin-bottom: 11px; font-size: 14px; }
.keyword-list { display: flex; flex-wrap: wrap; gap: 7px; }
.keyword-list button { padding: 6px 9px; border: 1px solid #e5d8bf; border-radius: 999px; background: #fff; color: #74572a; cursor: pointer; font-size: 12px; font-weight: 800; }
.keyword-list button:hover { border-color: #b9914f; background: var(--soft-gold); }
.catalog-grid[data-view="list"] { grid-template-columns: 1fr; gap: 9px; }
.catalog-grid[data-view="list"] .source-card { display: grid; grid-template-columns: 102px minmax(0, 1fr); }
.catalog-grid[data-view="list"] .source-media { height: 100%; min-height: 144px; aspect-ratio: auto; }
.catalog-grid[data-view="list"] .source-media-image span { display: none; }
.catalog-grid[data-view="list"] .source-media-icon svg { width: 42px; height: 42px; }
.catalog-grid[data-view="list"] .source-body { display: grid; grid-template-columns: minmax(190px, 1fr) minmax(240px, 1.5fr) auto; grid-template-rows: auto auto; align-items: center; gap: 6px 18px; padding: 14px 16px; }
.catalog-grid[data-view="list"] .product-meta { grid-column: 1; grid-row: 1; margin: 0; }
.catalog-grid[data-view="list"] h3 { grid-column: 1; grid-row: 2; margin: 0; font-size: 17px; }
.catalog-grid[data-view="list"] .source-body > p { grid-column: 2; grid-row: 1 / span 2; margin: 0; }
.catalog-grid[data-view="list"] .source-features { display: none; }
.catalog-grid[data-view="list"] .source-footer { grid-column: 3; grid-row: 1 / span 2; min-width: 210px; margin: 0; padding: 0 0 0 14px; border-top: 0; border-left: 1px solid var(--line); }
/* 簡易工具介紹頁 */
.simple-tools-hero { isolation: isolate; position: relative; display: flex; min-height: 610px; align-items: flex-end; overflow: hidden; padding: 150px 0 64px; background: #191919 url("../img/black-panther-shop-hero.jpg") center top / cover no-repeat; color: #fff8e6; text-align: center; }
.simple-tools-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10, 9, 7, .2), rgba(10, 9, 7, .08) 46%, rgba(10, 9, 7, .72)); }
.simple-tools-hero-inner { position: relative; z-index: 1; }
.simple-tools-hero h1 { max-width: none; margin: 0 auto 12px; color: #fff4d5; font-size: clamp(36px, 5vw, 58px); }
.simple-tools-hero p:not(.eyebrow) { max-width: 720px; margin: 0 auto; color: rgba(255, 248, 230, .78); font-size: 18px; }
.simple-category-list { display: flex; max-width: 920px; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 30px auto 0; }
.simple-category-list { scrollbar-width: none; }
.simple-category-list::-webkit-scrollbar { display: none; }
.simple-category-list a { display: inline-flex; min-height: 40px; align-items: center; padding: 8px 15px; border: 1px solid rgba(255, 221, 150, .38); border-radius: 999px; background: rgba(12, 12, 12, .52); color: #ffe7aa; box-shadow: 0 10px 22px rgba(0, 0, 0, .16); font-size: 14px; font-weight: 900; backdrop-filter: blur(10px); }
.simple-category-list a:hover { border-color: rgba(255, 221, 150, .82); background: rgba(45, 33, 12, .72); transform: translateY(-1px); }
.simple-tools-section { padding: 72px 0; background: var(--paper); }
.simple-tools-heading { display: flex; align-items: end; justify-content: space-between; gap: 22px; margin-bottom: 24px; }
.simple-tools-heading h2 { margin: 0; font-size: 34px; line-height: 1.2; }
.simple-tools-heading span { color: var(--muted); font-size: 14px; font-weight: 900; }
.simple-tools-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.simple-tool-card a { display: flex; min-height: 250px; flex-direction: column; align-items: flex-start; gap: 16px; padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); box-shadow: 0 8px 22px rgba(25, 25, 25, .05); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.simple-tool-card a:hover { border-color: var(--tool-color); box-shadow: 0 16px 34px rgba(25, 25, 25, .09); transform: translateY(-2px); }
.simple-tool-icon { display: grid; width: 78px; height: 78px; place-items: center; border-radius: 22px; background: var(--tool-tint); color: var(--tool-color); }
.simple-tool-icon svg { width: 44px; height: 44px; stroke-width: 1.8; }
.simple-tool-body { display: grid; min-width: 0; gap: 5px; }
.simple-tool-body strong { color: var(--ink); font-size: 20px; line-height: 1.25; }
.simple-tool-body em { overflow: hidden; color: var(--muted); display: -webkit-box; font-size: 14px; font-style: normal; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.simple-tool-meta { margin-top: auto; padding: 5px 9px; border-radius: 999px; background: var(--tool-tint); color: var(--tool-color); font-size: 12px; font-weight: 900; white-space: nowrap; }
.simple-flow-section { padding: 58px 0; border-top: 1px solid var(--line); background: #fff; }
.simple-flow-grid { display: grid; grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr)); gap: 24px; }
.simple-flow-grid h2 { margin: 0; font-size: 31px; line-height: 1.2; }
.simple-flow-grid div:not(:first-child) { padding-top: 14px; border-top: 3px solid var(--gold); }
.simple-flow-grid span { color: var(--accent); font-size: 13px; font-weight: 900; }
.simple-flow-grid strong { display: block; margin: 6px 0 5px; color: var(--ink); font-size: 19px; }
.simple-flow-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.product-card { display: grid; grid-template-columns: minmax(320px, 44%) 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); box-shadow: var(--shadow); }
.product-image-button { position: relative; min-height: 100%; padding: 0; overflow: hidden; border: 0; background: #edf0f1; cursor: zoom-in; }
.product-image-button img { width: 100%; height: 100%; object-fit: cover; }
.product-image-button span { position: absolute; right: 12px; bottom: 12px; display: flex; align-items: center; gap: 6px; padding: 6px 9px; border-radius: 4px; background: rgba(21, 23, 25, .86); color: #fff; font-size: 12px; font-weight: 700; }
.product-image-button svg { width: 15px; }
.product-body { display: flex; min-height: 420px; flex-direction: column; padding: 28px; }
.product-meta { display: flex; align-items: center; gap: 9px; margin-bottom: 15px; }
.category-tag, .version { padding: 4px 8px; border-radius: 4px; font-size: 12px; font-weight: 800; }
.category-tag { background: #f7e9e8; color: var(--accent); }
.version { background: #eff1f2; color: #63666a; }
.product-body h3 { margin-bottom: 10px; font-size: 27px; line-height: 1.2; }
.product-body > p { color: var(--muted); }
.feature-list { display: grid; gap: 7px; margin: 6px 0 22px; padding: 0; list-style: none; color: #4c5054; font-size: 14px; }
.feature-list li { display: flex; gap: 7px; align-items: center; }
.feature-list svg { width: 17px; color: #257443; }
.product-footer { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.price small, .price strong { display: block; }
.price small { color: var(--muted); font-size: 12px; }
.price strong { display: flex; align-items: center; gap: 5px; color: #805d23; font-size: 23px; }
.redeem-button { min-width: 188px; padding: 10px 14px; }
.process-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.process-grid div { padding-top: 15px; border-top: 3px solid #d4b06d; }
.process-grid span { color: var(--accent); font-size: 14px; font-weight: 900; }
.process-grid h3 { margin: 7px 0 5px; font-size: 20px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.faq-layout { display: grid; grid-template-columns: 210px 1fr; gap: 52px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { padding: 18px 0; border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; font-weight: 800; }
.faq-list p { margin: 9px 0 0; color: var(--muted); font-size: 14px; }
.site-footer { padding: 30px 0; border-top: 1px solid var(--line); background: #fff; color: var(--muted); }
.tool-footer-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 22px 34px; }
.tool-footer-copy { min-width: 0; }
.tool-footer-head { display: flex; align-items: center; gap: 13px; }
.tool-footer-mascot { width: 66px; height: 66px; flex: 0 0 auto; border: 1px solid #e7d8bd; border-radius: 8px; object-fit: cover; object-position: center; box-shadow: 0 8px 20px rgba(58, 43, 20, .12); }
.tool-footer-brand { display: inline-flex; align-items: center; gap: 7px; color: #282419; font-size: 18px; font-weight: 900; }
.tool-footer-brand svg { width: 18px; height: 18px; color: #a77427; }
.tool-footer-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; margin-top: 4px; }
.tool-footer-tagline { font-size: 14px; line-height: 1.6; }
.tool-footer-contact { display: inline-flex; min-height: 30px; align-items: center; gap: 5px; padding: 4px 9px; border: 1px solid rgba(6, 199, 85, .28); border-radius: 999px; background: #f0fff6; color: #087a35; font-size: 13px; font-weight: 900; text-decoration: none; }
.tool-footer-contact:hover { border-color: rgba(6, 199, 85, .52); color: #05652b; }
.tool-footer-contact svg { width: 16px; height: 16px; }
.tool-footer-wechat { color: #079848; }
.visitor-stats { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 9px; color: #6e7379; font-size: 13px; }
.visitor-stat-label, .visitor-stat { display: inline-flex; min-height: 31px; align-items: center; }
.visitor-stat-label { color: #8b6428; font-weight: 900; }
.visitor-stat { gap: 5px; padding: 5px 9px; border: 1px solid #e6e1d8; border-radius: 999px; background: #fff; color: inherit; text-decoration: none; box-shadow: 0 5px 14px rgba(41, 36, 27, .04); }
.visitor-stat-primary { border-color: #ead7b2; background: #fff9ee; }
.visitor-stat strong { color: #835d24; }
.visitor-stat-primary:hover { color: #8f1f1b; border-color: #d8b36d; }
.tool-footer-actions { display: grid; justify-items: end; gap: 12px; }
.tool-footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px 14px; }
.tool-footer-links a { color: #403a31; font-size: 14px; font-weight: 800; text-decoration: none; }
.tool-footer-links a:hover { color: var(--accent); }
.tool-footer-controls { display: flex; align-items: center; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.tool-footer-language { display: flex; align-items: center; gap: 8px; color: #454038; }
.tool-footer-language-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: #f6eee0; color: #9b6d29; }
.tool-footer-language-icon svg { width: 17px; height: 17px; }
.tool-footer-language-copy { display: grid; line-height: 1.05; }
.tool-footer-language-copy strong { font-size: 12px; }
.tool-footer-language-copy small { color: #898176; font-size: 11px; }
.tool-footer-language select { min-width: 150px; height: 40px; border: 1px solid #dfd5c4; border-radius: 7px; background: #fff; color: #39352f; padding: 0 10px; }
.modal, .preview-modal { max-width: min(500px, calc(100% - 32px)); border: 0; border-radius: 8px; box-shadow: 0 22px 54px rgba(0, 0, 0, .25); }
.modal { padding: 30px; text-align: center; }
.modal::backdrop, .preview-modal::backdrop { background: rgba(0, 0, 0, .66); }
.modal-close { position: absolute; top: 10px; right: 10px; display: grid; width: 34px; height: 34px; place-items: center; border: 0; background: transparent; color: #616467; cursor: pointer; }
.modal-close svg { width: 20px; }
.modal-icon { color: var(--accent); }
.modal-icon svg { width: 38px; height: 38px; }
.modal h2 { margin: 10px 0 6px; font-size: 23px; }
.modal p { color: var(--muted); }
.modal-note { padding: 10px; background: var(--soft-gold); color: #6d5225 !important; font-size: 13px; }
.modal-confirm { min-width: 120px; padding: 9px 14px; }
.preview-modal { width: min(960px, calc(100% - 32px)); padding: 42px 12px 12px; background: #fff; }
.preview-modal img { width: 100%; }
.preview-close { color: #303236; }
body[data-theme="light"] .site-header { color: #fff3cf; }
body[data-theme="light"] .logo-mark { border-color: rgba(255, 255, 255, .62); background: linear-gradient(135deg, #fff8df, #d7a848); }
body[data-theme="light"] .site-nav a, body[data-theme="light"] .points-balance, body[data-theme="light"] .menu-toggle { border-color: rgba(255, 255, 255, .58); background: rgba(255, 255, 255, .76); color: #162032; box-shadow: 0 12px 28px rgba(15, 35, 62, .12); }
body[data-theme="light"] .site-nav { border-color: rgba(255, 255, 255, .62); background: rgba(255, 255, 255, .92); box-shadow: 0 18px 42px rgba(15, 35, 62, .18); }
body[data-theme="light"] .site-nav a:hover, body[data-theme="light"] .site-nav a.active, body[data-theme="light"] .menu-toggle:hover, body[data-theme="light"] .menu-toggle:focus-visible, body[data-theme="light"] .header-menu.open .menu-toggle { border-color: rgba(18, 92, 168, .36); background: #fff; color: #0b4480; }
body[data-theme="light"] .points-balance strong { color: #125ca8; }
body[data-theme="light"] .hero-shade { background: linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .04) 48%, rgba(245, 248, 252, .34)); }
body[data-theme="light"] .about-hero-shade { background: linear-gradient(180deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .08) 48%, rgba(245, 248, 252, .68)); }
body[data-theme="dark"] .store-strip, body[data-theme="dark"] .catalog-section, body[data-theme="dark"] .process-section, body[data-theme="dark"] .faq-section, body[data-theme="dark"] .discovery-section, body[data-theme="dark"] .about-section, body[data-theme="dark"] .simple-tools-section, body[data-theme="dark"] .simple-flow-section, body[data-theme="dark"] .site-footer { background: #11100d; }
body[data-theme="dark"] .about-section-soft { background: #171613; }
body[data-theme="dark"] .strip-grid div, body[data-theme="dark"] .source-features, body[data-theme="dark"] .feature-list, body[data-theme="dark"] .about-panel li, body[data-theme="dark"] .tool-footer-links a, body[data-theme="dark"] .tool-footer-language { color: rgba(255, 248, 230, .76); }
body[data-theme="dark"] .catalog-search-panel, body[data-theme="dark"] .source-card, body[data-theme="dark"] .product-card, body[data-theme="dark"] .simple-tool-card a, body[data-theme="dark"] .catalog-table-wrap, body[data-theme="dark"] .catalog-empty, body[data-theme="dark"] .view-switch, body[data-theme="dark"] .about-card, body[data-theme="dark"] .about-panel, body[data-theme="dark"] .popular-searches, body[data-theme="dark"] .preview-modal, body[data-theme="dark"] .modal { border-color: rgba(255, 221, 150, .18); background: rgba(26, 24, 20, .94); color: #fff8e6; box-shadow: var(--shadow); }
body[data-theme="dark"] .source-media, body[data-theme="dark"] .product-image-button, body[data-theme="dark"] .source-media-icon { background: linear-gradient(135deg, rgba(255, 221, 150, .14), rgba(255, 255, 255, .04)); }
body[data-theme="dark"] .search-field input, body[data-theme="dark"] .search-field select, body[data-theme="dark"] .clear-filter-button, body[data-theme="dark"] .demo-link, body[data-theme="dark"] .keyword-list button, body[data-theme="dark"] .catalog-pagination button, body[data-theme="dark"] .catalog-pagination strong, body[data-theme="dark"] .tool-footer-language select, body[data-theme="dark"] .visitor-stat { border-color: rgba(255, 221, 150, .18); background: rgba(255, 255, 255, .06); color: #fff8e6; }
body[data-theme="dark"] .tool-footer-language select { border-color: rgba(255, 221, 150, .28); background: #17130d; color: #ffe7aa; }
body[data-theme="dark"] .tool-footer-language select option { background: #17130d; color: #ffe7aa; }
body[data-theme="dark"] .clear-filter-button:hover, body[data-theme="dark"] .demo-link:hover, body[data-theme="dark"] .keyword-list button:hover { border-color: rgba(255, 221, 150, .58); color: #ffe7aa; }
body[data-theme="dark"] .category-tag { background: rgba(255, 221, 150, .14); color: #ffe7aa; }
body[data-theme="dark"] .version, body[data-theme="dark"] .table-tool-icon, body[data-theme="dark"] .tool-footer-language-icon { background: rgba(255, 255, 255, .08); color: #e8bf70; }
body[data-theme="dark"] .view-button:hover, body[data-theme="dark"] .view-button.active, body[data-theme="dark"] .catalog-pagination strong { background: #d9a23b; color: #15120d; }
body[data-theme="dark"] .catalog-table th { background: rgba(255, 221, 150, .1); color: #e8d6ad; }
body[data-theme="dark"] .catalog-table td { border-top-color: rgba(255, 221, 150, .12); }
body[data-theme="dark"] .catalog-table tbody tr:hover { background: rgba(255, 221, 150, .06); }
body[data-theme="dark"] .price strong, body[data-theme="dark"] .table-price, body[data-theme="dark"] .tool-footer-brand, body[data-theme="dark"] .visitor-stat strong, body[data-theme="dark"] .visitor-stat-label { color: #ffe7aa; }
body[data-theme="dark"] .free-price, body[data-theme="dark"] .source-footer .price .free-price { color: #79d99a; }
body[data-theme="dark"] .tool-footer-contact { border-color: rgba(121, 217, 154, .24); background: rgba(121, 217, 154, .1); color: #9ef0b9; }
body[data-theme="dark"] .modal-close, body[data-theme="dark"] .preview-close { color: #fff8e6; }
@media (max-width: 960px) { .simple-tools-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .simple-flow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .simple-flow-grid > div:first-child { grid-column: 1 / -1; } }
@media (max-width: 460px) { .points-balance { display: none; } .logo-mark { width: 40px; height: 40px; border-radius: 12px; } .logo-mark i { font-size: 21px; } }
@media (max-width: 780px) { .brand { flex: 1 1 auto; overflow: hidden; } .brand > span:last-child { min-width: 0; overflow: hidden; } .brand strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .theme-toggle, .header-menu { flex: 0 0 auto; } .simple-category-list { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; padding: 0 2px 8px; } .simple-category-list a { flex: 0 0 auto; } .simple-tool-card a { overflow: hidden; } .simple-tool-body em { word-break: break-word; } }
@media (max-width: 780px) { .simple-tools-hero { min-height: 560px; padding: 104px 0 44px; } .simple-tools-hero p:not(.eyebrow) { font-size: 16px; } .simple-category-list { gap: 8px; margin-top: 24px; } .simple-tools-section, .simple-flow-section { padding: 52px 0; } .simple-tools-heading { display: block; } .simple-tools-heading span { display: block; margin-top: 8px; } .simple-tools-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; } .simple-flow-grid { grid-template-columns: 1fr; } .simple-tool-card a { min-height: 0; gap: 10px; padding: 14px; } .simple-tool-icon { width: 54px; height: 54px; border-radius: 15px; } .simple-tool-icon svg { width: 30px; height: 30px; } .simple-tool-body strong { font-size: 15px; } .simple-tool-body em { font-size: 12px; -webkit-line-clamp: 2; } .simple-tool-meta { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; } }
@media (max-width: 780px) { .shell { width: min(100% - 28px, 620px); } .header-inner { min-height: 62px; gap: 10px; } .brand { min-width: 0; margin-right: auto; } .brand small, .points-balance { display: none; } .brand strong { font-size: 14px; } .theme-toggle { width: 40px; min-width: 40px; height: 40px; min-height: 40px; } .theme-toggle-img { inset: 4px; } .hero { min-height: 470px; background-position: center; } .hero-content { padding: 58px 0 80px; } .about-hero { min-height: 430px; background-position: center top; } .about-hero-content { padding: 104px 0 42px; } .about-section { padding: 54px 0; } .about-intro, .about-split, .about-category-grid, .about-card-grid, .about-card-grid.three { grid-template-columns: 1fr; } .about-card { min-height: 0; } h1 { font-size: 43px; } .hero-copy { font-size: 16px; } .strip-grid { grid-template-columns: repeat(2, 1fr); } .strip-grid div { min-height: 56px; justify-content: start; padding: 0 12px; font-size: 12px; } .catalog-section, .process-section, .faq-section { padding: 56px 0; } .catalog-search-panel { grid-template-columns: 1fr; padding: 15px; } .search-field.full-field { grid-column: auto; } .clear-filter-button { justify-content: center; } .section-heading { display: block; } .catalog-tools { justify-content: space-between; margin-top: 12px; } .catalog-count { display: block; } .catalog-grid { grid-template-columns: 1fr; } .catalog-table-wrap { margin-right: -14px; } .catalog-table { min-width: 880px; } .catalog-table th, .catalog-table td { padding: 10px; } .discovery-section { padding: 42px 0; } .discovery-layout { grid-template-columns: 1fr; gap: 18px; } .discovery-layout h2 { font-size: 24px; } .catalog-grid[data-view="list"] .source-card { grid-template-columns: 70px minmax(0, 1fr); } .catalog-grid[data-view="list"] .source-media { min-height: 100%; } .catalog-grid[data-view="list"] .source-media-icon svg { width: 30px; height: 30px; } .catalog-grid[data-view="list"] .source-body { display: block; padding: 12px; } .catalog-grid[data-view="list"] .source-body > p, .catalog-grid[data-view="list"] .source-features { display: none; } .catalog-grid[data-view="list"] .source-footer { display: flex; align-items: end; justify-content: space-between; gap: 8px; min-width: 0; margin-top: 9px; padding: 9px 0 0; border-top: 1px solid var(--line); border-left: 0; } .catalog-grid[data-view="list"] .source-actions { margin: 0; } .catalog-grid[data-view="list"] .demo-link span, .catalog-grid[data-view="list"] .redeem-button span { display: none; } .catalog-grid[data-view="list"] .demo-link, .catalog-grid[data-view="list"] .redeem-button { width: 36px; min-width: 36px; height: 36px; padding: 0; } .catalog-grid[data-view="list"] .price strong { font-size: 16px; } .product-card { display: block; } .product-image-button { width: 100%; min-height: 0; aspect-ratio: 4 / 3; } .product-body { min-height: 0; padding: 21px; } .product-body h3 { font-size: 23px; } .product-footer { display: block; } .redeem-button { width: 100%; margin-top: 13px; } .process-grid, .faq-layout { grid-template-columns: 1fr; gap: 18px; } .process-grid { gap: 22px; } .tool-footer-inner { grid-template-columns: 1fr; gap: 18px; } .tool-footer-mascot { width: 56px; height: 56px; } .tool-footer-brand { font-size: 16px; } .tool-footer-tagline { flex-basis: 100%; } .tool-footer-actions { justify-items: start; } .tool-footer-links { justify-content: flex-start; } }
