/* --- 防詐騙專區頁面樣式 --- */
.promo-links-container {
    width: 100%;
    margin: 0 auto;
    font-family: "微軟正黑體", "Microsoft JhengHei", sans-serif;
}

.page-title {
    font-size: 2em;
    color: #c2242d;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

#promo-list {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

/* --- 項目樣式 --- */
.promo-item {
    border-bottom: 1px solid #e0e0e0;
}
.promo-item:last-child {
    border-bottom: none;
}

.promo-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px;
    background-color: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s;
}
.promo-toggle:hover {
    background-color: #f5f5f5;
}

.item-title {
    font-size: 1.1em;
    font-weight: 500;
    color: #333;
    padding-right: 15px;
}

.item-arrow {
    font-size: 1em;
    color: #999;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.promo-toggle.active .item-arrow {
    transform: rotate(180deg);
}

/* --- 內容樣式 --- */
.promo-content {
    display: none; /* 預設隱藏 */
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.content-wrapper {
    padding: 20px;
}

/* 響應式影片容器 */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 8px;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 連結按鈕樣式 */
.styled-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #c2242d;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.styled-button:hover {
    background-color: #a01c23;
}

/* RWD */
@media (max-width: 768px) {
    .page-title { font-size: 1.6em; }
    .item-title { font-size: 1em; }
}