/* ===================================
   Casino Blog - ไทยแบบดั้งเดิม - ศิลปะและสถาปัตยกรรมไทย - ไทยแบบดั้งเดิม - ศิลปะและสถาปัตยกรรมไทย
   =================================== */

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a120b 0%, #2d1f14 100%);
    color: #e0e0e0;
    line-height: 1.6;
}

.cbt-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.cbt-wrapper {
    min-height: calc(100vh - 200px);
}

/* ===== Header ===== */
.cbt-header {
    background: linear-gradient(180deg, #3d2b1a 0%, #1f1810 100%);
    border-bottom: 2px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.cbt-header-inner {
    padding: 15px 0;
}

.cbt-logo {
    display: inline-block;
}

.cbt-logo mip-img {
    height: 50px;
    width: auto;
}

.cbt-nav {
    display: inline-block;
    margin-left: 40px;
}

.cbt-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.cbt-nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.cbt-nav-link:hover,
.cbt-nav-link.active {
    color: #d4af37;
}

.cbt-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s;
}

.cbt-nav-link:hover::after,
.cbt-nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.cbt-dropdown {
    position: relative;
}

.cbt-dropdown-toggle {
    cursor: pointer;
}

.cbt-dropdown-arrow {
    display: inline-block;
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.cbt-dropdown:hover .cbt-dropdown-arrow {
    transform: rotate(180deg);
}

.cbt-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(180deg, #3d2b1a 0%, #1f1810 100%);
    min-width: 250px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid #d4af37;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.cbt-dropdown:hover .cbt-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cbt-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.cbt-dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border-left-color: #d4af37;
    padding-left: 25px;
}

.cbt-header-actions {
    float: right;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cbt-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.cbt-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #d4af37;
    border-radius: 3px;
}

/* ===== Buttons ===== */
.cbt-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.cbt-btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
    color: #1a120b;
}

.cbt-btn-primary:hover {
    background: linear-gradient(135deg, #e8c547 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.cbt-btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
    color: #1a120b;
    padding: 15px 40px;
    font-size: 18px;
}

.cbt-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.cbt-btn-outline {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 13px 38px;
    font-size: 18px;
}

.cbt-btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.cbt-btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 15px 40px;
    font-size: 18px;
}

.cbt-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.cbt-btn-large {
    padding: 18px 50px;
    font-size: 20px;
}

/* ===== Hero Section ===== */
.cbt-hero {
    background: linear-gradient(135deg, #2d1f14 0%, #4a3728 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cbt-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent);
    pointer-events: none;
}

.cbt-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cbt-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #e8c547);
    color: #1a120b;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 25px;
}

.cbt-hero-title {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.cbt-hero-subtitle {
    font-size: 20px;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cbt-hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.cbt-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.cbt-stat {
    background: rgba(212, 175, 55, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.cbt-stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 10px;
}

.cbt-stat-label {
    font-size: 16px;
    color: #b0b0b0;
}

/* ===== Game Carousel ===== */
.cbt-game-carousel {
    padding: 80px 0;
    background: #1a120b;
    overflow: hidden;
}

.cbt-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.cbt-section-title {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
}

.cbt-section-subtitle {
    font-size: 18px;
    color: #b0b0b0;
}

.cbt-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.cbt-carousel-track {
    display: flex;
    animation: cbt-carousel-scroll 35s linear infinite;
}

.cbt-carousel-track:hover {
    animation-play-state: paused;
}

.cbt-carousel-slide {
    display: flex;
    gap: 20px;
    padding: 0 20px;
    flex-shrink: 0;
}

@keyframes cbt-carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.cbt-game-card {
    min-width: 200px;
    background: linear-gradient(180deg, #2d1f14 0%, #1f1810 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #4a3728;
    transition: all 0.3s;
    cursor: pointer;
}

.cbt-game-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.cbt-game-card mip-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cbt-game-info {
    padding: 15px;
    text-align: center;
}

.cbt-game-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.cbt-game-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #e8c547);
    color: #1a120b;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

/* ===== Games Grid ===== */
.cbt-games-grid {
    padding: 80px 0;
    background: linear-gradient(180deg, #2d1f14 0%, #1a120b 100%);
}

.cbt-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.cbt-grid-item {
    background: #1f1810;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #4a3728;
    transition: all 0.3s;
    cursor: pointer;
}

.cbt-grid-item:hover {
    border-color: #d4af37;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.cbt-grid-item mip-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.cbt-grid-title {
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

/* ===== Promo Section ===== */
.cbt-promo {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d1f14 0%, #4a3728 100%);
}

.cbt-promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cbt-promo-card {
    background: linear-gradient(180deg, #3d2b1a 0%, #1f1810 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #4a3728;
    transition: all 0.3s;
}

.cbt-promo-card:hover {
    border-color: #d4af37;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.cbt-promo-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.cbt-promo-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.cbt-promo-desc {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.7;
}

/* ===== FAQ Section ===== */
.cbt-faq {
    padding: 100px 0;
    background: #1a120b;
}

.cbt-faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.cbt-faq-item {
    background: linear-gradient(180deg, #2d1f14 0%, #1f1810 100%);
    margin-bottom: 25px;
    padding: 35px;
    border-radius: 15px;
    border-left: 4px solid #d4af37;
}

.cbt-faq-question {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cbt-faq-answer {
    color: #b0b0b0;
    line-height: 1.8;
}

.cbt-faq-answer p {
    font-size: 16px;
    line-height: 2;
}

/* ===== CTA Section ===== */
.cbt-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
}

/* ===== Latest Articles Section ===== */
.cbt-latest-articles {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a120b 0%, #2d1f14 100%);
}

/* ===== Featured Articles Section ===== */
.cbt-featured-articles {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d1f14 0%, #1a120b 100%);
}

.cbt-featured-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.cbt-featured-item {
    background: linear-gradient(180deg, #3d2b1a 0%, #1f1810 100%);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #4a3728;
    transition: all 0.3s;
}

.cbt-featured-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cbt-featured-item-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #d4af37;
}

.cbt-featured-item-title {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cbt-featured-item-meta {
    display: flex;
    gap: 25px;
    font-size: 15px;
    color: #808080;
}

.cbt-featured-item-date {
    color: #d4af37;
    font-weight: 600;
}

.cbt-featured-item-views {
    color: #b0b0b0;
}

.cbt-featured-item-image {
    margin-bottom: 30px;
}

.cbt-featured-item-image mip-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.cbt-featured-item-content {
    font-size: 17px;
    line-height: 1.9;
    color: #e0e0e0;
}

.cbt-featured-item-content p {
    margin-bottom: 20px;
}

.cbt-featured-item-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.cbt-featured-item-content h1,
.cbt-featured-item-content h2,
.cbt-featured-item-content h3,
.cbt-featured-item-content h4 {
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.cbt-featured-item-content a {
    color: #d4af37;
    text-decoration: none;
}

.cbt-featured-item-content a:hover {
    text-decoration: underline;
}

.cbt-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.cbt-article-preview {
    background: linear-gradient(180deg, #2d1f14 0%, #1f1810 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #4a3728;
    transition: all 0.3s;
}

.cbt-article-preview:hover {
    border-color: #d4af37;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.cbt-article-preview-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.cbt-article-preview-image mip-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.cbt-article-preview-content {
    padding: 25px;
}

.cbt-article-preview-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cbt-article-preview-excerpt {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cbt-article-preview-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #808080;
}

.cbt-article-preview-date {
    color: #d4af37;
    font-weight: 600;
}

.cbt-article-preview-views {
    color: #b0b0b0;
}

.cbt-articles-more {
    text-align: center;
}

.cbt-articles-more .cbt-btn-outline {
    padding: 15px 40px;
    font-size: 16px;
}

.cbt-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cbt-cta-title {
    font-size: 48px;
    font-weight: 900;
    color: #1a120b;
    margin-bottom: 20px;
}

.cbt-cta-subtitle {
    font-size: 20px;
    color: #333333;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cbt-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cbt-cta-buttons .cbt-btn-gold {
    background: #1a120b;
    color: #d4af37;
}

.cbt-cta-buttons .cbt-btn-gold:hover {
    background: #2d1f14;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== Article List ===== */
.cbt-article-list {
    padding: 60px 0;
    background: #1a120b;
}

.cbt-breadcrumb {
    margin-bottom: 30px;
    font-size: 15px;
    color: #b0b0b0;
}

.cbt-breadcrumb a {
    color: #d4af37;
    text-decoration: none;
}

.cbt-breadcrumb a:hover {
    text-decoration: underline;
}

.cbt-breadcrumb-separator {
    margin: 0 10px;
}

.cbt-article-header {
    text-align: center;
    margin-bottom: 50px;
}

.cbt-article-title-main {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
}

.cbt-article-subtitle {
    font-size: 18px;
    color: #b0b0b0;
}

.cbt-article-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.cbt-article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cbt-article-card {
    background: #2d1f14;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #4a3728;
    transition: all 0.3s;
}

.cbt-article-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.cbt-article-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.cbt-article-image mip-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cbt-article-content {
    padding: 25px;
}

.cbt-article-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.cbt-article-excerpt {
    font-size: 15px;
    color: #b0b0b0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.cbt-article-meta {
    font-size: 14px;
    color: #808080;
}

.cbt-article-date {
    color: #d4af37;
}

.cbt-pagination {
    margin-top: 50px;
    text-align: center;
}

.cbt-pagination a,
.cbt-pagination span {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: #2d1f14;
    color: #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.cbt-pagination a:hover,
.cbt-pagination .active {
    background: #d4af37;
    color: #1a120b;
}

/* ===== Sidebar ===== */
.cbt-sidebar-widget {
    background: #2d1f14;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 2px solid #4a3728;
}

.cbt-widget-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4af37;
}

.cbt-popular-list,
.cbt-category-list,
.cbt-related-list {
    list-style: none;
}

.cbt-popular-item,
.cbt-category-item,
.cbt-related-item {
    margin-bottom: 15px;
}

.cbt-popular-link,
.cbt-category-link,
.cbt-related-link {
    display: block;
    color: #e0e0e0;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s;
}

.cbt-popular-link:hover,
.cbt-category-link:hover,
.cbt-related-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.cbt-popular-title,
.cbt-related-title {
    font-size: 15px;
    font-weight: 600;
}

.cbt-category-count {
    float: right;
    color: #808080;
}

/* ===== Article Detail ===== */
.cbt-article-detail {
    padding: 60px 0;
    background: #1a120b;
}

.cbt-detail-title {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cbt-detail-meta {
    margin-bottom: 30px;
    color: #808080;
    font-size: 15px;
}

.cbt-detail-meta span {
    margin-right: 20px;
}

.cbt-detail-date {
    color: #d4af37;
}

.cbt-detail-image {
    margin-bottom: 30px;
}

.cbt-detail-image mip-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.cbt-detail-content {
    font-size: 17px;
    line-height: 1.9;
    color: #e0e0e0;
}

.cbt-detail-content p {
    margin-bottom: 20px;
}

.cbt-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.cbt-article-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #4a3728;
}

.cbt-nav-prev,
.cbt-nav-next {
    display: block;
    padding: 20px;
    background: #2d1f14;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.cbt-nav-prev:hover,
.cbt-nav-next:hover {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #d4af37;
}

.cbt-nav-label {
    display: block;
    font-size: 13px;
    color: #808080;
    margin-bottom: 8px;
}

.cbt-nav-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

/* ===== Footer ===== */
.cbt-footer {
    background: #1a120b;
    padding: 60px 0 30px;
    border-top: 2px solid #d4af37;
}

.cbt-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.cbt-footer-title {
    font-size: 20px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
}

.cbt-footer-text,
.cbt-footer-links {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.8;
}

.cbt-footer-links {
    list-style: none;
}

.cbt-footer-links li {
    margin-bottom: 10px;
}

.cbt-footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.cbt-footer-links a:hover {
    color: #d4af37;
}

.cbt-footer-divider {
    height: 1px;
    background: #4a3728;
    margin-bottom: 30px;
}

.cbt-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cbt-footer-copyright {
    color: #808080;
    font-size: 14px;
}

.cbt-footer-partners {
    color: #808080;
    font-size: 14px;
}

.cbt-footer-partners a {
    color: #b0b0b0;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s;
}

.cbt-footer-partners a:hover {
    color: #d4af37;
}

/* ===== 404 Page ===== */
.cbt-404-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a120b 0%, #2d1f14 100%);
}

.cbt-404-content {
    text-align: center;
}

.cbt-404-title {
    font-size: 150px;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(212, 175, 55, 0.5);
}

.cbt-404-message {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cbt-404-description {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 40px;
}

/* ===== Mobile Menu ===== */
.cbt-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #1f1810;
    z-index: 2000;
    transition: right 0.3s;
    overflow-y: auto;
}

.cbt-mobile-menu.active {
    right: 0;
}

.cbt-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #4a3728;
}

.cbt-mobile-logo mip-img {
    height: 40px;
    width: auto;
}

.cbt-mobile-close {
    background: none;
    border: none;
    color: #d4af37;
    font-size: 28px;
    cursor: pointer;
}

.cbt-mobile-nav {
    padding: 20px;
}

.cbt-mobile-nav-item {
    display: block;
    padding: 15px 20px;
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.cbt-mobile-nav-item:hover,
.cbt-mobile-nav-item.active {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.cbt-mobile-cta {
    background: linear-gradient(135deg, #d4af37, #e8c547) !important;
    color: #1a120b !important;
    text-align: center;
    margin-top: 20px;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .cbt-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .cbt-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cbt-promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cbt-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cbt-article-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cbt-nav {
        display: none;
    }
    
    .cbt-menu-toggle {
        display: flex;
    }
    
    /* Mobile Dropdown */
    .cbt-mobile-dropdown {
        position: relative;
    }
    
    .cbt-mobile-dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .cbt-mobile-dropdown-arrow {
        font-size: 12px;
        transition: transform 0.3s;
    }
    
    .cbt-mobile-dropdown.active .cbt-mobile-dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .cbt-mobile-dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        background: rgba(212, 175, 55, 0.05);
        border-radius: 10px;
        margin-top: 10px;
    }
    
    .cbt-mobile-dropdown.active .cbt-mobile-dropdown-menu {
        max-height: 500px;
        padding: 10px;
    }
    
    .cbt-mobile-dropdown-item {
        display: block;
        padding: 12px 20px;
        color: #e0e0e0;
        text-decoration: none;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s;
    }
    
    .cbt-mobile-dropdown-item:hover,
    .cbt-mobile-dropdown-item:active {
        background: rgba(212, 175, 55, 0.1);
        color: #d4af37;
    }
    
    .cbt-hero-title {
        font-size: 36px;
    }
    
    .cbt-hero-subtitle {
        font-size: 16px;
    }
    
    .cbt-hero-cta {
        flex-direction: column;
    }
    
    .cbt-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cbt-section-title {
        font-size: 32px;
    }
    
    .cbt-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cbt-promo-grid {
        grid-template-columns: 1fr;
    }
    
    .cbt-article-grid {
        grid-template-columns: 1fr;
    }
    
    .cbt-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .cbt-featured-item {
        padding: 25px;
    }
    
    .cbt-featured-item-title {
        font-size: 24px;
    }
    
    .cbt-featured-item-content {
        font-size: 16px;
    }
    
    .cbt-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cbt-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cbt-article-navigation {
        grid-template-columns: 1fr;
    }
    
    .cbt-cta-title {
        font-size: 32px;
    }
    
    .cbt-cta-buttons {
        flex-direction: column;
    }
    
    .cbt-faq-question {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .cbt-hero {
        padding: 60px 0;
    }
    
    .cbt-hero-title {
        font-size: 28px;
    }
    
    .cbt-stat-number {
        font-size: 28px;
    }
    
    .cbt-section-title {
        font-size: 26px;
    }
    
    .cbt-grid {
        grid-template-columns: 1fr;
    }
    
    .cbt-game-card {
        min-width: 180px;
    }
    
    .cbt-game-card mip-img {
        height: 180px;
    }
}

/* ===================================
   Thai Traditional - Unique Styles
   传统泰式装饰风格
   =================================== */

/* 泰式金色光晕 Hero */
.cbt-hero::before {
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15), transparent 60%),
                radial-gradient(circle at 70% 30%, rgba(194, 41, 66, 0.1), transparent 50%);
}

.cbt-hero-badge {
    background: linear-gradient(135deg, #d4af37, #c02942);
    letter-spacing: 2px;
}

.cbt-hero-title {
    background: linear-gradient(180deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 泰式装饰边框 */
.cbt-section-header::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, #c02942, #2c5f2d, transparent);
    margin: 15px auto 0;
    border-radius: 2px;
}

.cbt-game-card {
    border-radius: 8px;
    position: relative;
}

.cbt-game-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    pointer-events: none;
}

.cbt-game-card:hover::before {
    border-color: rgba(212, 175, 55, 0.5);
}

/* 金色分割线 */
.cbt-footer {
    background: linear-gradient(180deg, #1f1810 0%, #2c1f12 100%);
    border-top: 3px solid #d4af37;
}

.cbt-footer-title {
    color: #d4af37;
    position: relative;
    padding-bottom: 12px;
}

.cbt-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #d4af37;
}

/* 卡牌金色描边特效 */
.cbt-promo-card {
    position: relative;
    overflow: hidden;
}

.cbt-promo-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* 按钮泰式风格 */
.cbt-btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #c02942 100%);
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cbt-btn:hover {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

/* FAQ 装饰左边框 */
.cbt-faq-item {
    border-left: 4px solid #d4af37;
    position: relative;
}

.cbt-faq-item::before {
    content: '◆';
    position: absolute;
    left: -12px;
    top: 32px;
    color: #d4af37;
    font-size: 16px;
}

/* 移动端菜单优化 */
.cbt-mobile-menu {
    background: linear-gradient(180deg, #1f1810 0%, #3d2b1a 100%);
}

/* ===================================
   Hero v2 - 泰式非对称黄金版面
   =================================== */
.cbt-hero {
    position: relative;
    padding: 100px 0 0;
    overflow: hidden;
    background: linear-gradient(160deg, #1a120b 0%, #2d1f14 40%, #1f1810 100%);
    min-height: 600px;
}

/* 背景装饰纹理 */
.cbt-hero-bg-ornament {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.cbt-hero-bg-ornament::before {
    content: '';
    position: absolute;
    top: 30px; left: 30px; right: 30px; bottom: 30px;
    border: 1px solid rgba(212, 175, 55, 0.06);
    border-radius: 50%;
}

.cbt-hero-bg-ornament::after {
    content: '';
    position: absolute;
    top: 60px; left: 60px; right: 60px; bottom: 60px;
    border: 1px solid rgba(212, 175, 55, 0.04);
    border-radius: 50%;
}

/* 非对称网格布局 */
.cbt-hero-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* 左侧装饰区 */
.cbt-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
}

.cbt-hero-pattern {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cbt-hero-diamond {
    color: rgba(212, 175, 55, 0.3);
    font-size: 28px;
    animation: cbt-diamond-float 3s ease-in-out infinite;
}

.cbt-hero-diamond:nth-child(1) { animation-delay: 0s; font-size: 40px; }
.cbt-hero-diamond:nth-child(2) { animation-delay: 0.5s; font-size: 32px; }
.cbt-hero-diamond:nth-child(3) { animation-delay: 1s; font-size: 40px; }

@keyframes cbt-diamond-float {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 0.7; transform: translateY(-8px); }
}

.cbt-hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* 右侧内容区 */
.cbt-hero-body {
    padding: 40px 20px 40px 30px;
}

.cbt-hero-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cbt-hero-label-line {
    display: inline-block;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37);
}

.cbt-hero-label-line:last-child {
    background: linear-gradient(90deg, #d4af37, transparent);
}

.cbt-hero-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(180deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cbt-hero-subtitle {
    font-size: 17px;
    color: #c0a86a;
    margin-bottom: 35px;
    line-height: 1.9;
    max-width: 600px;
}

.cbt-hero-actions {
    display: flex;
    gap: 18px;
    align-items: center;
}

.cbt-hero-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 17px;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37, #c02942);
    border-radius: 6px;
}

.cbt-btn-arrow {
    transition: transform 0.3s;
}

.cbt-hero-btn-main:hover .cbt-btn-arrow {
    transform: translateX(5px);
}

.cbt-hero-btn-sub {
    padding: 16px 30px;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    color: #d4af37;
    border-radius: 6px;
}

/* 底部金色数据带 */
.cbt-hero-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 60px;
    padding: 30px 40px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 1;
}

.cbt-ribbon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 35px;
}

.cbt-ribbon-icon {
    font-size: 22px;
}

.cbt-ribbon-num {
    font-size: 26px;
    font-weight: 900;
    color: #d4af37;
}

.cbt-ribbon-text {
    font-size: 13px;
    color: #c0a86a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cbt-ribbon-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

/* Hero 响应式 */
@media (max-width: 1024px) {
    .cbt-hero-grid {
        grid-template-columns: 1fr;
    }
    .cbt-hero-visual {
        display: none;
    }
    .cbt-hero-body {
        padding: 20px;
        text-align: center;
    }
    .cbt-hero-label {
        justify-content: center;
    }
    .cbt-hero-subtitle {
        max-width: 100%;
    }
    .cbt-hero-actions {
        justify-content: center;
    }
    .cbt-hero-title {
        font-size: 40px;
    }
    .cbt-hero-ribbon {
        flex-wrap: wrap;
        gap: 20px;
    }
    .cbt-ribbon-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .cbt-hero {
        padding: 60px 0 0;
        min-height: auto;
    }
    .cbt-hero-title {
        font-size: 32px;
    }
    .cbt-hero-subtitle {
        font-size: 15px;
    }
    .cbt-hero-actions {
        flex-direction: column;
    }
    .cbt-ribbon-item {
        padding: 0 20px;
    }
}
