 html,
 body {
     margin: 0;
     padding: 0;
     width: 100vw;
     min-height: 100vh;
     font-family: 'Noto Sans TC', Arial, sans-serif;
     background: #101626;
     color: #f4f8ff;
 }

 body {
     position: relative;
     overflow-x: hidden;
 }

 /* ===== 背景與遮罩 ===== */
 .bg-blur {
     position: fixed;
     inset: 0;
     width: 100vw;
     height: 100vh;
     object-fit: cover;
     z-index: 0;
     filter: brightness(0.5) blur(2px) grayscale(0.2);
 }

 .dark-mask {
     position: fixed;
     inset: 0;
     width: 100vw;
     height: 100vh;
     z-index: 1;
     background: linear-gradient(180deg, rgba(30, 18, 6, 0.76) 0, rgba(0, 0, 0, 0.85) 100%);
     pointer-events: none;
 }

 /* ===== 首頁 HERO ===== */
 .hero-section {
     position: relative;
     width: 100vw;
     height: 100vh;
     min-height: 680px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
 }

 .logo-main {
     /* position: absolute; ← 移除這一行 */
     position: static;
     /* 或直接拿掉 position 這行 */
     left: auto;
     /* 拿掉 */
     top: auto;
     /* 拿掉 */
     transform: none;
     /* 拿掉 */
     width: 390px;
     max-width: 90vw;
     z-index: 4;
 }

 /* 左側功能按鈕 */
 .side-func {
     position: absolute;
     left: 2vw;
     top: 50%;
     transform: translateY(-50%);
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     gap: 22px;
     z-index: 5;
 }

 .main-btn {
     background: linear-gradient(180deg, #fffbe7 0%, #ffe082 37%, #ffd046 65%, #b99320 100%);
     color: #4a3202;
     border: none;
     border-radius: 22px;
     font-size: 2.4em;
     /* 字體更大 */
     font-weight: 900;
     padding: 32px 95px 32px 95px;
     /* 上下左右都拉大，「胖」的重點！ */
     letter-spacing: 11px;
     /* 字距再大一點，更吸睛 */
     box-shadow: 0 10px 28px #ffd046cc, 0 0 0 3px #fffbe7bb inset, 0 2px 6px #ffe082ee;
     margin-bottom: 14px;
     cursor: pointer;
     transition: all 0.19s cubic-bezier(.39, .58, .57, 1.18);
     align-self: flex-start;
     text-shadow: 0 4px 14px #fffbe799, 0 2px 0 #ffd046, 0 2px 4px #865f2c99;
     border: 2.5px solid #ffd046aa;
     filter: brightness(1.06);
 }

.main-btn-gold {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
    /* 固定光暈，不要動畫 */
    filter: brightness(1.1) drop-shadow(0 0 10px #ffe082aa);
    box-shadow: 
        0 12px 30px #ffd046bb,          /* 外部柔光 */
        0 0 0 3px #fffbe799 inset,      /* 內框光暈 */
        0 2px 7px #ffe082aa;            /* 下方陰影 */
}


 .main-btn:hover,
 .main-btn:focus {
     background: linear-gradient(180deg, #fffbe7 0%, #ffeb98 37%, #ffd046 65%, #ffe082 100%);
     color: #311e01;
     box-shadow: 0 16px 42px #ffd046ee, 0 0 0 5px #fffbe799 inset;
     transform: scale(1.07) translateY(-4px);
     filter: brightness(1.18);
     border-color: #fffbe7ee;
 }

 .btn-area {
     display: flex;
     flex-direction: column;
     gap: 14px;
     width: 100%;
     align-items: flex-start;
     text-align: left;
 }

 .main-btn {
     background: linear-gradient(90deg, #ffeca2 0, #ab8422 100%);
     color: #432c01;
     border-radius: 14px;
     font-size: 1.13em;
     font-weight: bold;
     padding: 14px 30px;
     letter-spacing: 2px;
     box-shadow: 0 2px 8px #ffd04622;
     margin: 0;
     transition: background 0.15s, box-shadow 0.18s, color 0.12s;
     align-self: flex-start;
 }

 .main-btn:hover {
     background: linear-gradient(90deg, #ffe082 60%, #fdf2ba 100%);
     color: #573b08;
     box-shadow: 0 4px 16px #ffe08277;
 }

 /* 右側功能連結 */
 .side-links {
     position: absolute;
     right: 2vw;
     top: 50%;
     transform: translateY(-50%);
     display: flex;
     flex-direction: column;
     align-items: flex-end;
     gap: 14px;
     z-index: 5;
 }

 .side-links .main-btn {
     align-self: flex-end;
 }

 /* 往下箭頭 */
 .scroll-down {
     position: absolute;
     left: 50%;
     bottom: 44px;
     transform: translateX(-50%);
     z-index: 8;
     cursor: pointer;
     animation: arrow-float 2s infinite;
 }

 @keyframes arrow-float {

     0%,
     100% {
         transform: translateX(-50%) translateY(0);
     }

     50% {
         transform: translateX(-50%) translateY(18px);
     }
 }

 /* ===== 第二頁（feature-area） ===== */
 .feature-section {
     min-height: 640px;
     background: none;
     padding: 80px 0 48px 0;
     display: flex;
     justify-content: center;
 }

 .feature-area {
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 36px 60px;
     max-width: 1120px;
     width: 100%;
     align-items: stretch;
 }

 .feature-card {
     width: 100%;
     min-width: 0;
     max-width: 320px;
     background: rgba(41, 29, 9, 0.72);
     border-radius: 18px;
     padding: 38px 26px 32px 26px;
     margin: 0;
     box-shadow: 0 2px 14px #ffd04628;
     border: 2.5px solid #ffd04677;
     text-align: center;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .feature-title {
     font-size: 1.28em;
     font-weight: 700;
     color: #ffe082;
     margin-bottom: 10px;
     letter-spacing: 1.6px;
 }

 .feature-desc {
     font-size: 1em;
     color: #fffbe6;
     opacity: 0.94;
 }

 /* 超連結無底線 */
 a,
 a:visited,
 a:active,
 a:hover,
 a:focus {
     text-decoration: none !important;
     outline: none;
     box-shadow: none;
 }

 .hero__bg {
     position: fixed;
     inset: 0;
     width: 100vw;
     height: 100vh;
     object-fit: cover;
     z-index: 0;
 }

 .hero__bg--mobile {
     display: none;
 }

 @media (max-width:700px) {
     .hero__bg--desktop {
         display: none !important;
     }

     .hero__bg--mobile {
         display: block !important;
     }
 }

 .side-links .main-btn-gold {
     display: none;
 }

 @media (max-width: 700px) {
     .side-func {
         display: none !important;
     }

     .side-links .main-btn-gold {
         display: block !important;
     }
 }

 @media (max-width: 700px) {

     html,
     body {
         height: 100%;
         min-height: 100vh;
         overflow-x: hidden;
         background: #101626;
     }

     .hero-section {
         display: flex !important;
         flex-direction: column !important;
         align-items: center !important;
         justify-content: flex-start !important;
         /* min-height: 100vh !important;*/
         height: auto !important;
         position: relative !important;
         box-sizing: border-box;
         padding: 24px 0 24px 0 !important;
     }

     .logo-main {
         margin: 44px 0 10px 0 !important;
         position: static !important;
         width: 76vw !important;
         max-width: 320px !important;
         left: auto !important;
         top: auto !important;
         transform: none !important;
         z-index: 4;
         display: block !important;
     }

     .side-links {
         display: flex;
         flex-direction: column;
         align-items: center;
         justify-content: flex-start;
         width: 100vw;
         gap: 13px 0;
         margin: 0 0 0 0;
         z-index: 5;
         right: 0vw;
         top: 65%;
     }

     .side-links .main-btn-gold {
         padding-top: 44px !important;
         padding-bottom: 44px !important;
     }

     .main-btn {
         min-width: 84vw !important;
         max-width: 96vw !important;
         font-size: 1.12em !important;
         font-weight: 900 !important;
         letter-spacing: 2px !important;
         border-radius: 15px !important;
         box-sizing: border-box !important;
         text-align: center !important;
         align-self: center !important;
         margin: 0 !important;
     }

     /* 隱藏 side-func 與 btn-area (保險) */
     .side-func,
     .btn-area {
         display: none !important;
     }
 }

 @media (max-width: 450px) {
     .footer {
         margin-top: 350px !important;
     }

     .side-links {
         display: flex;
         flex-direction: column;
         align-items: center;
         justify-content: flex-start;
         width: 100vw;
         gap: 13px 0;
         margin: 0 0 0 0;
         z-index: 5;
         right: 0vw;
         top: 100%;
     }
 }

 .footer {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     position: relative;
     width: 100%;
     background: rgba(20, 17, 7, 0.93);
     /* 深色半透明 */
     color: #fffbe6;
     text-align: center;
     padding: 36px 0 28px 0;
     font-size: clamp(1.10rem, 3vw, 1.36em);
     box-sizing: border-box;
     border-top: 2.5px solid #ffd04677;
     z-index: 6;
     margin-top: 34px;
 }

 .footer h1 {
     display: inline-block;
     font-size: 1.5em;
     font-family: 'Noto Sans TC', Arial, sans-serif;
     font-weight: 900;
     letter-spacing: 0.13em;
     margin: 0 0 20px 0;
     padding: 0.12em 0.6em;
     background: linear-gradient(95deg, #fffbe1 0%, #ffe2a0 40%, #ffd047 70%, #ecb12c 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     /* 金色光暈+微黑描邊+動畫 */
     text-shadow: 0 2px 4px #26201277, 0 0 12px #ffd04799, 0 0 20px #ffb30055, 0 0 1px #fff3b5;
     filter: brightness(1.12);
     transition: color 0.14s, text-shadow 0.17s;
   
 }

 .footer img {
     width: clamp(320px, 30vw, 440px);
     max-width: 96vw;
     height: auto;
     margin-top: 18px;
     border-radius: 10px;
     box-shadow: 0 2px 12px #1116, 0 0 16px #ffd04644;
     background: rgba(255, 255, 255, 0.02);
     transition: box-shadow 0.22s;
 }

 .footer img:hover {
     box-shadow: 0 8px 32px #ffd04677, 0 0 28px #fffbe644;
 }

 @media (max-width: 700px) {
     .footer {
         font-size: 1em;
         padding: 22px 0 14px 0;
     }

     .footer img {
         width: 100%;
         max-width: 97vw;
         margin-top: 13px;
     }

     .footer h1 {
         font-size: 1.18em;
         padding: 0.14em 0.08em;
     }
 }


 @keyframes godring-fade-in {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 #godring-logo-effect {
     /* LOGO 靜態常態，不隱藏也不透明 */
     opacity: 1;
     /* 只保留基本樣式、無動畫 */
     filter: none;
     transition: filter 0.22s, transform 0.16s;
 }

 #godring-logo-effect {
     z-index: 5;
 }

 ._godring-logo-effect {
     filter: drop-shadow(0 0 6px #a8e3ff66) drop-shadow(0 0 12px #ffe06733);
     transition: filter 0.22s, transform 0.16s;
     z-index: 5;
 }

 .godauto-badge-area {
     margin-bottom: 28px;
     /* 控制和 LOGO 間的距離，可依LOGO大小微調 */
     text-align: center;
 }

 .godauto-badge-fixbar {
     position: fixed;
     left: 0;
     right: 0;
     bottom: 0;
     z-index: 99;
     display: flex;
     justify-content: center;
     transition: opacity 0.26s cubic-bezier(.4, .6, .5, 1.18), transform 0.28s cubic-bezier(.4, .6, .5, 1.18);
     opacity: 1;
     pointer-events: none;
     padding-bottom: 2vw;
 }

 .godauto-badge-fixbar.hide {
     opacity: 0 !important;
     transform: translateY(60px) !important;
     pointer-events: none !important;
 }

 .godauto-badge-fixbar .godauto-badge {
     pointer-events: auto;
 }

 .godauto-badge-fixbar .godauto-badge {
     pointer-events: auto;
     /* 讓 badge 內容可以被選字/複製 */
     /* 其餘你原本的 .godauto-badge 樣式都可以保留 */
 }

 @media (max-width: 600px) {
     .godauto-badge-fixbar {
         padding-bottom: 4vw;
     }

     .godauto-badge {
         font-size: 1em;
         padding-left: 6vw;
         padding-right: 6vw;
     }
 }

 .godauto-badge {
     font-size: 1.45em;
     font-weight: 900;
     letter-spacing: 2px;
     display: inline-block;
     padding: 10px 30px;
     border-radius: 15px;
     color: #fff8e1;
     background: linear-gradient(90deg, #fffbe7 0%, #fbe56a 55%, #dfb356 100%);
     border: 2.5px solid #ffe7a0;
     box-shadow: 0 0 8px 2px #fffbe644, 0 1px 6px #fbe56a66, 0 1px 6px #78b6ff33;
     position: relative;
     overflow: hidden;
     z-index: 2;
     /* 動態金光聖環 + 藍寶珠光閃爍 */

 }

 .godauto-badge.badge-online {
     background: linear-gradient(90deg, #fffad1 0%, #ffe066 48%, #e2bc69 100%);
     border-color: #ffe7a0;
     color: #7d5600;
     box-shadow: 0 0 9px 3px #ffe9a344, 0 1px 5px #ffe06633, 0 1px 6px #56b9e344;
 }

 .godauto-badge.badge-upcoming {
     background: linear-gradient(90deg, #ffefb3 0%, #ffd678 70%, #ffeada 100%);
     border-color: #fff9e2;
     color: #8c4b18;
     box-shadow: 0 0 7px 2px #fffcd799, 0 1px 5px #ffeebb44, 0 1px 5px #8ee2ff22;
 }


 @media (max-width:600px) {
     .godauto-badge {
         font-size: 1em;
         padding-left: 6vw;
         padding-right: 6vw;
     }
 }

 /* 頁尾連結容器 */
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* 允許手機版換行 */
    gap: 0; /* 間距由連結本身控制 */
    margin-top: 15px;
    padding: 10px 0;
    font-size: 0.95rem;
    letter-spacing: 1.2px;
}

/* 連結基本樣式 */
.footer-links a {
    position: relative;
    color: #8faec5; /* 預設顏色：低調的灰藍色 */
    text-decoration: none;
    padding: 5px 15px;
    transition: all 0.3s ease;
    font-weight: 500;
}

/* 分隔線 (使用 CSS 偽元素產生) */
.footer-links a:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: #3e4a5d; /* 深色分隔線 */
}

/* 滑鼠懸停效果 (Hover) */
.footer-links a:hover {
    color: #ffe59e; /* 懸停變金色，呼應神戒風格 */
    text-shadow: 0 0 8px rgba(255, 229, 158, 0.6); /* 發光效果 */
    transform: translateY(-2px); /* 微微浮起 */
}

/* 手機版調整 */
@media (max-width: 600px) {
    .footer-links {
        gap: 5px 0; /* 上下間距 */
        padding: 0 10px;
    }
    
    .footer-links a {
        font-size: 0.85rem; /* 手機字體稍小 */
        padding: 5px 12px;
    }
    
    /* 手機版若換行，為了美觀可以隱藏分隔線，或保持原樣皆可，這裡保留分隔線 */
}