:root {
    --primary: #F58220;
    --primary-dark: #e07210;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #FAF5F0;
    --bg-white: #ffffff;
    --radius: 2.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================
   無障礙：鍵盤焦點樣式 (WCAG 2.4.7)
   使用 :focus-visible 只在鍵盤操作時顯示框線，
   滑鼠點擊時不會出現難看的外框
   ========================================= */
:focus-visible {
    outline: 3px solid #F58220;
    outline-offset: 3px;
    border-radius: 4px;
}

/* 針對圓角按鈕與連結調整焦點框圓角 */
.btn-primary-sm:focus-visible,
.mobile-btn-primary:focus-visible,
.hero-btn:focus-visible,
.cta-btn:focus-visible,
.floating-contact-btn:focus-visible {
    border-radius: 9999px;
}

.logo-group:focus-visible,
.nav-link:focus-visible,
.mobile-nav-link:focus-visible,
.footer-link:focus-visible,
.contact-link:focus-visible,
.park-card-link:focus-visible,
.btn-link:focus-visible,
.cta-btn-link:focus-visible,
.link-blue:focus-visible {
    border-radius: 0.5rem;
}

.mobile-menu-btn:focus-visible {
    border-radius: 0.5rem;
}

/* =========================================
   無障礙：尊重使用者「減少動畫」系統設定 (WCAG 2.3.3)
   當使用者在作業系統中開啟「減少動態效果」時，
   停用所有 CSS transition 與 animation
   ========================================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================
   無障礙：僅供螢幕閱讀器的隱藏文字
   視覺上不顯示，但螢幕閱讀器可讀取
   ========================================= */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}



body {
    font-family: 'Noto Sans TC', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    scroll-behavior: smooth;
    padding-top: 65px;
    /* Header offset */
}


/* =========================================
   全域設定
   ========================================= */
html {
    scroll-behavior: smooth;
    /* 開啟原生滑順滾動 */
    scroll-padding-top: 75px;
    /* 預留頂部 Header 的高度，避免滾動後標題被遮擋 */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =========================================
   13. 頂部導覽列 (Header & Navigation)
   ========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    /* h-16 */
}

@media (min-width: 768px) {
    .header-inner {
        height: 4.5rem;
        /* md:h-18 */
    }
}

/* --- Logo 群組 --- */
.logo-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon-box {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.icon-coins {
    width: 1.125rem;
    height: 1.125rem;
    color: white;
}

.logo-text {
    font-size: 1rem;
    font-weight: bold;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.logo-group:hover .logo-text {
    color: var(--primary);
}

/* --- 桌面版導覽 (Desktop Nav) --- */
/* 預設隱藏 (手機版狀態) */
.main-nav {
    display: none;
}

/* 當螢幕寬度達到 768px (md) 時顯示 */
@media (min-width: 768px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 0.125rem;
    }
}

.nav-link {
    padding: 0.5rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--text-main);
    background-color: rgba(241, 245, 249, 0.8);
}

/* CTA 小按鈕 */
.nav-cta {
    margin-left: 0.5rem;
}

.btn-primary-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 2.25rem;
    padding: 0 0.75rem;
    border-radius: 0.5rem;
    background-color: var(--primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary-sm:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary-sm:active {
    transform: scale(0.95);
}

.icon-coins-sm {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

/* --- 手機版漢堡按鈕 (Mobile Menu Button) --- */
.mobile-menu-btn {
    display: block;
    padding: 0.5rem 0.8rem;
    border-radius: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* 漢堡按鈕變形動畫 (變成叉叉 X) */
.icon-menu {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--text-main);
}

.icon-menu line {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    transform-box: fill-box;
}

/* 當選單開啟時，觸發位移與旋轉 */
.mobile-menu-btn.is-active .icon-menu line:nth-child(1) {
    opacity: 0;
    /* 中間的線隱藏 */
}

.mobile-menu-btn.is-active .icon-menu line:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
    /* 上方的線往下移並旋轉 */
}

.mobile-menu-btn.is-active .icon-menu line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    /* 下方的線往上移並旋轉 */
}

/* --- 手機版下拉選單面板 --- */
.mobile-nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1rem;

    /* 收合特效核心：取代 display:none，改用透明度與位移 */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    /* 隱藏時避免誤觸 */
}

/* 展開狀態 */
.mobile-nav-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    margin-bottom: 0.25rem;
    transition: 0.2s;
}

.mobile-nav-link:hover {
    background-color: rgba(241, 245, 249, 0.8);
    color: var(--primary);
}

.mobile-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 3rem;
    margin-top: 0.5rem;
    border-radius: 0.5rem;
    background-color: var(--primary);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(245, 130, 32, 0.2);
}

/* =========================================
   5. 導覽列與全局元件
   ========================================= */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    transition: 0.3s;
    /* background: transparent; */
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.main-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* 動畫 */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.site-footer {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-top: 1px solid #eee;
}

/* =========================================
   1. 主視覺 Hero Section (全新加入)
   ========================================= */
.hero-section {
    position: relative;
    display: flex;
    min-height: 90vh;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) brightness(0.55);
    background-color: #333;
    /* 圖片載入前的底色 */
}

.hero-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 33.333%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}

.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--bg-light), rgba(250, 245, 240, 0.7), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.hero-badge-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    animation: floating 3s ease-in-out infinite alternate;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: white;
}

.text-yellow {
    color: #FFD54F;
}

.icon-sparkles {
    width: 14px;
    height: 14px;
}

.hero-titles {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-h1 {
    font-size: clamp(2.6rem, 8vw, 4.5rem);
    font-weight: 900;
    color: white;
    letter-spacing: -0.05em;
    line-height: 1.1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.hero-subtitle {
    font-size: clamp(1.6rem, 5vw, 3.75rem);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.hero-desc {
    max-width: 64rem;
    margin: 0 auto 2.5rem;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
    font-weight: 900;
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.icon-alert {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hero-desc-text {
    color: white;
    font-weight: 500;
    line-height: 1.625;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    letter-spacing: 0.025em;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-link {
    text-decoration: none;
    display: block;
}

.hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    height: 3.5rem;
    width: 240px;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 900;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-btn {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-orange {
    background-color: var(--primary);
    box-shadow: 0 15px 30px -5px rgba(245, 130, 32, 0.4);
}

.btn-orange:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 20px 40px -10px rgba(245, 130, 32, 0.5);
    transform: translateY(-4px);
}

.btn-blue {
    background-color: #0088cc;
    box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.2);
}

.btn-blue:hover {
    background-color: #0077bb;
    box-shadow: 0 20px 40px -10px rgba(0, 136, 204, 0.4);
    transform: translateY(-4px);
}

.hero-btn:active {
    transform: scale(0.95);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    max-width: 24rem;
    margin: 2.5rem auto 0;
    padding: 0 0.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.8));
}

.stat-symbol {
    font-size: 0.75rem;
    margin-left: 2px;
}

.color-blue {
    color: #2563eb;
}

.color-orange {
    color: #ea580c;
}

.color-emerald {
    color: #059669;
}

.stat-label {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    color: #334155;
    text-transform: uppercase;
    opacity: 0.9;
    text-align: center;
    white-space: nowrap;
}

/* =========================================
   8. 關於活動區塊 (About Section Pro)
   ========================================= */

.section-about {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
    padding: 4rem 0 6rem;
}

@media (min-width: 768px) {
    .section-about {
        padding: 6rem 0 8rem;
    }
}

/* --- 複雜背景光暈 (複雜版 Blobs) --- */

/* --- 佈局網格 --- */
.about-container {
    max-width: 80rem;
    /* max-w-7xl */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        align-items: flex-end;
    }
}

/* --- 左側標題與描述 --- */
.about-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-line {
    width: 2.5rem;
    height: 2px;
    background-color: var(--primary);
}

.section-subtitle {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 900;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.about-title {
    font-size: clamp(1.6rem, 5.5vw, 2.8rem);
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
    line-height: 1.15;
}

.text-primary {
    color: var(--primary);
}

.text-dark {
    color: #1e293b;
}

.about-desc {
    color: #475569;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 2;
    font-weight: 500;
    text-align: justify;
    word-break: break-all;
    letter-spacing: -0.025em;
}

.link-blue {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.link-blue:hover {
    color: #1d4ed8;
}

.icon-external {
    display: inline-block;
    margin-left: 4px;
    margin-bottom: 4px;
    transition: transform 0.3s;
}

.link-blue:hover .icon-external {
    transform: translate(2px, -2px);
}

.about-note {
    margin-top: 1.5rem;
    color: #94a3b8;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.625;
    border-top: 1px solid #ffedd5;
    padding-top: 1.5rem;
    font-style: italic;
}

/* --- 漸層點數卡 (Pro版) --- */
.points-card-pro {
    margin-top: 3rem;
    padding: 1.5rem 1rem;
    border-radius: 2rem;
    background: linear-gradient(to bottom right, #F58220, #F9A825, #FFD54F);
    box-shadow: 0 25px 50px -12px rgba(120, 50, 0, 0.2);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .points-card-pro {
        padding: 2.5rem;
        border-radius: 3rem;
    }
}

.points-limit-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto 2.5rem;
    width: 100%;
    max-width: fit-content;
}

.points-limit-box span {
    font-size: clamp(12px, 2.5vw, 13px);
    font-weight: 900;
    color: white;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: left;
    white-space: normal;
    word-break: break-all;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 10px white;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    flex-shrink: 0;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.points-calc-grid {
    display: grid;
    grid-template-columns: 3fr 1fr 3fr 1fr 3.5fr;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 640px) {
    .points-calc-grid {
        gap: 0.5rem;
    }
}

.calc-box {
    border-radius: 1.8rem;
    padding: 1.5rem 0;
    text-align: center;
}

.glass-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.solid-box {
    background: white;
    padding: 1.5rem 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.points-card-pro:hover .solid-box {
    transform: scale(1.05);
}

.calc-num {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.05em;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.gradient-text {
    background-image: linear-gradient(to right, #F58220, #F9A825);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* display: inline-block; */
}

.calc-label {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    opacity: 0.9;
    text-transform: uppercase;
}

.calc-math {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    font-size: 1.25rem;
}

/* --- 右側四宮格說明卡 --- */
.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    position: relative;
}

@media (min-width: 640px) {
    .grid-2x2 {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

.rule-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 2.5rem;
    padding: 2rem;
    border: 1px solid rgba(245, 130, 32, 0.15);
    box-shadow: 0 20px 25px -5px rgba(120, 50, 0, 0.05);
    transition: all 0.5s ease;
}

@media (min-width: 768px) {
    .rule-card {
        padding: 2.5rem;
    }
}

.rule-card:hover {
    border-color: rgba(245, 130, 32, 0.4);
}

.rule-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background-color: #fff7ed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background-color 0.5s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.rule-icon {
    color: var(--primary);
    transition: color 0.5s ease;
    width: 1.75rem;
    height: 1.75rem;
}

.rule-card:hover .rule-icon-box {
    background-color: var(--primary);
}

.rule-card:hover .rule-icon {
    color: white;
}

.rule-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.rule-desc {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: #64748b;
    font-weight: 500;
    line-height: 1.8;
    text-align: justify;
    word-break: break-all;
    letter-spacing: -0.025em;
}

/* =========================================
   7. 精緻版步驟卡片 (Step Cards Pro)
   ========================================= */

.step-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .step-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2.5rem;
    }
}

.step-card-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 卡片主體 */
.step-card-pro {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 2.5rem;
    /* 原設計的圓角 */
    padding: 2rem;
    border: 1px solid rgba(245, 130, 32, 0.2);
    box-shadow: 0 20px 25px -5px rgba(120, 50, 0, 0.05);
    transition: all 0.5s ease;
    overflow: hidden;
}

/* Hover 卡片時的整體變更 */
.step-card-pro:hover {
    border-color: var(--primary);
}

@media (min-width: 768px) {
    .step-card-pro {
        padding: 2.5rem;
    }
}

/* 頂部：數字與 Icon */
.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.step-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: rgba(245, 130, 32, 0.1);
    font-style: italic;
    transition: all 0.5s ease;
}

.step-card-pro:hover .step-number {
    color: var(--primary);
}

.step-icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
}

/* Icon 背景色變數 */
.bg-orange-light {
    background-color: #fff7ed;
}

.bg-yellow-light {
    background-color: #fffbeb;
}

.bg-orange-lighter {
    background-color: rgba(255, 237, 213, 0.5);
}

.bg-yellow-lighter {
    background-color: #fefce8;
}

.step-card-pro:hover .step-icon-box {
    background-color: var(--primary);
}

/* SVG Icon 顏色控制 */
.step-icon-box svg {
    transition: stroke 0.3s ease;
}

.icon-building {
    stroke: var(--primary);
}

.icon-phone {
    stroke: #F9A825;
}

.icon-check {
    stroke: var(--primary);
}

.icon-qr {
    stroke: #FFD54F;
}

.step-card-pro:hover .step-icon-box svg {
    stroke: white;
}

/* 內文區塊 */
.step-body {
    flex: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .step-body {
        text-align: left;
    }
}

.step-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    transition: color 0.3s ease;
}

.step-card-pro:hover .step-title {
    color: var(--primary);
}

.step-desc {
    color: #64748b;
    line-height: 1.625;
    font-size: 0.875rem;
    font-weight: 500;
    word-break: break-all;
}

@media (min-width: 1024px) {
    .step-desc {
        text-align: justify;
    }
}

/* 底部進度條 (點點) */
.step-progress {
    margin-top: 2rem;
    display: flex;
    gap: 0.375rem;
    justify-content: center;
    opacity: 0.2;
    transition: all 0.5s ease;
}

@media (min-width: 1024px) {
    .step-progress {
        justify-content: flex-start;
    }
}

.step-card-pro:hover .step-progress {
    opacity: 1;
}

.progress-dot {
    height: 0.25rem;
    border-radius: 9999px;
    background-color: #e2e8f0;
    width: 0.5rem;
    transition: all 0.7s ease;
}

.progress-dot.active {
    background-color: var(--primary);
    width: 3rem;
}

/* 步驟連接箭頭 (PC端顯示在兩卡中間) */
.step-arrow {
    display: none;
    position: absolute;
    top: 50%;
    right: -1.25rem;
    z-index: 20;
    transform: translateY(-50%);
}

@media (min-width: 1024px) {
    .step-arrow {
        display: flex;
    }
}

.step-arrow svg {
    padding: 0.625rem;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(245, 130, 32, 0.2);
    color: #fed7aa;
    width: 2.5rem;
    height: 2.5rem;
    transition: all 0.5s ease;
}

/* 透過外層 Wrapper hover 來控制箭頭 */
.step-card-wrapper:hover .step-arrow svg {
    color: var(--primary);
    transform: scale(1.1);
}

.step-footer {
    opacity: 0.3;
    color: rgb(148, 163, 184);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
    text-align: center;
    margin-top: 50px;
    grid-column: 1 / -1;
    word-break: break-word;
    white-space: normal;
}

/* =========================================
   9. 合作樂園區塊 (Parks Section Pro)
   ========================================= */

.section-parks {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section-parks {
        padding: 8rem 0;
    }
}

/* --- 背景光圈 (Rings) --- */

@keyframes float-ring {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }

    100% {
        transform: translateY(10px) scale(0.95);
    }
}

/* --- 標題區塊 --- */
.park-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background-color: white;
    border: 1px solid #ffedd5;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.park-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
    padding: 0 1rem;
}

.park-subtitle {
    color: #64748b;
    font-weight: 500;
    font-size: clamp(0.875rem, 2vw, 1rem);
    max-width: 42rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- 樂園區域卡片 (大玻璃卡) --- */
.park-card-link {
    text-decoration: none;
}

/* --- 樂園單項小卡 (內部 Flex Box) --- */

/* 通用 Flex 輔助類 */

/* =========================================
   合作遊樂園頁尾小字 (Park Footer)
   ========================================= */
.park-footer {
    color: rgb(203, 213, 225);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-align: center;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .park-footer {
        font-size: 0.75rem;
        letter-spacing: 0.5em;
    }
}/* =========================================
   10. 常見問題區塊 (FAQ Section Pro - Expanded)
   ========================================= */

.section-faq {
    padding: 6rem 0;
}

@media (min-width: 768px) {
    .section-faq {
        padding: 8rem 0;
    }
}

.bg-theme-alt {
    background-color: #FDFBF9;
}

/* --- 背景散落光暈 --- */

/* 模糊版 */

/* 實體版 (帶邊框) */

@keyframes float-faq {
    0% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(15px, -25px);
    }

    66% {
        transform: translate(-20px, 15px);
    }

    100% {
        transform: translate(10px, -10px);
    }
}

/* --- 標題區塊 --- */
.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background-color: white;
    border: 1px solid rgba(245, 130, 32, 0.2);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.faq-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
    text-align: center;
}

.faq-subtitle {
    color: #64748b;
    font-weight: 500;
    text-align: center;
    font-size: clamp(0.875rem, 2vw, 1rem);
    max-width: 42rem;
    margin: 0 auto;
}

/* --- FAQ 列表與卡片 --- */
.faq-list-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .faq-list-container {
        gap: 1.5rem;
    }
}

.faq-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 2rem;
    border: 1px solid rgba(245, 130, 32, 0.25);
    padding: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

@media (min-width: 768px) {
    .faq-card {
        padding: 2.5rem;
    }
}

.faq-card:hover {
    border-color: var(--primary);
}

.faq-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

@media (min-width: 768px) {
    .faq-card-inner {
        gap: 2rem;
    }
}

/* --- 左側加號 Icon --- */
.faq-icon-box {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 1rem;
    background-color: #fff7ed;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

@media (min-width: 768px) {
    .faq-icon-box {
        width: 3rem;
        height: 3rem;
    }
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    transition: all 0.5s ease;
}

/* Hover 時背景變橘、Icon 變白且旋轉 45 度 (變成打叉 X) */
.faq-card:hover .faq-icon-box {
    background-color: var(--primary);
}

.faq-card:hover .faq-icon {
    color: white;
    transform: rotate(45deg);
}

/* --- 右側內文 --- */
.faq-content {
    flex: 1;
}

.faq-question-text {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.25;
    text-align: justify;
    word-break: break-all;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .faq-question-text {
        font-size: 1.25rem;
    }
}

.faq-card:hover .faq-question-text {
    color: var(--primary);
}

.faq-answer-text {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.625;
    text-align: justify;
    word-break: break-all;
    white-space: pre-line;
    /* 讓內文中的換行符號生效 */
}

@media (min-width: 768px) {
    .faq-answer-text {
        font-size: 1rem;
    }
}

/* =========================================
   11. 行動呼籲區塊 (CTA Section)
   ========================================= */

.section-cta {
    padding: 6rem 0;
}

@media (min-width: 768px) {
    .section-cta {
        padding: 9rem 0;
    }
}

/* --- 背景漸層與光暈 --- */
.cta-bg-gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
    /* 對應 from-[#F58220] via-[#F9A825] to-[#FFB74D] */
    background: linear-gradient(to right, #F58220, #F9A825, #FFB74D);
}

.cta-bg-blobs {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.2;
}

.cta-blob {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    filter: blur(48px);
    /* 對應 blur-3xl */
    animation: float-cta 6s ease-in-out infinite alternate;
}

.cta-blob-1 {
    width: 300px;
    height: 300px;
    top: 0%;
    left: 0%;
    animation-delay: 0s;
}

.cta-blob-2 {
    width: 350px;
    height: 350px;
    top: 20%;
    left: 15%;
    animation-delay: -1s;
}

.cta-blob-3 {
    width: 400px;
    height: 400px;
    top: 40%;
    left: 30%;
    animation-delay: -2s;
}

.cta-blob-4 {
    width: 450px;
    height: 450px;
    top: 60%;
    left: 45%;
    animation-delay: -3s;
}

.cta-blob-5 {
    width: 500px;
    height: 500px;
    top: 80%;
    left: 60%;
    animation-delay: -4s;
}

@keyframes float-cta {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-40px);
    }
}

/* --- 內文排版 --- */
.cta-content-wrapper {
    max-width: 56rem;
    /* max-w-4xl */
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.875rem, 5vw, 3rem);
    /* text-3xl md:text-5xl */
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
    line-height: 1.15;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.cta-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    /* text-lg md:text-xl */
    font-weight: bold;
    color: white;
    margin: 0 auto 3.5rem;
    letter-spacing: 0.025em;
    opacity: 0.9;
    line-height: 1.625;
    max-width: 48rem;
}

@media (min-width: 768px) {
    .cta-subtitle {
        white-space: nowrap;
    }
}

/* --- CTA 按鈕 --- */
.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    max-width: 320px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cta-actions {
        flex-direction: row;
        max-width: none;
    }
}

.cta-btn-link {
    width: 100%;
    text-decoration: none;
}

@media (min-width: 768px) {
    .cta-btn-link {
        width: auto;
    }
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-width: 260px;
    height: 3.5rem;
    padding: 0 3rem;
    border-radius: 9999px;
    border: none;
    background-color: white;
    color: var(--primary);
    /* text-[#F58220] */
    font-size: 1.125rem;
    font-weight: 900;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .cta-btn {
        width: auto;
    }
}

.cta-btn:hover {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.cta-btn:active {
    transform: scale(0.95);
}

.cta-btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* =========================================
   12. 頁尾 (Footer Pro)
   ========================================= */

.site-footer {
    position: relative;
    background-color: #1A1714;
    color: rgba(255, 255, 255, 0.7);
    padding: 2.5rem 0 1.5rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .site-footer {
        padding: 3rem 0 2rem;
    }
}

/* --- 頁尾裝飾光暈 --- */
.footer-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.footer-blob {
    position: absolute;
    top: 5%;
    right: -10%;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background-color: rgba(245, 130, 32, 0.1);
    filter: blur(60px);
    animation: float-footer 8s ease-in-out infinite alternate;
}

@media (min-width: 768px) {
    .footer-blob {
        right: 5%;
    }
}

@keyframes float-footer {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-30px);
    }
}

/* --- 佈局網格 --- */
.footer-inner {
    max-width: 80rem;
    /* max-w-7xl */
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .footer-inner {
        padding: 0 3rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {

    /* md:grid-cols-[1.5fr_1fr_1.2fr] */
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1.2fr;
        gap: 4rem;
    }
}

/* --- 欄位 1：品牌資訊 --- */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-brand {
        align-items: flex-start;
        text-align: left;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.footer-logo-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    color: white;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.625;
    font-weight: 500;
    max-width: 240px;
}

@media (min-width: 768px) {
    .footer-desc {
        max-width: 450px;
    }
}

/* --- 欄位 2 & 3：導覽與聯絡 --- */
.footer-nav,
.footer-contact {
    text-align: center;
}

@media (min-width: 768px) {

    .footer-nav,
    .footer-contact {
        text-align: left;
    }
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 1.5rem;
    row-gap: 0.75rem;
}

@media (min-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 0.5rem;
    }
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.contact-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .contact-list li {
        justify-content: flex-start;
    }
}

.contact-icon {
    width: 14px;
    height: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-link,
.contact-text {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--primary);
}

.text-highlight {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.text-highlight:hover {
    color: var(--primary);
}

/* --- 下半部：版權聲明 --- */
.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright,
.organizer span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.copyright {
    text-align: center;
}

.organizer {
    display: flex;
    gap: 1.5rem;
    text-transform: uppercase;
}

/* =========================================
   浮動客服按鈕 (Floating Contact Button)
   ========================================= */

.floating-contact-btn {
    position: fixed;
    bottom: 1.5rem;
    /* bottom-6 */
    right: 1.5rem;
    /* right-6 */
    z-index: 50;
    width: 3.5rem;
    /* w-14 (56px) */
    height: 3.5rem;
    /* h-14 (56px) */
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 對應 shadow-lg */
    box-shadow: 0 10px 15px -3px rgba(245, 130, 32, 0.3), 0 4px 6px -2px rgba(245, 130, 32, 0.15);
    /* 對應 transition-all duration-300 */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-contact-btn:hover {
    background-color: var(--primary-dark);
    /* 對應 hover:scale-105 */
    transform: scale(1.05);
    /* 對應 hover:shadow-xl */
    box-shadow: 0 20px 25px -5px rgba(245, 130, 32, 0.4), 0 10px 10px -5px rgba(245, 130, 32, 0.2);
}

/* 點擊時的微縮放特效 */
.floating-contact-btn:active {
    transform: scale(0.95);
}

/* 內部 SVG 圖示大小對應 w-6 h-6 (24px) */
.icon-message {
    width: 1.5rem;
    height: 1.5rem;
}

/* =========================================
   2. 背景特效與通用佈局
   ========================================= */
.bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

@keyframes float-blob {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -50px);
    }

    100% {
        transform: translate(-20px, 20px);
    }
}

.section-container {
    position: relative;
    padding: 6rem 0;
}

.bg-theme-light {
    background-color: var(--bg-light);
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.mt-12 {
    margin-top: 3rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

/* =========================================
   自動漂浮背景圓點 (RWD Parallax Blobs)
   ========================================= */

.bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.moving-dot {
    position: absolute;
    border-radius: 50%;
    /* 使用 HTML 的 CSS 變數控制大小、延遲與持續時間 */
    width: var(--size);
    height: var(--size);
    /* 加入一點 transition，讓動畫更滑順 */
    transition: transform 0.1s ease-out;
    will-change: transform;
    /* 觸發漂浮動畫 */
    animation: auto-float var(--duration, 20s) ease-in-out var(--delay, 0s) infinite alternate;
}

/* 模糊與實體兩種基礎樣式 */
.blur-dot {
    filter: blur(80px);
    opacity: 0.15;
}

.solid-dot {
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    opacity: 0.3;
}

/* =========================================
   自動漂浮動畫 (Auto Floating Animation)
   ========================================= */
@keyframes auto-float {
    0% {
        transform: translate(0, 0);
    }

    /* 這裡的 translate 數據要微小且柔和，創造游移感 */
    33% {
        transform: translate(25px, -40px);
    }

    66% {
        transform: translate(-15px, 15px);
    }

    100% {
        transform: translate(10px, -10px);
    }
}

/* =========================================
   6. RWD 響應式微調
   ========================================= */
@media (min-width: 768px) {
    .hero-section {
        min-height: 95vh;
        padding: 6rem 0;
    }

    .hero-actions {
        flex-direction: row;
    }

    .hero-stats {
        margin-top: 4rem;
        gap: 2rem;
    }

    .stat-symbol {
        font-size: 0.75rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .hide-mobile {
        display: block;
    }

    .block-mobile {
        display: inline-block;
    }

    .mt-mobile {
        margin-top: 0;
        color: white;
    }
}

@media (max-width: 767px) {
    .hide-mobile {
        display: none;
    }

    .block-mobile {
        display: block;
    }

    .mt-mobile {
        margin-top: 0.5rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.9rem;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* =========================================
   手機版 (Mobile) - 平均散落排版 (767px 以下)
   ========================================= */
.dot-1 {
    top: 5%;
    left: -10%;
}

.dot-2 {
    top: 25%;
    left: 45%;
}

.dot-3 {
    top: 60%;
    left: 80%;
}

.dot-4 {
    top: 85%;
    left: 20%;
}

.dot-5 {
    top: 15%;
    left: 10%;
}

.dot-6 {
    top: 40%;
    left: 60%;
}

.dot-7 {
    top: 70%;
    left: 15%;
}

.dot-8 {
    top: 20%;
    left: 85%;
}

.dot-9 {
    top: 50%;
    left: -5%;
}

.dot-10 {
    top: 90%;
    left: 75%;
}

.dot-11 {
    top: 35%;
    left: 30%;
}

.dot-12 {
    top: 75%;
    left: 55%;
}

/* =========================================
   電腦版 (Desktop) - 平均散落排版 (768px 以上)
   ========================================= */
@media (min-width: 768px) {
    .dot-1 {
        top: 0%;
        left: -5%;
    }

    .dot-2 {
        top: 15%;
        left: 37%;
    }

    .dot-3 {
        top: 55%;
        left: 75%;
    }

    .dot-4 {
        top: 80%;
        left: 15%;
    }

    .dot-5 {
        top: 25%;
        left: 12%;
    }

    .dot-6 {
        top: 45%;
        left: 58%;
    }

    .dot-7 {
        top: 75%;
        left: 5%;
    }

    .dot-8 {
        top: 10%;
        left: 89%;
    }

    .dot-9 {
        top: 35%;
        left: 26%;
    }

    .dot-10 {
        top: 90%;
        left: 68%;
    }

    .dot-11 {
        top: 65%;
        left: 40%;
    }

    .dot-12 {
        top: 20%;
        left: 65%;
    }
}

/* =========================================
   3. 標題與文字漸層
   ========================================= */
.text-gradient-shadow {
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
    display: inline-block;
}

.text-gradient {
    background-image: linear-gradient(to right, #F58220, #F58220, #FFD54F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 6px 16px;
    border: 1px solid rgba(245, 130, 32, 0.2);
    border-radius: 20px;
    background: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
    color: #1e293b;
}

.highlight {
    color: var(--primary);
}

/* =========================================
   4. 卡片 UI (玻璃擬態、點數、樂園、FAQ)
   ========================================= */

.park-item {
    padding: 10px 24px;
    border: 1px solid rgba(245, 130, 32, 0.2);
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.park-item:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.2);
}

/* 網格與彈性佈局 */

.text-center {
    text-align: center;
}

/* 字體輔助 */

.font-bold {
    font-weight: bold;
}

/* =========================================
   9-2. 合作樂園區塊 - 卡片排版精確還原
   ========================================= */

.park-cards-container {
    display: flex;
    flex-direction: column;
    /* gap-6 */
}

@media (min-width: 768px) {
    .park-cards-container {
        /* gap: 3rem; */
        /* md:gap-12 */
    }
}

.park-card-link {
    display: block;
    text-decoration: none;
    margin: 1rem 0;
}

.park-card-link-empty {
    display: block;
}

/* --- 大卡片外觀 --- */
.park-region-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    /* backdrop-blur-xl */
    border-radius: 2rem;
    border: 1px solid rgba(245, 130, 32, 0.1);
    /* border-[#F58220]/10 */
    padding: 1.25rem;
    /* p-5 */
    box-shadow: 0 20px 25px -5px rgba(120, 50, 0, 0.05);
    /* shadow-xl shadow-orange-900/5 */
    cursor: pointer;
    transition: border-color 0.3s ease;
}

@media (min-width: 768px) {
    .park-region-card {
        border-radius: 2.5rem;
        /* md:rounded-[2.5rem] */
        padding: 3rem;
        /* md:p-12 */
        margin: 1.2rem;
    }
}

.park-region-card:hover {
    border-color: rgba(245, 130, 32, 0.3);
    /* hover:border-[#F58220]/30 */
}

/* --- 卡片內部排版 (md:flex-row) --- */
.park-card-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* gap-6 */
    align-items: center;
}

@media (min-width: 768px) {
    .park-card-inner {
        flex-direction: row;
        gap: 3rem;
        /* md:gap-12 */
    }
}

/* --- 左側：區域標題 --- */
.park-region-header {
    width: 100%;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .park-region-header {
        width: 9rem;
        /* md:w-36 */
    }
}

.region-title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    /* gap-2 */
}

@media (min-width: 768px) {
    .region-title-group {
        align-items: flex-start;
        gap: 1rem;
        /* md:gap-4 */
    }
}

.region-icon-box {
    width: 3rem;
    height: 3rem;
    /* w-12 h-12 */
    border-radius: 1rem;
    /* rounded-2xl */
    background-color: #fff7ed;
    /* bg-orange-50 */
    color: var(--primary);
    /* text-[#F58220] */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    /* shadow-inner */
}
.region-icon-box.central{
    background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
    color: rgb(249 168 37 / var(--tw-text-opacity, 1));
}
.region-icon-box.south{
    background-color: #ffedd580;
    color: rgb(245 130 32 / var(--tw-text-opacity, 1));
}
.region-icon-box.east{
    color: rgb(255 213 79 / var(--tw-text-opacity, 1));
    background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}

.region-icon-box svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* w-6 h-6 */
@media (min-width: 768px) {
    .region-icon-box {
        width: 4rem;
        height: 4rem;
    }

    /* md:w-16 md:h-16 */
    .region-icon-box svg {
        width: 2rem;
        height: 2rem;
    }

    /* md:w-8 md:h-8 */
}

.region-title-text {
    text-align: center;
}

@media (min-width: 768px) {
    .region-title-text {
        text-align: left;
    }
}

.region-title-text h3 {
    font-size: 1.25rem;
    /* text-xl */
    font-weight: 900;
    /* font-black */
    color: #1e293b;
    /* text-slate-800 */
    letter-spacing: -0.025em;
    /* tracking-tight */
    margin: 0;
}

@media (min-width: 768px) {
    .region-title-text h3 {
        font-size: 1.5rem;
        /* md:text-2xl */
    }
}

.region-title-text p {
    font-size: 0.75rem;
    font-weight: 900;
    color: #94a3b8;
    /* text-slate-400 */
    letter-spacing: 0.1em;
    /* tracking-widest */
    text-transform: uppercase;
    margin: 0;
}

@media (min-width: 768px) {
    .region-title-text p {
        font-size: 0.75rem;
    }
}

/* --- 中間：分隔線 --- */
.park-divider {
    display: none;
}

@media (min-width: 768px) {
    .park-divider {
        display: block;
        width: 1px;
        height: 5rem;
        /* h-20 */
        background-color: rgba(241, 245, 249, 0.8);
        /* bg-slate-100/80 */
    }
}

/* --- 右側：樂園項目列表 --- */
.park-items-list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    /* gap-3 */
}

@media (min-width: 768px) {
    .park-items-list {
        justify-content: flex-start;
        gap: 1rem;
        /* md:gap-4 */
    }
}

/* --- 單一樂園項目 --- */
.park-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    /* gap-2 */
    padding: 0.75rem;
    /* p-3 */
    background-color: white;
    border: 1px solid #fff7ed;
    /* border-orange-50 */
    border-radius: 1rem;
    /* rounded-2xl */
    width: 140px;
}

@media (min-width: 768px) {
    .park-item {
        width: auto;
        flex-direction: row;
        padding: 0.5rem 1rem 0.5rem 0.5rem;
        /* md:pl-2 md:pr-4 md:py-2 */
    }
}

.park-logo-box {
    width: 7rem;
    height: 3.5rem;
    /* w-28 h-14 */
    border-radius: 0.5rem;
    /* rounded-lg */
    background-color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
}

@media (min-width: 768px) {
    .park-logo-box {
        width: 8rem;
        height: 3rem;
        /* md:w-32 md:h-12 */
    }
}

.park-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.park-name {
    font-size: 0.75rem;
    font-weight: bold;
    color: #475569;
    /* text-slate-600 */
    text-align: center;
    line-height: 1.25;
    /* leading-tight */
}

@media (min-width: 768px) {
    .park-name {
        font-size: 0.85rem;
        text-align: left;
    }
}

