/* ============================================================
   WIN777 WordPress Theme - Main Stylesheet (main.css)
   Dark Casino Aesthetic: Ruby Red #DC143C + Gold #FFD700
   ============================================================ */

/* ============================================================
   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: #0d0d0d;
    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: #DC143C;
    text-decoration: none;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

a:hover {
    color: #FFD700;
}

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: #FFD700;
    color: #000;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0d0d0d; }
::-webkit-scrollbar-thumb { background: #4a1515; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #FFD700; }

/* ============================================================
   Section 2: Header
   ============================================================ */
.site-header {
    width: 100%;
    background: #0a0505;
    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(255, 215, 0, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 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: #FFD700;
    border: 1.5px solid #FFD700;
}

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

.btn-register {
    background: linear-gradient(135deg, #DC143C, #8B0000);
    color: #ffffff;
    font-weight: 700;
    border: none;
}

.btn-register:hover {
    background: linear-gradient(135deg, #FF1744, #DC143C);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    transform: translateY(-1px);
    color: #fff;
}

.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: #1a0a0a;
    border-top: 1px solid #4a1515;
    border-bottom: 1px solid #4a1515;
    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: #FFD700;
    background: rgba(220, 20, 60, 0.1);
}

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

.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: #1a0a0a;
    min-width: 200px;
    border: 1px solid #4a1515;
    border-top: 2px solid #DC143C;
    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 #4a1515;
    transition: all 0.3s;
}

.nav-dropdown li a:hover,
.sub-menu li a:hover {
    color: #FFD700;
    background: rgba(220, 20, 60, 0.08);
    padding-left: 22px;
}

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

.mobile-menu-toggle:hover {
    background: rgba(220, 20, 60, 0.1);
}

/* Notification Bar */
.notification-bar {
    background: linear-gradient(90deg, #1a0a0a, #0d0d0d);
    border-top: 1px solid #4a1515;
    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-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-slider .swiper-pagination-bullet {
    background: rgba(220, 20, 60, 0.5);
    opacity: 1;
    width: 10px;
    height: 10px;
}

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

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: #FFD700;
    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(220, 20, 60, 0.3);
}

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

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

/* ============================================================
   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: #1a0a0a;
    border: 1px solid #4a1515;
}

.game-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.2);
    border-color: #DC143C;
}

.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(220, 20, 60, 0.4);
    opacity: 1;
}

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

/* ============================================================
   Section 7: Download Section
   ============================================================ */
.download-section {
    background: linear-gradient(135deg, #1a0a0a 0%, #0d0d0d 50%, #0a0505 100%);
    border: 2px solid #FFD700;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 30px 0;
}

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

.download-section p {
    color: #bbb;
    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, #DC143C, #8B0000);
    color: #ffffff;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    border: 1px solid #DC143C;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
    color: #ffffff;
    background: linear-gradient(135deg, #FF1744, #DC143C);
}

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

/* ============================================================
   Section 8: 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 #4a1515;
}

.poster-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.2);
    border-color: #DC143C;
}

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

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

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

.breadcrumb a:hover {
    color: #FFD700;
}

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

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

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

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

.category-desc {
    color: #bbb;
    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 #4a1515;
    margin-bottom: 10px;
}

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

.provider-tab:hover {
    background: rgba(220, 20, 60, 0.1);
    border-color: #DC143C;
    color: #DC143C;
}

.provider-tab.active {
    background: linear-gradient(135deg, #DC143C, #8B0000);
    color: #fff;
    border-color: #DC143C;
    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: #1a0a0a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #4a1515;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-color: #DC143C;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.15);
}

.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: #FFD700;
}

.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: #DC143C;
}

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

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

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

.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: #1a0a0a;
    color: #ffffff;
    border: 1px solid #4a1515;
}

.nav-links a:hover {
    background: rgba(220, 20, 60, 0.1);
    border-color: #DC143C;
    color: #DC143C;
}

.nav-links .current {
    background: linear-gradient(135deg, #DC143C, #8B0000);
    color: #fff;
    font-weight: 700;
    border: none;
}

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

/* ============================================================
   Section 11: Single Article Page
   ============================================================ */
.single-article {
    background: #1a0a0a;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid #4a1515;
    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 #4a1515;
}

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

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

.article-meta a {
    color: #DC143C;
}

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

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

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

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

.article-content h4 {
    color: #DC143C;
    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: #DC143C;
    text-decoration: underline;
}

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

.article-content blockquote {
    border-left: 3px solid #DC143C;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(220, 20, 60, 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 #4a1515;
    color: #ccc;
}

.article-content table th {
    background: #2a0a0a;
    color: #FFD700;
}

.article-tags {
    padding: 15px 0;
    border-top: 1px solid #4a1515;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.article-tags i {
    color: #DC143C;
}

.article-tags span {
    padding: 4px 12px;
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid #4a1515;
    border-radius: 15px;
    font-size: 12px;
    color: #bbb;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #4a1515;
    gap: 20px;
}

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

.article-nav-prev a:hover,
.article-nav-next a:hover {
    color: #FFD700;
}

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

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

.related-posts-title {
    font-size: 20px;
    color: #FFD700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #4a1515;
}

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

.related-item {
    background: #1a0a0a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #4a1515;
    transition: all 0.3s;
    text-decoration: none;
    color: #fff;
    display: block;
}

.related-item:hover {
    border-color: #DC143C;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.15);
    color: #fff;
}

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

.related-item-title {
    padding: 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
}

.related-item:hover .related-item-title {
    color: #FFD700;
}

/* ============================================================
   Section 12: 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, #1a0a0a, #2a0a0a);
    border: 1px solid #4a1515;
    border-radius: 10px;
    color: #DC143C;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.sidebar-btn:hover {
    background: linear-gradient(135deg, #DC143C, #8B0000);
    color: #fff;
    border-color: #DC143C;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.sidebar-btn-facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.sidebar-btn-telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
}

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

/* ============================================================
   Section 13: Footer
   ============================================================ */
.site-footer {
    background: #050303;
    border-top: 1px solid #4a1515;
    margin-top: 30px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 40px 0;
    border-bottom: 1px solid #4a1515;
}

.footer-col h4 {
    color: #FFD700;
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #DC143C;
    letter-spacing: 0.5px;
}

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

.footer-col ul li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(74, 21, 21, 0.5);
}

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

.footer-col ul li a {
    color: #bbb;
    font-size: 13px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #FFD700;
    padding-left: 5px;
}

.footer-brand-logo {
    margin-bottom: 10px;
}

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

.footer-brand-text {
    color: #888;
    font-size: 13px;
    line-height: 1.7;
    margin: 15px 0;
}

.footer-18plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 2px solid #DC143C;
    color: #DC143C;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1a0a0a;
    border: 1px solid #4a1515;
    color: #ccc;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social-links a:hover {
    background: #DC143C;
    color: #fff;
    border-color: #DC143C;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.footer-license-bar {
    padding: 25px 0;
    text-align: center;
    border-bottom: 1px solid #4a1515;
}

.footer-license-bar h4 {
    font-size: 14px;
    color: #FFD700;
    text-transform: uppercase;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.footer-license-bar .license-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

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

.license-item:hover {
    border-color: #DC143C;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.1);
}

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

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

.footer-bottom {
    border-top: 1px solid #4a1515;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.footer-disclaimer {
    color: #666;
    font-size: 12px;
    margin-top: 8px;
}

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

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

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

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

.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: #FFD700;
    padding-left: 4px;
}

.widget_search .search-form {
    display: flex;
    gap: 0;
}

.widget_search .search-field {
    flex: 1;
    padding: 10px 14px;
    background: #2a0a0a;
    border: 1px solid #4a1515;
    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: #DC143C;
    color: #fff;
    border: 1px solid #DC143C;
    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: #FF1744;
    border-color: #FF1744;
}

/* ============================================================
   Section 15: Utilities & Effects
   ============================================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #DC143C, #8B0000);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: none;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    transition: all 0.3s;
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 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); }
}

/* ============================================================
   Section 16: WIN777 独有组件样式
   ============================================================ */

/* ---- 公告弹窗 ---- */
.announcement-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.announcement-modal.hidden { display: none; }
.announcement-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.announcement-content {
    position: relative;
    background: linear-gradient(145deg, #1a0a0a 0%, #0d0d0d 50%, #0a0505 100%);
    border: 2px solid #FFD700;
    border-radius: 16px;
    padding: 30px 28px;
    max-width: 500px;
    width: 90%;
    z-index: 1;
    animation: modalSlideIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 40px rgba(220, 20, 60, 0.15), 0 20px 60px rgba(0, 0, 0, 0.5);
}
@keyframes modalSlideIn {
    from { transform: translateY(-30px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
.announcement-close {
    position: absolute;
    top: 8px; right: 12px;
    background: none; border: none;
    color: #FFD700;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 2;
    line-height: 1;
    padding: 5px;
}
.announcement-close:hover { transform: rotate(90deg); color: #fff; }
.announcement-header-icon {
    text-align: center;
    margin-bottom: 10px;
}
.announcement-header-icon i {
    font-size: 32px;
    color: #DC143C;
    animation: bullhornBounce 2s ease-in-out infinite;
}
@keyframes bullhornBounce {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}
.announcement-title {
    color: #FFD700;
    font-size: 17px;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #4a1515;
    letter-spacing: 1px;
    font-weight: 700;
}
.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}
.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(220, 20, 60, 0.04);
    border: 1px solid #4a1515;
    border-radius: 8px;
    color: #ddd;
    font-size: 13px;
    transition: all 0.3s;
    text-decoration: none;
    line-height: 1.4;
}
.announcement-item:hover {
    border-color: #DC143C;
    background: rgba(220, 20, 60, 0.1);
    color: #FFD700;
    transform: translateX(5px);
}
.announcement-badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    background: #4a1515;
    color: #aaa;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
.announcement-badge.hot { background: #DC143C; color: #fff; }
.announcement-badge.new { background: #FFD700; color: #000; }
.announcement-badge.info { background: #8B0000; color: #fff; }
.announcement-text { flex: 1; }
.announcement-item i.fa-chevron-right { color: #DC143C; font-size: 11px; flex-shrink: 0; }
.announcement-footer { text-align: center; }
.announcement-cta {
    display: inline-block;
    padding: 12px 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 8px;
    animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 20, 60, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(220, 20, 60, 0); }
}

/* ---- 轮盘装饰 Hero ---- */
.roulette-hero {
    padding: 50px 0;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    align-items: center;
}

.roulette-center {
    text-align: center;
}

.roulette-wheel {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 8px solid #FFD700;
    background: conic-gradient(
        #DC143C 0deg 10deg, #111 10deg 20deg,
        #DC143C 20deg 30deg, #111 30deg 40deg,
        #DC143C 40deg 50deg, #111 50deg 60deg,
        #DC143C 60deg 70deg, #111 70deg 80deg,
        #DC143C 80deg 90deg, #111 90deg 100deg,
        #DC143C 100deg 110deg, #111 110deg 120deg,
        #DC143C 120deg 130deg, #111 130deg 140deg,
        #DC143C 140deg 150deg, #111 150deg 160deg,
        #DC143C 160deg 170deg, #111 170deg 180deg,
        #DC143C 180deg 190deg, #111 190deg 200deg,
        #DC143C 200deg 210deg, #111 210deg 220deg,
        #DC143C 220deg 230deg, #111 230deg 240deg,
        #DC143C 240deg 250deg, #111 250deg 260deg,
        #DC143C 260deg 270deg, #111 270deg 280deg,
        #DC143C 280deg 290deg, #111 290deg 300deg,
        #DC143C 300deg 310deg, #111 310deg 320deg,
        #DC143C 320deg 330deg, #111 330deg 340deg,
        #DC143C 340deg 350deg, #111 350deg 360deg
    );
    position: relative;
    margin: 0 auto;
    animation: spin-wheel 10s linear infinite;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), 0 0 60px rgba(220, 20, 60, 0.2);
}

@keyframes spin-wheel {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.roulette-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 25px solid #FFD700;
    z-index: 5;
}

.hero-brand {
    font-size: 36px;
    color: #FFD700;
    margin-top: 20px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    letter-spacing: 3px;
}

.hero-tagline {
    color: #bbb;
    font-size: 14px;
    margin-top: 8px;
    letter-spacing: 2px;
}

/* ---- 老虎机卷轴 ---- */
.slot-reels {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.slot-reel {
    width: 70px;
    height: 90px;
    background: #1a0a0a;
    border: 3px solid #FFD700;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: #DC143C;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2), inset 0 0 10px rgba(0,0,0,0.5);
}

.slot-reel span {
    animation: reel-spin 0.5s ease-out;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

@keyframes reel-spin {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.hero-btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    letter-spacing: 1px;
    transition: all 0.3s;
    width: 100%;
    max-width: 220px;
}

.hero-btn-secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.hero-btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bbb;
    font-size: 12px;
}

.hero-stat i {
    color: #DC143C;
}

/* ---- 筹码式分类标签 ---- */
.chip-categories-section {
    padding: 30px 0;
}

.chip-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 30px 0;
}

.chip-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #1a0a0a;
    border: 4px dashed #DC143C;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.chip-tag::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 2px solid #4a1515;
}

.chip-tag:hover {
    border-color: #FFD700;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

.chip-tag span {
    position: relative;
    z-index: 1;
}

/* ---- VIP优惠区 ---- */
.vip-section {
    padding: 40px 0;
}

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

.vip-card {
    background: linear-gradient(135deg, #1a0a0a, #0d0d0d);
    border: 2px solid #FFD700;
    border-radius: 16px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
}

.vip-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,215,0,0.05) 0%, transparent 70%);
}

.vip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.vip-card-icon {
    margin-bottom: 15px;
}

.vip-card-icon i {
    font-size: 40px;
    color: #FFD700;
}

.vip-card h3 {
    color: #FFD700;
    font-size: 17px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.vip-card p {
    color: #bbb;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vip-card-btn {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #DC143C, #8B0000);
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.vip-card-btn:hover {
    background: linear-gradient(135deg, #FF1744, #DC143C);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    color: #fff;
}

/* ---- 首页新闻区 ---- */
.home-news-section { padding: 30px 0; }
.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}
.home-news-grid .article-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #1a0a0a;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #4a1515;
    transition: all 0.3s;
}
.home-news-grid .article-card:hover {
    border-color: #DC143C;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.15);
    color: inherit;
}
.home-news-grid .article-card-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s;
}
.home-news-grid .article-card:hover .article-card-thumb img {
    transform: scale(1.05);
}
.home-news-grid .article-card-title {
    padding: 14px 16px 6px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    transition: color 0.3s;
}
.home-news-grid .article-card:hover .article-card-title {
    color: #FFD700;
}
.home-news-grid .article-card-meta {
    padding: 0 16px;
    font-size: 12px;
    color: #888;
}
.home-news-grid .article-card-meta i {
    margin-right: 4px;
    color: #666;
}
.home-news-grid .article-card-excerpt {
    padding: 8px 16px 18px;
    font-size: 13px;
    color: #bbb;
    line-height: 1.5;
}
.home-news-placeholder {
    display: contents;
}
.view-more-btn {
    display: block;
    text-align: center;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #DC143C;
    color: #DC143C;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    max-width: 200px;
    margin: 0 auto;
    letter-spacing: 1px;
}
.view-more-btn:hover {
    background: #DC143C;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}
.view-more-btn i { margin-left: 6px; font-size: 12px; }

/* ---- 合作伙伴Logo条 ---- */
.partners-section {
    padding: 30px 0;
    border-top: 1px solid #4a1515;
    overflow: hidden;
}
.partners-section .partners-scroll {
    display: flex;
    gap: 15px;
    overflow: hidden;
    animation: scroll-partners 25s linear infinite;
    white-space: nowrap;
}
.partners-section .partner-item {
    padding: 12px 28px;
    background: #1a0a0a;
    border: 1px solid #4a1515;
    border-radius: 8px;
    color: #888;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    flex-shrink: 0;
    transition: all 0.3s;
    cursor: default;
    opacity: 1;
}
.partners-section .partner-item:hover {
    color: #FFD700;
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
}

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

/* ---- Partners scroll generic ---- */
.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: #FFD700;
}

/* Section title decoration */
.section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 22px;
    background: linear-gradient(180deg, #DC143C, #FFD700);
    margin-right: 12px;
    border-radius: 2px;
}

/* Hero slider overlay */
.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(13,13,13,0) 60%, rgba(13,13,13,0.8) 100%);
    z-index: 1;
    pointer-events: none;
}
