/* ============================================================
   TK88 WordPress Theme - Main Stylesheet (main.css)
   Modern Tech-style Gaming - Blue and Gold Accents
   ============================================================ */

/* ============================================================
   Section 1: Reset & Base Styles
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: #0a0f1e;
    color: #ffffff;
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #60A5FA;
    text-decoration: none;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

a:hover {
    color: #3B82F6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
}

p { margin-bottom: 10px; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


::selection {
    background: #3B82F6;
    color: #000;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0f1e; }
::-webkit-scrollbar-thumb { background: #1e3a5f; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #3B82F6; }

/* ============================================================
   Section 2: Header
   ============================================================ */
.site-header {
    width: 100%;
    background: #060a15;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: inline-flex;
    align-items: center;
}

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

.header-time {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    background: rgba(59, 130, 246, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    letter-spacing: 1px;
    font-variant-numeric: tabular-nums;
}

.header-btn-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-login,
.btn-register,
.btn-demo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    letter-spacing: 0.3px;
}

.btn-login {
    background: transparent;
    color: #3B82F6;
    border: 1.5px solid #3B82F6;
}

.btn-login:hover {
    background: #3B82F6;
    color: #000000;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.btn-register {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: #000000;
    font-weight: 700;
    border: none;
}

.btn-register:hover {
    background: linear-gradient(135deg, #2563EB, #60A5FA);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    transform: translateY(-1px);
    color: #000;
}

.btn-demo {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff;
}

.btn-demo:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}


/* ============================================================
   Section 3: Navigation
   ============================================================ */
.main-navigation {
    background: #0a1020;
    border-top: 1px solid #152d4a;
    border-bottom: 1px solid #1e3a5f;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.nav-link:hover {
    color: #3B82F6;
    background: rgba(59, 130, 246, 0.08);
}

.nav-icon {
    margin-right: 6px;
    font-size: 14px;
    color: #3B82F6;
}

.nav-item.has-dropdown .nav-link::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 6px;
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-dropdown,
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111827;
    min-width: 200px;
    border: 1px solid #1e3a5f;
    border-top: 2px solid #3B82F6;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
    padding: 0;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:hover .sub-menu,
.nav-item:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li a,
.sub-menu li a {
    display: block;
    padding: 10px 18px;
    color: #ccc;
    font-size: 13px;
    border-bottom: 1px solid #152d4a;
    transition: all 0.3s;
}

.nav-dropdown li a:hover,
.sub-menu li a:hover {
    color: #3B82F6;
    background: rgba(59, 130, 246, 0.05);
    padding-left: 22px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid #1e3a5f;
    color: #3B82F6;
    font-size: 20px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    background: rgba(59, 130, 246, 0.1);
}


/* Notification Bar */
.notification-bar {
    background: linear-gradient(90deg, #111827, #0a1020);
    border-top: 1px solid #152d4a;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
}

.notification-content {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: scroll-notification 30s linear infinite;
    color: #ccc;
    font-size: 13px;
}

.notification-content span {
    flex-shrink: 0;
    color: #ddd;
}

@keyframes scroll-notification {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================================
   Section 4: Hero / Banner Slider
   ============================================================ */
.hero-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    margin-bottom: 30px;
}

.hero-slider .swiper-wrapper {
    width: 100%;
}

.hero-slider .swiper-slide {
    width: 100%;
}

.hero-slider .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-slider .swiper-pagination-bullet {
    background: rgba(59, 130, 246, 0.5);
    opacity: 1;
    width: 10px;
    height: 10px;
}

.hero-slider .swiper-pagination-bullet-active {
    background: #3B82F6;
    width: 28px;
    border-radius: 5px;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: #3B82F6;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s;
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: rgba(59, 130, 246, 0.3);
}

/* ============================================================
   Section 5: Section Header (Shared)
   ============================================================ */
.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(59, 130, 246, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 10px;
    font-size: 20px;
}

/* ============================================================
   Section 6: Hot Games Showcase
   ============================================================ */
.hot-games-section {
    padding: 30px 0;
}

.hot-games-swiper {
    padding-bottom: 40px;
}

.hot-games-swiper .swiper-slide {
    height: auto;
}

.game-item {
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #111827;
}

.game-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.game-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 30px 8px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-item:hover .game-overlay {
    opacity: 1;
}

.hot-games-swiper .swiper-pagination-bullet {
    background: rgba(59, 130, 246, 0.4);
    opacity: 1;
}

.hot-games-swiper .swiper-pagination-bullet-active {
    background: #3B82F6;
}

/* ============================================================
   Section 7: Home Nav / Product Grid
   ============================================================ */
.home-nav-section {
    padding: 30px 0;
}

.home-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.home-nav-item-large,
.home-nav-item-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #111827;
    border: 1px solid #1e3a5f;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
}

.home-nav-item-large {
    grid-column: span 2;
    padding: 35px 20px;
    background: linear-gradient(135deg, #111827 0%, #152d4a 100%);
}

.home-nav-item-large h3 {
    font-size: 18px;
}

.home-nav-item-small h3 {
    font-size: 14px;
}

.home-nav-item-large p,
.home-nav-item-small p {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    margin-bottom: 0;
}

.home-nav-icon {
    font-size: 36px;
    color: #3B82F6;
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.home-nav-item-large .home-nav-icon {
    font-size: 44px;
}

.home-nav-item-large:hover,
.home-nav-item-small:hover {
    border-color: #3B82F6;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.12);
    color: #ffffff;
}

.home-nav-item-large:hover .home-nav-icon,
.home-nav-item-small:hover .home-nav-icon {
    transform: scale(1.15);
}

/* ============================================================
   Section 8: Download Section
   ============================================================ */
.download-section {
    background: linear-gradient(135deg, #111827 0%, #0a1020 100%);
    border: 1px solid #1e3a5f;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 30px 0;
}

.download-section h2 {
    font-size: 26px;
    color: #3B82F6;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.download-section p {
    color: #aaa;
    font-size: 15px;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: #ffffff;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: #ffffff;
}

.download-btn i {
    font-size: 20px;
}

/* ============================================================
   Section 9: Features Section
   ============================================================ */
.features-section {
    padding: 30px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: #111827;
    border: 1px solid #1e3a5f;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: #3B82F6;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.feature-step {
    display: inline-block;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-icon {
    font-size: 40px;
    color: #3B82F6;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #ffffff;
    line-height: 1.4;
}

.feature-card p {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
    margin-bottom: 0;
}

.feature-card .feature-step {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #60a5fa;
    background: rgba(255, 182, 57, 0.15);
    padding: 3px 12px;
    border-radius: 12px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* ============================================================
   Section 10: Poster Section
   ============================================================ */
.poster-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 30px 0;
}

.poster-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #152d4a;
}

.poster-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: #3B82F6;
}

.poster-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ============================================================
   Section 11: Hot Match Section
   ============================================================ */
.hot-match-section {
    padding: 30px 0;
}

.hot-match-swiper {
    padding-bottom: 40px;
}

.hot-match-swiper .swiper-pagination-bullet {
    background: rgba(59, 130, 246, 0.4);
    opacity: 1;
}

.hot-match-swiper .swiper-pagination-bullet-active {
    background: #3B82F6;
}

/* ============================================================
   Section 12: Jackpot Section
   ============================================================ */
.jackpot-section {
    padding: 30px 0;
}

.jackpot-swiper {
    padding-bottom: 20px;
}

.jackpot-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #111827;
    border: 1px solid #1e3a5f;
    transition: all 0.3s;
}

.jackpot-card:hover {
    border-color: #3B82F6;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.12);
}

.jackpot-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.jackpot-info {
    padding: 12px;
    text-align: center;
}

.jackpot-amount {
    font-size: 16px;
    font-weight: 700;
    color: #3B82F6;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.jackpot-name {
    font-size: 12px;
    color: #aaa;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ============================================================
   Section 13: Bets Table Section
   ============================================================ */
.bets-section {
    padding: 30px 0;
}

.bets-table-wrapper {
    background: #111827;
    border: 1px solid #1e3a5f;
    border-radius: 10px;
    overflow: hidden;
    overflow-x: auto;
}

.bets-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.bets-table thead {
    background: linear-gradient(135deg, #152035, #1a2744);
}

.bets-table thead th {
    padding: 14px 16px;
    text-align: left;
    color: #3B82F6;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #1e3a5f;
    white-space: nowrap;
}

.bets-table tbody tr {
    border-bottom: 1px solid #152d4a;
    transition: background 0.2s;
}

.bets-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.03);
}

.bets-table tbody td {
    padding: 12px 16px;
    color: #ccc;
    font-size: 13px;
    white-space: nowrap;
}

.bets-table tbody tr:last-child {
    border-bottom: none;
}

/* ============================================================
   Section 14: Guide Section
   ============================================================ */
.guide-section {
    padding: 30px 0;
}

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

.guide-card {
    background: #111827;
    border: 1px solid #1e3a5f;
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.guide-card:hover {
    border-color: #3B82F6;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
}

.guide-card i {
    font-size: 32px;
    color: #3B82F6;
    margin-bottom: 12px;
    display: block;
}

.guide-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: #ffffff;
}

.guide-card p {
    font-size: 12px;
    color: #999;
    line-height: 1.5;
    margin-bottom: 15px;
}

.btn-primary {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: #ffffff;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    color: #ffffff;
}

/* ============================================================
   Section 15: Breadcrumb
   ============================================================ */
.breadcrumb {
    padding: 15px 0;
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.breadcrumb a {
    color: #60A5FA;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #3B82F6;
}

.breadcrumb span {
    margin: 0 4px;
    color: #555;
}

.breadcrumb .separator {
    color: #555;
    margin: 0 6px;
}

/* ============================================================
   Section 16: Category Page
   ============================================================ */
.category-header {
    padding: 20px 0;
    border-bottom: 1px solid #1e3a5f;
    margin-bottom: 10px;
}

.category-title {
    font-size: 28px;
    color: #3B82F6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-title i {
    font-size: 26px;
}

.category-desc {
    color: #aaa;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.6;
}

.provider-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 0;
    border-bottom: 1px solid #1e3a5f;
    margin-bottom: 10px;
}

.provider-tab {
    padding: 8px 16px;
    background: #111827;
    border: 1px solid #1e3a5f;
    border-radius: 20px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-family: inherit;
}

.provider-tab:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3B82F6;
    color: #3B82F6;
}

.provider-tab.active {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: #000;
    border-color: #3B82F6;
    font-weight: 600;
}

.content-area {
    display: flex;
    gap: 30px;
    padding: 30px 0;
}

.content-area .main-content {
    flex: 1;
    min-width: 0;
}

.sidebar-area {
    width: 300px;
    flex-shrink: 0;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.article-card {
    background: #111827;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #1e3a5f;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-color: #3B82F6;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.article-card-thumb {
    overflow: hidden;
}

.article-card-thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.4s;
}

.article-card:hover .article-card-thumb img {
    transform: scale(1.05);
}

.article-card-thumb a {
    display: block;
}

.article-card-title {
    padding: 12px 15px 5px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.article-card-title a {
    color: #ffffff;
    transition: color 0.3s;
}

.article-card-title a:hover {
    color: #3B82F6;
}

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: #888;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.article-card-meta i {
    margin-right: 4px;
    color: #666;
}

.article-card-meta a {
    color: #60A5FA;
}

.article-card-excerpt {
    padding: 8px 15px 15px;
    font-size: 13px;
    color: #aaa;
    line-height: 1.5;
}

.article-card-more {
    display: inline-block;
    padding: 0 15px 15px;
    color: #60A5FA;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s;
}

.article-card-more:hover {
    color: #3B82F6;
}

.article-card-more i {
    margin-left: 4px;
    font-size: 11px;
    transition: transform 0.3s;
}

.article-card-more:hover i {
    transform: translateX(3px);
}

/* Pagination */
.pagination {
    padding: 30px 0;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.nav-links a,
.nav-links .current,
.nav-links span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
}

.nav-links a {
    background: #111827;
    color: #ffffff;
    border: 1px solid #1e3a5f;
}

.nav-links a:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3B82F6;
    color: #3B82F6;
}

.nav-links .current {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: #000;
    font-weight: 700;
    border: none;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 16px;
    grid-column: 1 / -1;
}

/* ============================================================
   Section 17: Single Article Page
   ============================================================ */
.single-article {
    background: #111827;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid #1e3a5f;
    margin-bottom: 30px;
}

.article-header {
    margin-bottom: 20px;
}

.article-header h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 0;
    font-size: 13px;
    color: #888;
    border-bottom: 1px solid #1e3a5f;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.article-meta i {
    color: #666;
    font-size: 13px;
}

.article-meta a {
    color: #60A5FA;
}

.article-meta a:hover {
    color: #3B82F6;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #ddd;
    padding: 20px 0;
}

.article-content p {
    margin-bottom: 15px;
}

.article-content h2 {
    color: #3B82F6;
    font-size: 22px;
    margin: 25px 0 15px;
}

.article-content h3 {
    color: #ffffff;
    font-size: 18px;
    margin: 20px 0 12px;
}

.article-content h4 {
    color: #60A5FA;
    font-size: 16px;
    margin: 18px 0 10px;
}

.article-content img {
    border-radius: 8px;
    margin: 15px 0;
    max-width: 100%;
    height: auto;
}

.article-content a {
    color: #60A5FA;
    text-decoration: underline;
}

.article-content a:hover {
    color: #3B82F6;
}

.article-content blockquote {
    border-left: 3px solid #3B82F6;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 0 6px 6px 0;
    color: #ccc;
    font-style: italic;
}

.article-content ul,
.article-content ol {
    padding-left: 25px;
    margin-bottom: 15px;
    list-style: disc;
}

.article-content ol { list-style: decimal; }

.article-content li {
    margin-bottom: 6px;
    color: #ccc;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.article-content table th,
.article-content table td {
    padding: 10px;
    border: 1px solid #1e3a5f;
    color: #ccc;
}

.article-content table th {
    background: #1a2744;
    color: #3B82F6;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    border-top: 1px solid #1e3a5f;
    margin-top: 10px;
}

.share-buttons span {
    color: #888;
    font-size: 14px;
    margin-right: 5px;
}

.share-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1a2744;
    color: #ccc;
    font-size: 16px;
    transition: all 0.3s;
}

.share-facebook:hover {
    background: #1877F2;
    color: #fff;
}

.share-twitter:hover {
    background: #1DA1F2;
    color: #fff;
}

.share-telegram:hover {
    background: #0088cc;
    color: #fff;
}

.share-whatsapp:hover {
    background: #25D366;
    color: #fff;
}

/* Related Posts */
.related-posts {
    margin-top: 40px;
    margin-bottom: 30px;
}

.related-posts h3 {
    font-size: 20px;
    color: #3B82F6;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #1e3a5f;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.related-post-item {
    background: #111827;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #1e3a5f;
    transition: all 0.3s;
}

.related-post-item:hover {
    border-color: #3B82F6;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.related-post-item a {
    display: block;
}

.related-post-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.related-post-item h4 {
    padding: 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.related-post-item h4 a {
    color: #ffffff;
    transition: color 0.3s;
}

.related-post-item h4 a:hover {
    color: #3B82F6;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #1e3a5f;
    gap: 20px;
}

.post-nav-prev,
.post-nav-next {
    max-width: 48%;
}

.post-nav-prev a,
.post-nav-next a {
    color: #60A5FA;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.post-nav-prev a:hover,
.post-nav-next a:hover {
    color: #3B82F6;
}

.post-nav-next {
    text-align: right;
    margin-left: auto;
}

/* ============================================================
   Section 18: Floating Sidebar
   ============================================================ */
.floating-sidebar {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #111827, #1a2744);
    border: 1px solid #1e3a5f;
    border-radius: 10px;
    color: #3B82F6;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.sidebar-btn:hover {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: #000;
    border-color: #3B82F6;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.sidebar-label {
    font-size: 8px;
    margin-top: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    color: inherit;
    line-height: 1;
}

/* ============================================================
   Section 19: Footer
   ============================================================ */
.site-footer {
    background: #050810;
    border-top: 1px solid #1e3a5f;
    margin-top: 30px;
}

/* Partners Scroll */
.footer-partners {
    padding: 20px 0;
    border-bottom: 1px solid #152d4a;
    overflow: hidden;
}

.partners-scroll {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: scroll-partners 25s linear infinite;
}

.partner-item {
    opacity: 0.5;
    transition: opacity 0.3s;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-shrink: 0;
    cursor: default;
}

.partner-item:hover {
    opacity: 1;
    color: #3B82F6;
}

@keyframes scroll-partners {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Footer Top Columns */
.footer-top {
    padding: 40px 0;
}

.footer-top .container {
    max-width: 1200px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 15px;
}

.footer-col-title {
    font-size: 15px;
    font-weight: 700;
    color: #3B82F6;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3B82F6;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    padding: 20px 0;
    border-top: 1px solid #152d4a;
}

.footer-links a {
    color: #aaa;
    font-size: 13px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-links a:hover {
    color: #3B82F6;
}

.footer-brand-desc {
    color: #888;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #ff4444;
    color: #ff4444;
    font-weight: 700;
    font-size: 14px;
    margin-top: 10px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #152d4a;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    color: #666;
    font-size: 13px;
    margin-bottom: 0;
}


/* Footer Sections */
.footer-section {
    padding: 25px 0;
    border-bottom: 1px solid #152d4a;
}

.footer-section h4 {
    font-size: 15px;
    font-weight: 700;
    color: #3B82F6;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Footer License */
.footer-license .license-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: #111827;
    border: 1px solid #1e3a5f;
    border-radius: 8px;
    transition: all 0.3s;
    min-width: 100px;
}

.license-item:hover {
    border-color: #3B82F6;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.license-item i {
    font-size: 28px;
    color: #3B82F6;
}

.license-item span {
    font-size: 12px;
    color: #ccc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Protection */
.footer-protection .protection-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.protection-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: #111827;
    border: 1px solid #1e3a5f;
    border-radius: 8px;
    transition: all 0.3s;
    min-width: 120px;
}

.protection-item:hover {
    border-color: #3B82F6;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.protection-item i {
    font-size: 28px;
    color: #3B82F6;
}

.protection-item span {
    font-size: 12px;
    color: #ccc;
    text-align: center;
}

/* Footer Social */
.footer-social-section h4 {
    margin-bottom: 15px;
}

.footer-social-section .footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #111827;
    border: 1px solid #1e3a5f;
    color: #ccc;
    font-size: 18px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #3B82F6;
    color: #000;
    border-color: #3B82F6;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Footer Logo */
.footer-logo {
    max-width: 120px;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
}

/* ============================================================
   Section 20: WordPress Widget Styles
   ============================================================ */
.sidebar-area .widget,
.widget {
    background: #111827;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #1e3a5f;
}

.widget .widget-title,
.widget-title {
    font-size: 16px;
    font-weight: 700;
    color: #3B82F6;
    padding-bottom: 12px;
    border-bottom: 1px solid #1e3a5f;
    margin-bottom: 15px;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #152d4a;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: #ccc;
    font-size: 14px;
    transition: all 0.3s;
}

.widget ul li a:hover {
    color: #3B82F6;
    padding-left: 4px;
}

/* Recent Posts / Popular Widget */
.popular-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #152d4a;
}

.popular-item:last-child {
    border-bottom: none;
}

.popular-item-thumb {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.popular-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-item-title {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.4;
    transition: color 0.3s;
}

.popular-item-title:hover {
    color: #3B82F6;
}

.popular-item-date {
    font-size: 11px;
    color: #888;
    margin-top: 4px;
    display: block;
}

/* Categories Widget */
.widget-categories li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-categories .count {
    color: #888;
    font-size: 12px;
    background: #1a2744;
    padding: 2px 8px;
    border-radius: 10px;
}

/* Game Icons Grid Widget */
.game-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.game-icon-item {
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s;
}

.game-icon-item:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.game-icon-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* ============================================================
   Section 20b: Search Form
   ============================================================ */
.widget_search .search-form {
    display: flex;
    gap: 0;
}

.widget_search .search-field {
    flex: 1;
    padding: 10px 14px;
    background: #1a2744;
    border: 1px solid #1e3a5f;
    border-right: none;
    border-radius: 4px 0 0 4px;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    height: 40px;
    box-sizing: border-box;
    outline: none;
}

.widget_search .search-field::placeholder {
    color: #888;
}

.widget_search .screen-reader-text {
    display: none;
}

.widget_search .search-submit {
    padding: 10px 16px;
    background: #3B82F6;
    color: #000;
    border: 1px solid #3B82F6;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    height: 40px;
    line-height: 1;
    transition: all 0.3s;
}

.widget_search .search-submit:hover {
    background: #2563EB;
    border-color: #2563EB;
}

/* ============================================================
   Section 21: Utilities & Effects
   ============================================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: none;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s;
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

.text-gold { color: #3B82F6; }
.text-center { text-align: center; }
.text-muted { color: #888; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================================
   TK88 Tech Effects
   ============================================================ */
.hero-slider::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(10,15,30,0) 60%, rgba(10,15,30,0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 22px;
    background: linear-gradient(180deg, #3B82F6, #1D4ED8);
    margin-right: 12px;
    border-radius: 2px;
}

.game-item {
    position: relative;
}

.game-item::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: 11px;
    background: linear-gradient(135deg, #3B82F6, #1D4ED8, #3B82F6);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-item:hover::before {
    opacity: 1;
}

.game-item:hover {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.feature-card {
    background: linear-gradient(135deg, #111827 0%, #0a0f1e 100%);
}

.feature-card:hover {
    border-color: #3B82F6;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.15);
}

.download-section {
    background: linear-gradient(135deg, #111827 0%, #0a0f1e 50%, #060a15 100%);
    border: 1px solid #1e3a5f;
}

.download-btn {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
}

.download-btn:hover {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.notification-bar {
    background: linear-gradient(90deg, #0a0f1e, #111827);
}

.jackpot-amount {
    color: #3B82F6;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.site-footer {
    background: #050810;
}

@keyframes tech-pulse {
    0%, 100% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.2); }
    50% { box-shadow: 0 0 15px rgba(59, 130, 246, 0.4), 0 0 30px rgba(59, 130, 246, 0.1); }
}

.btn-register {
    animation: tech-pulse 2s ease-in-out infinite;
}

.home-nav-icon {
    color: #3B82F6;
}

/* ============================================================
   TK88 独有组件样式 - 科技感风格
   ============================================================ */

/* TK88 Header - Logo居中 */
.header-logo-center {
    padding: 15px 0;
    border-bottom: 1px solid #1e3a5f;
}

.header-logo-center .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-centered {
    flex: 1;
    text-align: center;
}

.logo-centered a {
    display: inline-flex;
    align-items: center;
}

.logo-centered img {
    max-height: 55px;
    width: auto;
}

.header-auth-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 促销弹窗 */
.promo-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.promo-modal.hidden { display: none; }
.promo-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
}
.promo-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
    width: 90%;
    animation: promo-pop 0.4s ease;
}
@keyframes promo-pop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.promo-image {
    background: linear-gradient(135deg, #111827, #1e3a5f);
    border: 2px solid #3B82F6;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
}
.promo-image h2 {
    color: #3B82F6;
    font-size: 18px;
    margin-bottom: 10px;
}
.promo-amount {
    font-size: 42px;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin: 15px 0;
}
.promo-image p { color: #aaa; font-size: 14px; margin-bottom: 20px; }
.promo-close {
    position: absolute;
    top: -15px; right: -15px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #ff4444;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    z-index: 2;
}
.promo-close:hover { transform: rotate(90deg); }

/* 游戏分类标签页（TK88独有） */
.game-tabs-section { padding: 30px 0; }
.game-tabs-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.game-tab-btn {
    padding: 10px 20px;
    background: #111827;
    border: 1px solid #1e3a5f;
    border-radius: 8px;
    color: #aaa;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}
.game-tab-btn:hover {
    border-color: #3B82F6;
    color: #3B82F6;
}
.game-tab-btn.active {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: #fff;
    border-color: #3B82F6;
}
.game-tab-content { display: none; }
.game-tab-content.active { display: block; }
.game-tab-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.game-tab-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #1e3a5f;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}
.game-tab-item:hover {
    border-color: #3B82F6;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}
.game-tab-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* 平台特色区（六边形图标） */
.platform-features-section { padding: 40px 0; }
.platform-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.platform-feature-card {
    text-align: center;
    padding: 30px 20px;
    background: #111827;
    border: 1px solid #1e3a5f;
    border-radius: 12px;
    transition: all 0.3s;
}
.platform-feature-card:hover {
    border-color: #3B82F6;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}
.hex-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(59,130,246,0.05));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: #3B82F6;
}
.platform-feature-card h3 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
}
.platform-feature-card p {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 0;
}

/* 优惠卡片（大型） */
.promo-cards-section { padding: 30px 0; }
.promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.promo-card-large {
    background: linear-gradient(135deg, #111827, #0a0f1e);
    border: 1px solid #1e3a5f;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}
.promo-card-large:hover {
    border-color: #3B82F6;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}
.promo-card-image {
    height: 160px;
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(59,130,246,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
}
.promo-card-image i {
    font-size: 50px;
    color: rgba(59,130,246,0.4);
}
.promo-card-body {
    padding: 25px;
}
.promo-card-body h3 {
    color: #3B82F6;
    font-size: 18px;
    margin-bottom: 10px;
}
.promo-card-body p {
    color: #aaa;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.promo-card-cta {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.promo-card-cta:hover {
    box-shadow: 0 4px 15px rgba(59,130,246,0.4);
    color: #fff;
}

/* FAQ折叠面板 */
.tk88-faq-section { padding: 40px 0; }
.tk88-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tk88-faq-item {
    background: #111827;
    border: 1px solid #1e3a5f;
    border-radius: 10px;
    overflow: hidden;
}
.tk88-faq-item.active { border-color: #3B82F6; }
.tk88-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    transition: color 0.3s;
}
.tk88-faq-q:hover { color: #3B82F6; }
.tk88-faq-q i {
    color: #3B82F6;
    transition: transform 0.3s;
}
.tk88-faq-item.active .tk88-faq-q i { transform: rotate(45deg); }
.tk88-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    padding: 0 20px;
    color: #bbb;
    font-size: 13px;
    line-height: 1.7;
}
.tk88-faq-item.active .tk88-faq-a {
    max-height: 300px;
    padding: 0 20px 16px;
}

/* Footer - 供应商网格 */
.footer-providers .providers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.provider-logo-item {
    background: #111827;
    border: 1px solid #1e3a5f;
    border-radius: 8px;
    padding: 12px 8px;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-logo-item:hover {
    border-color: #3B82F6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.provider-logo-item span {
    font-size: 11px;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.provider-logo-item:hover span {
    color: #3B82F6;
}

/* Footer - 支付方式 */
.footer-payments .payments-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.payment-item {
    background: #111827;
    border: 1px solid #1e3a5f;
    border-radius: 8px;
    padding: 14px 10px;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.payment-item:hover {
    border-color: #3B82F6;
    transform: translateY(-2px);
}

.payment-item i {
    font-size: 20px;
    color: #3B82F6;
}

.payment-item span {
    font-size: 11px;
    color: #aaa;
    font-weight: 500;
}

/* 响应式 */
@media (max-width: 768px) {
    .game-tab-grid { grid-template-columns: repeat(3, 1fr); }
    .platform-features-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-cards-grid { grid-template-columns: 1fr; }
    .providers-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .payments-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .header-logo-center .container { flex-direction: column; gap: 10px; }
    .header-auth-btns { justify-content: center; }
}
