/* ===================================
   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, #1a0a2e 0%, #2d1b4e 100%);
    color: #e0e0e0;
    line-height: 1.6;
}

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

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

/* ===== Header ===== */
.cbv-header {
    background: linear-gradient(180deg, #2d1b4e 0%, #1f1535 100%);
    border-bottom: 2px solid #f97316;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.2);
}

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

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

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

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

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

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

.cbv-nav-link:hover,
.cbv-nav-link.active {
    color: #f97316;
}

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

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

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

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

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

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

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

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

.cbv-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;
}

.cbv-dropdown-item:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    border-left-color: #f97316;
    padding-left: 25px;
}

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

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

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

/* ===== Buttons ===== */
.cbv-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;
}

.cbv-btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: #1a0a2e;
}

.cbv-btn-primary:hover {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.cbv-btn-gold {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: #1a0a2e;
    padding: 15px 40px;
    font-size: 18px;
}

.cbv-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.5);
}

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

.cbv-btn-outline:hover {
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-3px);
}

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

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

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

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

.cbv-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.1), transparent);
    pointer-events: none;
}

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

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

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

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

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

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

.cbv-stat {
    background: rgba(249, 115, 22, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

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

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

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

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

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

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

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

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

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

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

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

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

.cbv-game-card:hover {
    transform: translateY(-10px);
    border-color: #f97316;
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.3);
}

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

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

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

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

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

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

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

.cbv-grid-item:hover {
    border-color: #f97316;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

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

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

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

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

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

.cbv-promo-card:hover {
    border-color: #f97316;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.cbv-featured-item {
    background: linear-gradient(180deg, #2d1b4e 0%, #1f1535 100%);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #4a2d6e;
    transition: all 0.3s;
}

.cbv-featured-item:hover {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

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

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

.cbv-featured-item-date {
    color: #f97316;
    font-weight: 600;
}

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

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

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

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

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

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

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

.cbv-featured-item-content a {
    color: #f97316;
    text-decoration: none;
}

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

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

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

.cbv-article-preview:hover {
    border-color: #f97316;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
}

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

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

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

.cbv-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;
}

.cbv-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;
}

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

.cbv-article-preview-date {
    color: #f97316;
    font-weight: 600;
}

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

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

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

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

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

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

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

.cbv-cta-buttons .cbv-btn-gold {
    background: #1a0a2e;
    color: #f97316;
}

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

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

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

.cbv-breadcrumb a {
    color: #f97316;
    text-decoration: none;
}

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

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

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

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

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

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

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

.cbv-article-card {
    background: #2d1b4e;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #4a2d6e;
    transition: all 0.3s;
}

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

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

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

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

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

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

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

.cbv-article-date {
    color: #f97316;
}

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

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

.cbv-pagination a:hover,
.cbv-pagination .active {
    background: #f97316;
    color: #1a0a2e;
}

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

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

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

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

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

.cbv-popular-link:hover,
.cbv-category-link:hover,
.cbv-related-link:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

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

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

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

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

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

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

.cbv-detail-date {
    color: #f97316;
}

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

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

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

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

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

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

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

.cbv-nav-prev:hover,
.cbv-nav-next:hover {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid #f97316;
}

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

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

/* ===== Footer ===== */
.cbv-footer {
    background: #1a0a2e;
    padding: 60px 0 30px;
    border-top: 2px solid #f97316;
}

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

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

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

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

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

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

.cbv-footer-links a:hover {
    color: #f97316;
}

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

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

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

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

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

.cbv-footer-partners a:hover {
    color: #f97316;
}

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

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

.cbv-404-title {
    font-size: 150px;
    font-weight: 900;
    color: #f97316;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(249, 115, 22, 0.5);
}

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

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

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

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

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

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

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

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

.cbv-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;
}

.cbv-mobile-nav-item:hover,
.cbv-mobile-nav-item.active {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.cbv-mobile-cta {
    background: linear-gradient(135deg, #f97316, #fb923c) !important;
    color: #1a0a2e !important;
    text-align: center;
    margin-top: 20px;
}

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

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

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

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

/* ===================================
   Vibrant Street - Unique Styles
   活力霓虹手绘风格
   =================================== */

/* 多彩渐变 Header */
.cbv-header {
    background: linear-gradient(135deg, #f97316, #ec4899, #0ea5e9, #8b5cf6);
    background-size: 300% 300%;
    animation: cbv-header-shift 8s ease infinite;
    border-bottom: 3px solid #f97316;
    box-shadow: 0 4px 30px rgba(249, 115, 22, 0.3);
}

@keyframes cbv-header-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 霓虹发光标题 */
.cbv-hero-title {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.5), 0 0 40px rgba(236, 72, 153, 0.3);
    font-weight: 900;
}

.cbv-hero-badge {
    background: linear-gradient(135deg, #f97316, #ec4899);
    border: none;
    animation: cbv-pulse 2s ease-in-out infinite;
}

@keyframes cbv-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.4); }
    50% { box-shadow: 0 0 40px rgba(249, 115, 22, 0.6); }
}

/* 手绘风格卡片 - 虚线边框 */
.cbv-game-card {
    border: 2px dashed #f97316;
    border-radius: 12px;
    background: rgba(30, 27, 75, 0.6);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cbv-game-card::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border: 2px dashed #0ea5e9;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.cbv-game-card:hover {
    transform: scale(1.03) rotate(0.5deg);
    border-style: solid;
    border-color: #ec4899;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.3), 0 0 60px rgba(236, 72, 153, 0.15);
}

.cbv-game-card:hover::before {
    opacity: 1;
}

/* 章节标题手绘下划线 */
.cbv-section-header::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #f97316, #ec4899, #0ea5e9);
    margin: 12px auto 0;
    border-radius: 2px;
    position: relative;
}

.cbv-section-header::after::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    bottom: -2px;
    border: 2px dashed rgba(249, 115, 22, 0.3);
    border-radius: 2px;
}

/* 按钮霓虹效果 */
.cbv-btn-gold {
    background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

.cbv-btn-gold:hover {
    box-shadow: 0 8px 40px rgba(249, 115, 22, 0.6), 0 0 80px rgba(236, 72, 153, 0.2);
    transform: translateY(-3px);
}

.cbv-btn-outline {
    border: 2px dashed #f97316;
    color: #f97316;
}

.cbv-btn-outline:hover {
    background: rgba(249, 115, 22, 0.1);
    border-style: solid;
}

/* Footer 渐变 */
.cbv-footer {
    background: linear-gradient(180deg, #1a0a2e 0%, #2d1b4e 100%);
    border-top: 3px solid #ec4899;
}

.cbv-footer-title {
    color: #f97316;
    font-weight: 700;
}

/* 导航链接 */
.cbv-nav-link::after {
    background: linear-gradient(90deg, #f97316, #ec4899);
}

/* FAQ 卡片手绘感 */
.cbv-faq-item {
    border-left: 4px solid #f97316;
    border-right: 2px dashed rgba(249, 115, 22, 0.2);
    background: rgba(30, 27, 75, 0.4);
}

/* 统计卡片多彩 */
.cbv-stat:nth-child(1) { border-top: 3px solid #f97316; }
.cbv-stat:nth-child(2) { border-top: 3px solid #ec4899; }
.cbv-stat:nth-child(3) { border-top: 3px solid #0ea5e9; }
.cbv-stat:nth-child(4) { border-top: 3px solid #8b5cf6; }

.cbv-stat-number {
    color: #f97316;
}

/* Hero 多彩粒子 */
.cbv-hero::before {
    background: 
        radial-gradient(circle at 15% 30%, rgba(249, 115, 22, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 85% 40%, rgba(236, 72, 153, 0.12) 0%, transparent 25%),
        radial-gradient(circle at 50% 70%, rgba(14, 165, 233, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 30% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 25%);
}

/* 移动端菜单 */
.cbv-mobile-menu {
    background: linear-gradient(180deg, #2d1b4e 0%, #1a0a2e 100%);
}

/* ===================================
   Hero v2 - 霓虹海报拼贴风格
   =================================== */
.cbv-hero {
    position: relative;
    padding: 90px 0 50px;
    background: #1a0a2e;
    overflow: hidden;
    min-height: 550px;
}

/* 背景爆炸光效 */
.cbv-hero-burst {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, rgba(236, 72, 153, 0.05) 30%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* 斜向装饰色条 */
.cbv-hero-stripe {
    position: absolute;
    top: 30%;
    right: -80px;
    width: 300px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #f97316, #ec4899, #0ea5e9);
    transform: rotate(-15deg);
    pointer-events: none;
    opacity: 0.5;
}

.cbv-hero-stripe::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 60px;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, #ec4899, #0ea5e9, transparent);
    transform: rotate(-15deg);
}

/* 海报容器 */
.cbv-hero-poster {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* 旋转角标 */
.cbv-hero-corner {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #ec4899);
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    transform: rotate(-2deg);
    border-radius: 4px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

/* 导语 */
.cbv-hero-kicker {
    display: block;
    color: #f97316;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cbv-hero-title {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(249, 115, 22, 0.4), 0 0 60px rgba(236, 72, 153, 0.2);
}

.cbv-title-line {
    display: block;
}

/* 描述 */
.cbv-hero-desc {
    font-size: 17px;
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cbv-hero-highlight {
    color: #f97316;
    font-weight: 700;
    background: rgba(249, 115, 22, 0.1);
    padding: 2px 8px;
    border-radius: 3px;
}

/* 按钮 */
.cbv-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.cbv-hero-btn {
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 700;
    background: linear-gradient(135deg, #f97316, #ec4899);
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(249, 115, 22, 0.4);
    transition: all 0.3s;
}

.cbv-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(249, 115, 22, 0.6);
}

.cbv-hero-ghost-btn {
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    color: #f97316;
    text-decoration: none;
    border: 2px dashed rgba(249, 115, 22, 0.4);
    border-radius: 8px;
    transition: all 0.3s;
}

.cbv-hero-ghost-btn:hover {
    border-style: solid;
    border-color: #f97316;
    background: rgba(249, 115, 22, 0.08);
}

/* 跑马灯数据条 */
.cbv-hero-ticker {
    overflow: hidden;
    position: relative;
    padding: 16px 0;
    border-top: 1px solid rgba(249, 115, 22, 0.15);
    border-bottom: 1px solid rgba(249, 115, 22, 0.15);
}

.cbv-ticker-track {
    display: flex;
    gap: 0;
    animation: cbv-ticker-scroll 20s linear infinite;
    white-space: nowrap;
}

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

.cbv-ticker-item {
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
    padding: 0 20px;
}

.cbv-ticker-dot {
    color: #f97316;
    font-weight: bold;
}

/* 响应式 */
@media (max-width: 768px) {
    .cbv-hero {
        padding: 60px 0 40px;
        min-height: auto;
    }
    .cbv-hero-title {
        font-size: 34px;
    }
    .cbv-hero-desc {
        font-size: 15px;
    }
    .cbv-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cbv-hero-stripe {
        display: none;
    }
    .cbv-hero-burst {
        width: 300px; height: 300px;
    }
}
