/* ===================================
   Casino Gold - Premium Dark Theme
   =================================== */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Dropdown เมนู */
.cf-dropdown {
    position: relative;
}

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

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

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

.cf-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(180deg, #1c1c1c 0%, #141414 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;
}

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

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

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

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

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

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

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

.cf-btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #4a7c23 100%);
    color: #1a2f0a;
}

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

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

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

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

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

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

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

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

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

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

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

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

.cf-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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cf-grid-item {
    background: #141414;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #4a7c23;
    transition: all 0.3s;
    cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

/* ===== คำถามที่พบบ่อย Section ===== */
.cf-faq {
    padding: 100px 0;
    background: #0f0f0f;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cf-article-preview {
    background: linear-gradient(180deg, #2d3a1a 0%, #141414 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #4a7c23;
    transition: all 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cf-cta-buttons .cf-btn-gold {
    background: #1a2f0a;
    color: #d4af37;
}

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

/* ===== Article List ===== */
.cf-article-list {
    padding: 60px 0;
    background: #0f0f0f;
}

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

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

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

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

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

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

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

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

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

.cf-article-card {
    background: #2d3a1a;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #4a7c23;
    transition: all 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== Article Detail ===== */
.cf-article-detail {
    padding: 60px 0;
    background: #0f0f0f;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== Mobile เมนู ===== */
.cf-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #141414;
    z-index: 2000;
    transition: right 0.3s;
    overflow-y: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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