        :root {
            --primary: #2c9b95;
            --primary-light: #39c5bb;
            --primary-strong: #1f7d78;
            --accent-text: #0f766e;
            --text: #111827;
            --muted: #374151;
            --surface: #ffffff;
            --background: #f8fafc;
            --border: #e2e8f0;
            --shadow-soft: 0 18px 44px rgba(15, 118, 110, 0.18);
            --shadow-card: 0 14px 32px rgba(15, 118, 110, 0.12);
            --footer-bg: #111827;
            --footer-text: rgba(255, 255, 255, 0.78);
            --footer-link: #9fe4dc;
        }

        html {
            background: var(--background);
            width: 100%;
            overflow-x: hidden;
            overscroll-behavior-x: none;
            touch-action: pan-y;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: 'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
            background: var(--background);
            color: var(--text);
            width: 100%;
            overflow-x: hidden;
            /* Reduce horizontal rubber-band/overscroll artifacts on mobile browsers. */
            overscroll-behavior-x: none;
            /* Android Chrome: prevent horizontal drag from moving the whole page. */
            touch-action: pan-y;
            position: relative;
        }

        /* Prevent horizontal page scroll caused by animated marquees/iframes on mobile. */
        html, body { overflow-x: hidden; }

        .page {
            overflow-x: hidden;
        }

        /* Make sure media never creates layout overflow. */
        img, iframe, video, canvas, svg {
            max-width: 100%;
        }

        /* Marquee can paint outside on some mobile browsers; contain its paint. */
        .breaking-strip,
        .breaking-marquee {
            contain: paint;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .page {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        header {
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: #fff;
            padding: 32px 16px 36px;
            position: relative;
            border-radius: 0; /* unify: no radius */
        }

        .hero {
            max-width: 960px;
            margin: 0 auto;
        }

        .hero-eyebrow {
            display: inline-flex;
            padding: 4px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.18);
            font-size: 0.9rem;
        }

        .hero-title {
            font-size: 2.1rem;
            margin: 4px 0 8px;
            letter-spacing: 0.04em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hero-title .hero-home {
            display: inline-flex;
            align-items: center;
            flex: 0 0 auto;
        }

        .hero-title .hero-home img {
            display: block;
        }

        .hero-summary {
            margin: 0;
            line-height: 1.6;
            font-size: 1.02rem;
        }

        .hero-dates { display: none; }

        .badge {
            background: rgba(255, 255, 255, 0.85);
            color: var(--accent-text);
            padding: 6px 12px;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 600;
        }

	        .container {
	            flex: 1;
	            /* IMPORTANT: This element is a flex-item inside `.page` (flex column).
	               Keep an explicit width so its border-box stays within the viewport
	               even with horizontal padding (Android Chrome can otherwise report
	               a wider used width and create horizontal drag space). */
	            width: 100%;
	            max-width: 960px;
	            margin: 16px auto 0;
	            padding: 0 16px 56px;
	            box-sizing: border-box;
	            overflow-x: hidden; /* hard guard: prevent any child from creating horizontal drag space */
	        }

        .back-link {
            margin: -44px 0 32px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            border-radius: 999px;
            background: #fff;
            color: var(--accent-text);
            font-weight: 600;
            box-shadow: 0 10px 18px rgba(44, 155, 149, 0.18);
        }

        .activity-card {
            background: var(--surface);
            border-radius: 20px;
            padding: 32px 28px;
            box-shadow: var(--shadow-soft);
        }

        .activity-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 0.95rem;
            color: var(--muted);
            margin-bottom: 18px;
        }

        .activity-meta strong {
            color: var(--text);
        }

        .share-block {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 18px 0 24px;
        }

        .share-block span {
            font-weight: 600;
        }
        .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 76px;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(57, 197, 187, 0.14);
            color: var(--accent-text);
            font-weight: 700;
            font-size: 0.88rem;
        }

        .gallery {
            display: grid;
            gap: 16px;
            margin: 20px 0 26px;
        }

        .activity-body {
            line-height: 1.8;
            font-size: 1rem;
        }

        .activity-body p {
            margin: 0 0 1.1em;
        }

        .activity-body table {
            width: 100%;
            border-collapse: collapse;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 12px 24px rgba(15, 118, 110, 0.08);
        }

        .activity-body th,
        .activity-body td {
            padding: 12px 14px;
            border-bottom: 1px solid var(--border);
            text-align: left;
            vertical-align: top;
            word-break: break-word;
            overflow-wrap: anywhere;
        }

        .activity-body tr:last-child th,
        .activity-body tr:last-child td {
            border-bottom: none;
        }

        .activity-body thead th {
            background: rgba(57, 197, 187, 0.12);
            color: var(--accent-text);
            font-weight: 700;
        }

        .activity-body tbody tr:nth-child(even) {
            background: rgba(15, 118, 110, 0.04);
        }

        .activity-body {
            word-break: break-word;
            overflow-wrap: anywhere;
        }

        .activity-body img.body-image {
            background: var(--background);
        }

        .activity-body img.body-image {
            object-fit: contain;
            max-width: 100%;
            height: auto;
        }

        .ad-slot {
            margin: 32px 0;
            border-radius: 0;
            overflow: visible;
            box-shadow: none;
            background: transparent;
        }

        .ad-slot--top {
            margin-top: -24px;
        }

        @media (max-width: 768px) {
            .ad-slot--top {
                width: 100%;
                margin: 0 0 28px;
                border-radius: 16px;
                overflow: hidden; /* prevent ads iframe from causing horizontal scroll */
                box-shadow: 0 12px 24px rgba(15, 118, 110, 0.08);
            }
            .container { margin-top: 12px; }

            .ad-slot--top .adsbygoogle {
                display: block;
                max-width: 100% !important;
            }
        }

        /* Guardrails: ads can inject fixed-width iframes; never let them overflow the page */
        .ad-wrap {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }

        .ad-wrap .adsbygoogle,
        .ad-wrap iframe {
            max-width: 100% !important;
        }

        .ad-wrap ins.adsbygoogle {
            width: 100% !important;
            overflow: hidden;
        }

        .ad-wrap iframe {
            width: 100% !important;
            display: block;
        }

        .ad-wrap ins.adsbygoogle > div[id^="aswift_"],
        .ad-wrap ins.adsbygoogle > div[id^="aswift_"] > iframe {
            max-width: 100% !important;
            overflow: hidden !important;
        }

        /* Breaking marquee: keep transforms from leaking outside on mobile compositing. */
        .breaking-strip { max-width: 100%; }
        .breaking-track { contain: paint; will-change: transform; }

        .more-section {
            margin-top: 56px;
        }

        .section-title {
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

        .quick-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 14px 0 22px;
            padding: 12px 12px;
            border-radius: 18px;
            border: 1px solid var(--border);
            background:
                radial-gradient(1200px 220px at 20% -40%, rgba(57, 197, 187, 0.18), transparent 55%),
                radial-gradient(900px 220px at 90% 0%, rgba(44, 155, 149, 0.16), transparent 60%),
                var(--surface);
            box-shadow: 0 14px 26px rgba(15, 118, 110, 0.10);
            position: relative;
            /* Allow horizontal panning inside quick-links even if body blocks it. */
            touch-action: pan-x;
            max-width: 100%;
            contain: paint;
        }

        .quick-links a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(226, 232, 240, 0.95);
            color: var(--accent-text);
            font-weight: 700;
            box-shadow: 0 10px 18px rgba(44, 155, 149, 0.12);
            transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
            white-space: nowrap;
            -webkit-tap-highlight-color: transparent;
        }

        .quick-links a:hover {
            transform: translateY(-1px);
            box-shadow: 0 16px 26px rgba(44, 155, 149, 0.18);
            border-color: rgba(44, 155, 149, 0.28);
            background: rgba(255, 255, 255, 0.9);
        }

        .quick-links a[aria-current="page"],
        .quick-links a.is-active {
            color: #fff;
            border-color: transparent;
            background: linear-gradient(135deg, var(--primary), var(--primary-strong));
            box-shadow: 0 16px 26px rgba(15, 118, 110, 0.22);
        }

        .quick-links a:focus-visible {
            outline: 3px solid rgba(57, 197, 187, 0.45);
            outline-offset: 3px;
        }

        .quick-links a:active {
            transform: translateY(0);
            box-shadow: 0 10px 18px rgba(44, 155, 149, 0.12);
        }

        @media (max-width: 560px) {
            .quick-links {
                flex-wrap: wrap;
                overflow-x: visible;
                overflow-y: visible;
                padding: 10px;
                gap: 10px;
            }
            .quick-links a {
                scroll-snap-align: unset;
            }
        }

        .topic-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
            margin: 12px 0 28px;
        }

        .topic-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 16px 14px;
            box-shadow: var(--shadow-card);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .topic-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-soft);
        }

        .topic-card h3 {
            margin: 0 0 6px;
            font-size: 1.05rem;
        }

        .topic-card .meta {
            color: var(--muted);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .topic-card ul {
            margin: 0;
            padding-left: 18px;
            color: var(--muted);
            font-size: 0.92rem;
            line-height: 1.5;
        }

        @media (max-width: 900px) {
            .topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }

        @media (max-width: 560px) {
            .topic-grid { grid-template-columns: 1fr; }
        }

        .activity-list {
            list-style: none;
            margin: 0;
            padding: 0;
            column-count: 4;
            column-gap: 20px;
        }

        .activity-list > li {
            min-width: 0;
            width: 100%;
            display: inline-block;
            margin: 0 0 20px;
            break-inside: avoid;
            -webkit-column-break-inside: avoid;
            page-break-inside: avoid;
        }

        .activity-list.js-masonry {
            column-count: initial;
            column-gap: 0;
            display: block;
            position: relative;
        }

        .activity-list.js-masonry > li {
            position: absolute;
            margin: 0;
            break-inside: auto;
            -webkit-column-break-inside: auto;
            page-break-inside: auto;
        }

        .activity-list .activity-card {
            background: var(--surface);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            display: flex;
            flex-direction: column;
            height: auto;
            padding: 0;
        }

        .activity-list .activity-card:focus-within,
        .activity-list .activity-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-soft);
        }

        .activity-list .activity-cover {
            display: block;
            overflow: hidden;
            background: var(--background);
        }

        .activity-list .activity-cover img.card-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
            object-position: center;
            background: var(--background);
        }

        .activity-list .activity-content {
            padding: 14px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1;
        }

        .activity-list .activity-title {
            margin: 0;
            font-size: 1.02rem;
            line-height: 1.45;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 0;
        }

        .activity-list .activity-title a {
            color: inherit;
        }

        .activity-list .activity-date {
            font-size: 0.9rem;
            color: var(--muted);
        }

        .activity-list .activity-cta {
            margin-top: auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 12px;
            border-radius: 999px;
            font-size: 0.86rem;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(135deg, var(--primary), var(--primary-strong));
            align-self: flex-start;
        }

        .activity-list .infeed-ad-item .ad-slot--infeed {
            margin: 0;
            padding: 0;
            border-radius: 0;
            background: transparent;
            border: none;
            box-shadow: none;
            min-height: 170px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .activity-list .infeed-ad-item .ad-wrap,
        .activity-list .infeed-ad-item .adsbygoogle {
            width: 100%;
            margin-left: auto !important;
            margin-right: auto !important;
            min-height: 0 !important;
            height: auto !important;
        }

        .infeed-ad-item.ad-unfilled {
            display: inline-block !important;
        }

        @media (max-width: 1180px) {
            .activity-list { column-count: 3; }
        }

        @media (max-width: 900px) {
            .activity-list { column-count: 2; }
        }

        @media (max-width: 560px) {
            .activity-list { column-count: 1; }

            .activity-list .infeed-ad-item .ad-slot--infeed {
                min-height: 140px;
                padding: 0;
            }

            .activity-list .infeed-ad-item .ad-wrap,
            .activity-list .infeed-ad-item .adsbygoogle {
                min-height: 0 !important;
                height: auto !important;
            }
        }

        .more-card {
            background: var(--surface);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            display: flex;
            flex-direction: column;
            min-height: 100%;
        }

        .more-card:focus-within,
        .more-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-soft);
        }

        .more-cover img {
            width: 100%;
        }

        img.card-image {
            background: var(--background);
        }

        img.card-image { width: 100%; height: auto; display: block; }

        .more-body {
            padding: 18px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            flex: 1;
        }

        .more-title {
            margin: 0;
            font-size: 1.05rem;
            line-height: 1.5;
        }

        .more-title a {
            color: inherit;
        }

        .activity-date {
            font-size: 0.92rem;
            color: var(--muted);
        }

        .more-link {
            margin-top: auto;
            font-weight: 600;
            color: var(--primary);
        }

        .empty-card {
            background: var(--surface);
            padding: 32px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-card);
        }

        .user-notification {
            background: #0f172a;
            color: #f9fafb;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(15, 118, 110, 0.25);
            max-width: 520px;
            margin: 16px;
        }

        .user-notification h3 {
            margin: 0;
            font-size: 1.3rem;
        }

        .user-notification p {
            margin: 0;
            line-height: 1.6;
        }

        .user-notification-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .user-notification a.cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 18px;
            border-radius: 999px;
            background: #2563eb;
            color: #fff;
            font-weight: 600;
        }

        .user-notification button.dismiss {
            border: none;
            background: rgba(255, 255, 255, 0.12);
            color: #f9fafb;
            padding: 10px 18px;
            border-radius: 999px;
            font-weight: 500;
        }

        footer {
            background: var(--footer-bg);
            color: var(--footer-text);
            padding: 32px 16px;
            font-size: 0.9rem;
            line-height: 1.6;
            text-align: center;
        }

        footer a {
            color: var(--footer-link);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        @media (max-width: 768px) {
            header {
                padding: 32px 16px 36px; /* match desktop */
                border-bottom-left-radius: 0; /* no radius */
                border-bottom-right-radius: 0; /* no radius */
            }

            .hero-title {
                font-size: 1.9rem;
            }

            .activity-card {
                padding: 24px 20px;
            }

            .gallery {
                gap: 12px;
            }

            .back-link {
                margin-top: -36px;
            }
        }
        .fb-popup[hidden] {
            display: none !important;
        }

        .fb-popup {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }

        .fb-popup-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(2, 6, 23, 0.55);
            backdrop-filter: blur(2px);
        }

        .fb-popup-card {
            position: relative;
            width: min(460px, 100%);
            background: var(--surface);
            color: var(--text);
            border-radius: 16px;
            box-shadow: 0 24px 64px rgba(15, 23, 42, 0.35);
            padding: 20px 18px 16px;
            z-index: 1;
            border: 1px solid var(--border);
        }

        .fb-popup-badge {
            display: inline-flex;
            align-items: center;
            border-radius: 999px;
            padding: 4px 10px;
            font-size: 0.78rem;
            font-weight: 700;
            background: rgba(59, 130, 246, 0.14);
            color: #1d4ed8;
            margin-bottom: 8px;
        }

        .fb-popup-card h3 {
            margin: 0 0 8px;
            font-size: 1.2rem;
        }

        .fb-popup-card p {
            margin: 0 0 14px;
            color: var(--muted);
            line-height: 1.6;
        }

        .fb-popup-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            border-radius: 12px;
            padding: 11px 14px;
            background: #1877f2;
            color: #fff;
            font-weight: 800;
            text-decoration: none;
        }

        .fb-popup-later {
            margin-top: 10px;
            width: 100%;
            border: 1px solid var(--border);
            background: transparent;
            color: var(--muted);
            border-radius: 10px;
            padding: 9px 12px;
            cursor: pointer;
            font-weight: 600;
        }

        .fb-popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            border: none;
            background: transparent;
            color: var(--muted);
            font-size: 1.3rem;
            line-height: 1;
            cursor: pointer;
        }

        .activity-reco-card[hidden] {
            display: none !important;
        }

        .activity-reco-card {
            position: fixed;
            right: 18px;
            bottom: 18px;
            z-index: 9998;
            width: min(320px, calc(100vw - 24px));
            border-radius: 14px;
            background: var(--surface);
            color: var(--text);
            border: 1px solid var(--border);
            box-shadow: 0 18px 38px rgba(2, 6, 23, 0.22);
            padding: 12px 12px 10px;
            transform: translateY(18px);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.28s ease, transform 0.28s ease;
        }

        .activity-reco-card.is-visible {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .activity-reco-kicker {
            font-size: 0.72rem;
            letter-spacing: 0.08em;
            color: #2563eb;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .activity-reco-title {
            margin: 0 0 10px;
            font-size: 0.98rem;
            line-height: 1.45;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .activity-reco-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            border-radius: 10px;
            padding: 9px 12px;
            background: linear-gradient(135deg, #0ea5e9, #2563eb);
            color: #fff;
            font-size: 0.88rem;
            font-weight: 700;
            text-decoration: none;
            margin-bottom: 8px;
        }

        .activity-reco-mute {
            width: 100%;
            border: 1px solid var(--border);
            background: transparent;
            color: var(--muted);
            border-radius: 10px;
            padding: 8px 10px;
            font-size: 0.82rem;
            cursor: pointer;
        }

        .activity-reco-close {
            position: absolute;
            top: 8px;
            right: 8px;
            border: none;
            background: transparent;
            color: var(--muted);
            font-size: 1.2rem;
            line-height: 1;
            cursor: pointer;
        }

        @media (max-width: 560px) {
            .activity-reco-card {
                right: 12px;
                bottom: 12px;
            }
        }

        .smart-promo-card[hidden] {
            display: none !important;
        }

        .smart-promo-card {
            position: fixed;
            right: 18px;
            bottom: 18px;
            z-index: 9998;
            width: min(320px, calc(100vw - 24px));
            border-radius: 14px;
            background: var(--surface);
            color: var(--text);
            border: 1px solid var(--border);
            box-shadow: 0 18px 38px rgba(2, 6, 23, 0.22);
            padding: 12px 12px 10px;
            transform: translateY(18px);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.28s ease, transform 0.28s ease;
        }

        .smart-promo-card.is-visible {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .smart-promo-kicker {
            font-size: 0.72rem;
            letter-spacing: 0.08em;
            color: #2563eb;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .smart-promo-title {
            margin: 0 0 8px;
            font-size: 0.98rem;
            line-height: 1.45;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .smart-promo-desc {
            margin: 0 0 10px;
            font-size: 0.86rem;
            color: var(--muted);
            line-height: 1.5;
        }

        .smart-promo-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            border-radius: 10px;
            padding: 9px 12px;
            background: linear-gradient(135deg, #0ea5e9, #2563eb);
            color: #fff;
            font-size: 0.88rem;
            font-weight: 700;
            text-decoration: none;
            margin-bottom: 8px;
        }

        .smart-promo-mute {
            width: 100%;
            border: 1px solid var(--border);
            background: transparent;
            color: var(--muted);
            border-radius: 10px;
            padding: 8px 10px;
            font-size: 0.82rem;
            cursor: pointer;
        }

        .smart-promo-close {
            position: absolute;
            top: 8px;
            right: 8px;
            border: none;
            background: transparent;
            color: var(--muted);
            font-size: 1.2rem;
            line-height: 1;
            cursor: pointer;
        }

        @media (max-width: 560px) {
            .smart-promo-card {
                right: 12px;
                bottom: 12px;
            }
        }

.sticky-corner-ad {
    position: fixed;
    left: 12px;
    bottom: 12px;
            z-index: 9997;
            width: min(320px, calc(100vw - 24px));
            background: rgba(255, 255, 255, 0.98);
            border: 1px solid var(--border);
            border-radius: 12px;
            box-shadow: 0 16px 36px rgba(2, 6, 23, 0.2);
    padding: 10px 10px 6px;
}

.sticky-corner-ad .adsbygoogle {
    width: 100%;
    min-height: 140px;
    margin-top: 18px;
}

.sticky-corner-ad-close {
    position: absolute;
    top: 6px;
            right: 6px;
            border: none;
            background: rgba(15, 23, 42, 0.08);
            color: #0f172a;
            width: 24px;
            height: 24px;
    border-radius: 999px;
    line-height: 1;
    cursor: pointer;
    font-size: 1rem;
    z-index: 3;
    pointer-events: auto;
}

        .sticky-corner-ad.is-hidden {
            display: none !important;
        }

@media (max-width: 640px) {
    .sticky-corner-ad {
        display: none !important;
    }
}
