.elementor-19943 .elementor-element.elementor-element-e3e1c9e{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-bf2cea9 *//* ==========================================
   DP博筊仔 獨立卡片式視覺樣式表 (強力靠左對齊修正)
   ========================================== */

/* 主容器：使用 Flex 佈局強制內部卡片全部靠左 */
.dp-gambler-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important; /* 強制所有子元素靠最左邊開始排列 */
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: 800px;
    margin: 0; /* 消除居中用的 margin: 0 auto */
    padding: 10px 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft JhengHei", sans-serif;
    color: #ffffff;
    text-align: left !important; /* 強制文字內容靠左 */
}

/* 獨立卡片樣式 */
.dp-gambler-card {
    width: 100% !important; /* 確保寬度填滿 max-width */
    background-color: #0c325a; /* 主色 */
    border-left: 5px solid #2797cc; /* 配色線條 */
    border-radius: 0 !important; /* 嚴格消除圓角 */
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    text-align: left !important; /* 強制卡片內所有內容靠左 */
}

/* 標題與副標題樣式 */
.dp-gambler-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: left !important;
}

.dp-gambler-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #2797cc; /* 配色 */
    margin-top: 25px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(39, 151, 204, 0.3);
    padding-bottom: 8px;
    text-align: left !important;
}

/* 內文與引言 */
.dp-gambler-text {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: left !important;
}

.dp-gambler-text strong {
    color: #ffffff;
}

.dp-gambler-quote {
    background-color: rgba(39, 151, 204, 0.1);
    border-left: 3px solid #2797cc;
    border-radius: 0 !important;
    margin: 20px 0;
    padding: 15px 20px;
    font-style: italic;
    color: #d0d0d0;
    line-height: 1.6;
    text-align: left !important;
}

/* 重點提示區塊 */
.dp-gambler-important {
    background-color: rgba(39, 151, 204, 0.15);
    border: 1px solid #2797cc;
    border-radius: 0 !important;
    padding: 15px 20px;
    margin: 20px 0 0 0;
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    text-align: left !important;
}

/* 內部超連結 */
.dp-gambler-link {
    color: #2797cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.dp-gambler-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* 特殊字體樣式 */
.dp-gambler-tag {
    font-weight: bold;
}
.font-red {
    color: #ff5252 !important;
}

/* 表格響應式與樣式 */
.dp-gambler-table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.dp-gambler-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left !important;
    font-size: 15px;
}

.dp-gambler-table th, 
.dp-gambler-table td {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left !important;
}

.dp-gambler-table th {
    background-color: rgba(39, 151, 204, 0.2);
    color: #ffffff;
    font-weight: 600;
}

.dp-gambler-table tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.03);
}

/* CTA 區塊樣式 */
.dp-gambler-cta-box {
    margin-top: 35px;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 2px dashed #2797cc;
    border-radius: 0 !important;
    text-align: left !important;
}

.dp-gambler-cta-heading {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: left !important;
}

.dp-gambler-cta-text {
    font-size: 15px;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left !important;
}

.dp-gambler-cta-btn {
    display: inline-block;
    background-color: #2797cc;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 12px 30px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 0 !important;
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-align: left !important;
}

.dp-gambler-cta-btn:hover {
    background-color: #1a7eb0;
}

/* ==========================================
   RWD 手機版優化（防過胖與內距微調）
   ========================================== */
@media screen and (max-width: 768px) {
    .dp-gambler-container {
        align-items: flex-start !important;
    }

    .dp-gambler-card {
        padding: 20px 15px; /* 防過胖，壓縮兩側 Padding */
        margin-bottom: 15px;
    }
    
    .dp-gambler-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .dp-gambler-subtitle {
        font-size: 18px;
        margin-top: 20px;
    }
    
    .dp-gambler-text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .dp-gambler-table th, 
    .dp-gambler-table td {
        padding: 10px 8px;
        font-size: 14px;
    }
    
    .dp-gambler-cta-box {
        padding: 15px;
    }
    
    .dp-gambler-cta-btn {
        width: 100%;
        box-sizing: border-box;
        text-align: center !important; /* 按鈕在手機版上放大並置中比較好按 */
    }
}/* End custom CSS */