/*!Theme Name: GGPoker Promo
Theme URI: http://www.nsuslab.com/
Author: cayden.lee@nsuslab.com
Author URI: http://www.nsuslab.com/
Description: Wordpress theme for GGPoker Region
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ggpoker-promo
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready*/html{scroll-behavior:smooth}html::-webkit-scrollbar{height:.4rem;width:.4rem}html::-webkit-scrollbar-thumb{background-color:#666;border-radius:.4rem}html::-webkit-scrollbar-track{background:#000}html *{font-family:roboto condensed}body{background-color:#1b1b1b;color:#fff}#cpt-footer-copyright{padding:.3125rem;color:#9e9e9e;font-size:.875rem;line-height:1.3125rem}@media(min-width:576px){.container,.container-sm{max-width:650px}}@media(min-width:769px){.container,.container-sm,.container-md{max-width:980px}}@media(min-width:992px){.container,.container-sm,.container-md,.container-lg{max-width:1100px}#cpt-footer-copyright{font-size:1rem;line-height:1.5rem}}@media(min-width:1400px){.container,.container-sm,.container-md,.container-lg,.container-xl{max-width:1280px}}


/* 让整个页面背景变白，去掉黑色背景 */
body {
    background-color: #ffffff !important;
}

/* 文章容器 - 让它更宽 */
.article-wrapper {
    background-color: #ffffff; /* 让整个文章区域背景变白 */
    padding: 60px 0; /* 增加上下间距，让内容更居中 */
}

/* 文章内容区域 */
.article-section {
    max-width: 1200px;  /* 增加宽度，让页面更舒适 */
    margin: 0 auto;
    padding: 50px;
    background: #ffffff;  /* 文章内容背景为纯白色 */
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); /* 轻微阴影，提升立体感 */
}

/* 文章标题 - 加大字体 & 加粗 */
.article-title {
    font-size: 38px;
    font-weight: bold;
    color: #111;  /* 深色标题，提高对比度 */
    text-align: center;
    margin-bottom: 20px;
}

/* 文章元信息（日期、作者） */
.article-meta {
    font-size: 16px;
    color: #777; /* 让信息更淡化，避免干扰正文 */
    text-align: center;
    margin-bottom: 30px;
}

/* 文章封面图片优化 */
.article-image {
    text-align: center;
    margin-bottom: 30px;
}
.article-image img {
    max-width: 90%;  /* 图片宽度适应文章 */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 轻微阴影，提升层次感 */
}

/* 文章正文 - 提高可读性 */
.article-content {
    font-size: 20px;  /* 字号适中，提升阅读体验 */
    line-height: 1.8;  /* 增加行间距 */
    color: #333;  /* 让正文更清晰 */
    text-align: justify;
}

/* 小标题 */
.article-content h2 {
    font-size: 26px;
    color: #CD181F;  /* 主题红色，提高识别度 */
    margin-top: 35px;
    margin-bottom: 15px;
    border-left: 4px solid #CD181F; /* 左侧红色条，增强层次 */
    padding-left: 10px;
}

/* 列表样式 */
.article-content ul, .article-content ol {
    margin-left: 25px;
    padding-left: 15px;
}
.article-content li {
    font-size: 18px;
    margin-bottom: 10px;
}

/* CTA 按钮优化 */
.btn-danger {
    padding: 14px 30px;
    font-size: 20px;
    border-radius: 50px;
    background-color: #CD181F;  /* 统一品牌色 */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}
.btn-danger:hover {
    background-color: #B30000;
    transform: scale(1.05);
}


/* FAQ 版块整体 */
.faq-section {
    background-color: #f4f4f4;  /* 淡灰色背景，区分文章区域 */
    padding: 50px 0;
    border-radius: 10px;
}

/* FAQ 标题 */
.faq-section .section-title {
    font-size: 28px;
    text-align: center;
    font-weight: bold;
    color: #333; /* 深灰色标题，提高对比度 */
    margin-bottom: 30px;
}

/* FAQ 单个问题项 */
.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    padding-bottom: 10px;
    background: #ffffff;  /* 白色背景，让问题更突出 */
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease-in-out;
}

/* FAQ 问题按钮 */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    padding: 15px;
    cursor: pointer;
    color: #222; /* 深色字体，提高对比度 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

/* 问题悬停效果 */
.faq-question:hover {
    background-color: rgba(205, 24, 31, 0.1);  /* 轻微红色背景 */
}

/* FAQ 答案（默认隐藏） */
.faq-answer {
    display: none;
    padding: 15px;
    font-size: 18px;
    color: #444;
    background-color: #f9f9f9;
    border-radius: 5px;
    margin-top: 10px;
    line-height: 1.6;
}

/* FAQ 展开箭头 */
.faq-icon {
    font-size: 22px;
    font-weight: bold;
    color: #cd181f; /* 红色符号 */
    transition: transform 0.3s ease-in-out;
}

