.elementor-42961 .elementor-element.elementor-element-b125cb2{--display:flex;}.elementor-42961 .elementor-element.elementor-element-210eca4c{--display:flex;}.elementor-42961 .elementor-element.elementor-element-77134573{--divider-border-style:solid;--divider-color:#FFFFFF;--divider-border-width:1px;}.elementor-42961 .elementor-element.elementor-element-77134573 .elementor-divider-separator{width:100%;}.elementor-42961 .elementor-element.elementor-element-77134573 .elementor-divider{padding-block-start:15px;padding-block-end:15px;}/* Start custom CSS for html, class: .elementor-element-f129a3d *//* 方案 B：暗黑電競版 (適合深色/黑色網站) - V2 進階質感 */
.dark-game-card {
    display: flex;
    align-items: center;
    /* 升級 1：背景改為微漸層，增加金屬質感 */
    background: linear-gradient(145deg, #2a2a2a, #151515);
    border: 1px solid rgba(255, 255, 255, 0.1); /* 微弱的白邊，像玻璃邊緣 */
    border-radius: 12px;
    padding: 20px;
    margin: 30px auto;
    max-width: 600px;
    position: relative;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* 更有彈性的動畫 */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    cursor: pointer;
}

/* Hover 發光特效 */
.dark-game-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(255, 215, 0, 0.5); /* 金色邊框顯現 */
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 20px rgba(255, 215, 0, 0.1); /* 增加底部陰影與周圍微光 */
}

/* 升級 2：右上角標籤更精緻 */
.hot-ribbon {
    position: absolute;
    top: 20px;
    right: -32px;
    transform: rotate(45deg);
    background: linear-gradient(90deg, #ff4444, #cc0000);
    color: #fff;
    font-size: 0.6em;
    font-weight: 800;
    padding: 4px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 10;
    letter-spacing: 1px;
}

/* 圖片區 */
.dark-card-icon-box {
    flex-shrink: 0;
    margin-right: 20px;
    position: relative;
}

.dark-card-icon-box img {
    width: 85px; height: 85px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #333;
    display: block;
    transition: transform 0.3s ease;
}

.dark-game-card:hover .dark-card-icon-box img {
    transform: scale(1.05); /* 圖片微放大 */
    border-color: #555;
}

/* 內容區 */
.dark-card-content {
    flex-grow: 1; display: flex; flex-direction: column;
    justify-content: center; text-align: left;
    position: relative;
    z-index: 2;
}

.dark-card-title {
    font-size: 1.25em; font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0; 
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* 標籤 (霓虹風格) */
.dark-tags { margin-bottom: 12px; }
.neon-badge {
    display: inline-block; font-size: 0.7em;
    padding: 4px 10px; border-radius: 4px;
    margin-right: 8px; font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none !important;
}
/* 金色與青色霓虹 - 增加對比度 */
.badge-neon-gold { 
    background: rgba(255, 215, 0, 0.1); 
    color: #ffd700; 
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.05);
}
.badge-neon-blue { 
    background: rgba(0, 255, 255, 0.1); 
    color: #00ffff; 
    border: 1px solid rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.05);
}

.dark-card-desc {
    font-size: 0.9em; color: #b0b0b0;
    margin: 0 0 18px 0; line-height: 1.4;
}

/* 升級 3：按鈕掃光動畫 */
.gold-btn {
    align-self: flex-start;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 10px 28px;
    border-radius: 4px;
    font-weight: 800; font-size: 0.9em;
    display: inline-flex; align-items: center;
    position: relative;
    overflow: hidden; /* 重要：讓掃光效果不溢出 */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    z-index: 1;
}

/* 掃光特效層 */
.gold-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.dark-game-card:hover .gold-btn::after {
    left: 100%; /* 滑鼠經過時，光澤從左掃到右 */
}

.gold-btn:hover { 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.5);
}
.gold-btn span { margin-left: 6px; }

/* 手機適配 */
@media (max-width: 480px) {
    .dark-game-card { padding: 15px; }
    .dark-card-icon-box img { width: 70px; height: 70px; }
    .dark-card-title { font-size: 1.1em; }
    .hot-ribbon { right: -35px; top: 15px; padding: 3px 35px; font-size: 0.55em;}
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-ee58f61 */.qa-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.qa-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.qa-item {
  border: 1px solid currentColor; /* 使用主題文字顏色 */
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 10px 15px;
}

.qa-item summary {
  cursor: pointer;
  font-weight: bold;
  list-style: none;
}

.qa-item summary::-webkit-details-marker {
  display: none; /* 隱藏預設箭頭 */
}

.qa-item[open] {
  background: rgba(0,0,0,0.03); /* 淡背景，不指定顏色 */
}/* End custom CSS */
/* Start custom CSS for wd_text_block, class: .elementor-element-7a8bde6b *//* 只針對 resources-section-container 區域進行樣式設計 */
.resources-section-container {
    padding: 20px;
}

/* 資源區塊樣式 */
.resources-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.resources-section h3 {
    color: #ffcc00;
    font-size: 24px;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

/* 列表樣式 */
.resources-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resources-list li {
    margin-bottom: 10px;
}

.resources-list a {
    display: inline-block;
    width: 100%;
    padding: 10px 15px;
    background-color: #2a2a2a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

/* 滑鼠懸停效果 */
.resources-list a:hover {
    background-color: #ffcc00;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 255, 0, 0.5);
}
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        table th, table td {
            border: 1px solid #444;
            padding: 12px;
            text-align: left;
            font-size: 0.9rem; /* 將文字調整小一點 */
        }
        table th {
            background-color: #1e1e1e;
            color: #00bcd4;
            font-weight: bold;
        }
        table td {
            background-color: #252525;
            color: #ffffff;
        }
        table tr:nth-child(even) td {
            background-color: #2e2e2e;
        }

        .box {
            background-color: #2e2e3e; /* 深灰背景 */
            color: #ffffff; /* 白色字體 */
            padding: 15px;
            margin: 10px 0;
            border-radius: 5px;
        }
        ol, ul {
            padding-left: 20px;
            margin: 10px 0;
        }

        li {
            margin-bottom: 5px;
        }
 /* 特定文字中的連結樣式 */
.special-link {
  display: inline-block;
  line-height: 1.4;
  padding: 4px 8px;  /* 統一高度不會奇怪 */
  margin-top: 4px;   /* 🔥 重點：與上方字拉開距離 */
  border-radius: 6px;
  background-color: #ff5733;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}


/* 滑鼠懸停效果 */
.special-link:hover {
  background-color: #e74c3c; /* 深紅色，提供動態效果 */
  color: #f1f1f1; /* 更亮的文字顏色 */
  text-decoration: underline;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6); /* 加強陰影 */
  transform: scale(1.05); /* 放大效果 */
}/* End custom CSS */