.main-article {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e2e2;
    margin-bottom: 40px;
}
.main-article .article-banner {
    width: 100%;
    height: auto;
    border-radius: 6px;
}
.article-header {
    text-align: center;
    margin-bottom: 20px;
}
.article-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 30px;
    color: #222;
}
.article-meta {
    font-size: 0.9rem;
    color: #dd0f38;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}
.article-meta span {
    display: flex;
    font-size: 14px;
    margin-right: 15px;
}
.article-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #444;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
/*预览列表*/
#ez-toc-container {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin: 20px 0;
  font-family: "Segoe UI", sans-serif;
  transition: all 0.3s ease;
  display: table;
    width: auto;
}
#ez-toc-container .ez-toc-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  border-left: 4px solid #0073aa;
  padding-left: 10px;
}
#ez-toc-container ul.ez-toc-list {
    padding: 0;
}
#ez-toc-container ul.ez-toc-list li a {
  display: block;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
#ez-toc-container .ez-toc-js-icon-con, #ez-toc-container .ez-toc-toggle label, .ez-toc-cssicon {
    float: right;
    position: relative;
    font-size: 16px;
    padding: 0;
    border: 1px solid #999191;
    border-radius: 5px;
    cursor: pointer;
    width: 35px;
    background-color: #000;
}
#ez-toc-container ul.ez-toc-list li a:hover {
  color: #d6336c;
  padding-left: 5px;
}
.ez-toc-wrap-center {
    margin: 0 auto 1em !important;
}
.ez-toc-title-container{
    display: table;
    width: 100%;
}
.ez-toc-title, .ez-toc-title-toggle {
    display: inline;
    text-align: left;
    vertical-align: middle;
}
.ez-toc-title-toggle svg {
  fill: #aaa !important;
  transition: transform 0.3s ease;
}
.ez-toc-toggle:hover svg {
  transform: rotate(180deg);
  fill: #0073aa !important;
}
.ez-toc-icon-toggle-span {
    display: flex;
    align-items: center;
    width: 35px;
    height: 30px;
    justify-content: center;
    direction: ltr;
}
.ez-toc-pull-right {
    float: right !important;
    margin-left: 10px;
}
/*预览列表*/
.article-content p {
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #333;
}
.article-content a {
    color: #0000FF;
    text-decoration: underline;
    transition: color 0.2s;
}
.article-content a:hover {
    color: #d6336c;
    text-decoration: none;
}
.article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
    border-radius: 4px;
    text-align: center;
}
.article-content h2, .article-content h3, .article-content h4 {
    margin: 2rem 0 1rem;
    line-height: 1.3;
    color: #222;
}
.article-content ul, .article-content ol, .card-body ul, .card-body ol {
    margin-top: 1rem;
}
.article-content li, .card-body li {
    font-size: 15px;
    position: relative;
    padding-left: 25px;
}
.article-content li + li, .card-body li + li{
    margin-top: 8px;
}
.article-content ol li, .card-body ol li {
   counter-increment: ol-counter;
}
.article-content ol li::before, .card-body ol li::before{
  content: counter(ol-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: #049adb;
}

/* 多级有序列表样式 */
.article-content ol ol {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  counter-reset: ol-subcounter;
}

.article-content ol ol li {
  counter-increment: ol-subcounter;
}

.article-content ol ol li::before {
  content: counter(ol-counter) "." counter(ol-subcounter);
  color: #34a853;
  font-weight: normal;
}

.article-content ol ol ol li::before {
  content: counter(ol-counter) "." counter(ol-subcounter) "." counter(ol-subcounter, lower-alpha);
  color: #ea4335;
  font-size: 0.9em;
}
/* 检查标记列表 */
.article-content ul.yes-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #34a853;
  font-weight: bold;
  background-image: none !important;
  width: auto !important;
  height: auto !important;
  top: 0;
}

/* 拒绝标记列表 */
.article-content ul.no-list li::before {
  content: "🚫";
  position: absolute;
  left: 0;
  color: #ea4335; /* 改为红色更符合语义 */
  font-weight: bold;
  background-image: none !important;
  width: auto !important;
  height: auto !important;
  top: 0;
}

/* 箭头标记列表 */
.article-content ul.icon-list li::before {
  content: "🎯";
  position: absolute;
  left: 0;
  color: #1a73e8;
  font-weight: bold;
  background-image: none !important;
  width: auto !important;
  height: auto !important;
  top: 0;
}
.article-content ul:not(.check-list):not(.yes-list):not(.no-list):not(.icon-list) li::before,.card-body ul:not(.check-list):not(.yes-list):not(.no-list):not(.icon-list) li::before{
	content: "";
    display: inline-block;
    width: 15px; 
    height: 15px;
    background-image: url('https://bingoplus.ph/bingo_ico.ico'); 
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 3px;
}
.pros-cons {
    display: flex; 
    gap: 20px;
    margin-bottom: 1.5rem;
}
.pros-list {
    flex: 1; 
    padding: 10px; 
    background-color: #e6f4ea; 
    border-radius: 8px;
}
.cons-list{
    flex: 1; 
    padding: 10px; 
    background-color: #fdecea; 
    border-radius: 8px;
}
.article-content blockquote {
  border-left: 4px solid #0099ff;
  padding: 0.5rem 1rem;
  margin: 1.5rem 0;
  color: #666;
  background-color: #f8f8f8;
  font-style: italic;
  border-radius: 10px;
}
/* 表格基础样式 */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95em;
  box-shadow: 0 0 0 1px #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}

/* 表头样式 */
.article-content thead {
  background-color: #f5f5f5;
  font-weight: 600;
  color: #333;
}

/* 表头和单元格共用样式 */
.article-content th,
.article-content td {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid #e0e0e0;
}

/* 表头特殊样式 */
.article-content th {
  background-color: #f8f8f8;
  border-bottom-width: 2px;
}

/* 表格行交替颜色 */
.article-content tbody tr:nth-child(even) {
  background-color: #fafafa;
}

/* 表格行悬停效果 */
.article-content tbody tr:hover {
  background-color: #f0f0f0;
}

/* 相关标签美化 */
.post-tags-media {
	background-color: #FFF;
    padding: 20px;
	border-radius:10px;
	border: 1px solid #ddd;
	display: flex;
	gap: 20px;
}
.article-tags, .article-share {
    flex: 1;
    width: 50%;
}
.tag-lists {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.tags {
    font-size: 12px;
    transition: all 0.3s ease-in-out;
	border-radius:10px;
	padding: 0.5rem 1rem;
	border:1px solid #dee2e6;
	background-color: #005fff;
	color: #fff;
}
.tags:hover {
    background-color: #ff6634;
    color: #fff;
    transform: scale(1.1);
}

/* 社交分享按钮优化 */
.article-share {
    text-align: right;
}
.share-title, .tags-title {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 1rem;
}
.social-lists {
    justify-content: flex-end;
    gap: 1rem;
}
.social-share svg {
    width: 30px;
    height: auto;
    transition: all 0.3s ease-in-out;
}
.social-share svg:hover {
    transform: scale(1.1);
}
/*上下篇文章*/
.post-navigation {
    display: flex;
    margin: 40px 0;
    gap: 20px;
}
.post-prev, .post-next {
    flex: 1;
    width: 50%;
}
.post-next {
    text-align: right;
}

.prev-article, .next-article {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}
.prev-article:hover, .next-article:hover {
    background: #ff6533;
    color: white;
    transform: scale(1.05);
}
.next-article {
    justify-content: right;
}
.previous-post {
    background: url(../images/icon/previous.svg);
    margin-right: 15px;
}
.next-post {
    background: url(../images/icon/next.svg);
    margin-left: 15px;
}
.chevron-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position:center;
    background-size: 16px 16px;
}
.related-articles {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
}

.related-articles h2 {
    margin-bottom: 1rem;
}
.related-post-text {
    margin-bottom: 10px;
}
.related-post {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.related-post-card {
    border: 1px solid #0000002d;
    background: #fff;
    border-radius: 16px;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}
.related-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.related-post-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}
.related-card-body {
    flex: 1 1 auto;
    padding: 1rem;
    display: flex;
    flex-flow: column;
}
.single-crad {
    max-width: 1200px;
    margin: 25px 0;
}
.single-app, .single-casino {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.single-app-card {
    flex: 0 0 auto;
    width: 16.66666667%;
    padding-right: calc(1.5rem * .5);
    padding-left: calc(1.5rem * .5);
}
.single-app-info {
    text-align: center;
}
.single-app-info img {
    margin: 0;
    border-radius: 30px;
}
.single-app-logo {
    margin-bottom: 10px !important;
    padding: 0 10px;
}
.single-app-btn {
    color: #ffffff;
    background: #0d6efd;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 14px;
}
.single-casino-card {
    flex: 0 0 auto;
    width: 33.33333333%;
    padding-right: calc(1.5rem * .5);
    padding-left: calc(1.5rem * .5);
}
.single-casino-body {
    text-align: center;
    border: 1px solid #0000002d;
    border-radius: 10px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}
.single-casino-info {
    padding: 1rem;
}
.single-casino-info .card-title {
    font-size: 1.2rem;
    font-weight: bold;
}
.single-casino-info a {
    width: 100%;
    background: #212529;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
}
.section-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    padding-left: 20px;
    margin: 15px 0;
}
.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 25px;
    background: #ff6634;
    border-radius: 3px;
}
.blog-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}
.card-meta {
    display: flex;
    font-size: 0.8rem;
    color: #474747;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.meta-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
}
.meta-item i {
    margin-right: 5px;
}
.card-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.25;
    transition: color 0.3s ease;
}
.card-excerpt {
    color: #2d2d2d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}
.read-more {
    display: flex;
    background-color: #e01538;
    padding: 2px 6px;
    border-radius: 5px;
    align-self: flex-end;
    color: #fff;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}
/*FAQS*/
.faq {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.faq .faq-item h3 {
    margin: 0;
}
/* 每个问题块 */
.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

/* 最后一个问题去掉下边框 */
.faq-item:last-child {
  border-bottom: none;
}

/* 问题按钮 */
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  background: linear-gradient(90deg,#f9f9f9,#f9f9f9);
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: linear-gradient(90deg,#f1f1f1,#f1f1f1);
}

/* 问题右侧箭头 */
.faq-question::after {
  content: '\25BC';
  transition: transform 0.4s ease;
  font-size: 0.8rem;
  color: #555;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* 答案容器 */
.faq-answer {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 1.5rem;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

.faq-answer.show {
  opacity: 1;
  max-height: 1000px;
  padding: 1.2rem 1rem;
}
.faq-answer.show p {
    margin-bottom: 0;
}
/* 展开高亮 */
.faq-item.active {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-radius: 10px;
}
.faq-item.active .faq-question {
    background: #0050ff;
}
.faq-item.active .faq-question, .faq-item.active .faq-question::after {
    color: #fff;
}
/* 列表样式 */
.faq-answer ul {
  padding-left: 1rem;
}

.faq-answer li {
  margin-bottom: 0.4rem;
}
.faq-view ,.single-view {
    color: #fff !important;
    background: blue;
    border-radius: 5px;
    padding: 6px 12px;
    display: block;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
    margin-top: 16px;
    font-size: 14px;
}
.single-view {
    font-size: 16px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .main-article {
        padding: 20px;
    }
    .article-header h1 {
        font-size: 1.8rem;
    }
    .article-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
     }
    .post-tags-media, .post-navigation {
        flex-flow: column;
    }
    .article-tags, .article-share, .post-prev, .post-next, .related-post-card {
        flex: 0 0 auto;
        width: 100%;
    }
    .tag-lists li {
        margin-bottom: 10px;
    }
    .article-share {
        text-align: left;
    }
    .related-articles {
        padding: 0;
        background: unset;
    }
    .single-app-card {
        flex: 0 0 auto;
        width: 50%;
    }
    .single-casino {
        flex: 0 0 auto;
        width: 100%;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}