/* Additional Custom Styles for W69 Theme */

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Category Icons */
.category-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.category-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.category-icon-item:hover {
    transform: scale(1.1);
}

.category-icon-item img {
    width: 80px;
    height: 80px;
}

.category-icon-item span {
    margin-top: 10px;
    color: var(--text-white);
    font-weight: 500;
}

.mobile-menu-toggle {
    display: none;
}

.w69-sticky-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 1200;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: var(--gradient-gold);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.38);
    overflow: hidden;
}

.w69-sticky-action {
    min-width: 0;
    min-height: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
}

.w69-sticky-action + .w69-sticky-action {
    border-left: 1px dashed rgba(26, 10, 46, 0.36);
}

.w69-sticky-action__icon {
    font-size: 18px;
    line-height: 1;
}

/* Lottery Section */
.lottery-section {
    padding: 20px 0;
    background: var(--primary-color);
}

.welcome-marquee {
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(135deg, #8B4513 0%, #D4A574 100%);
    border: 1px solid rgba(255, 215, 0, 0.22);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.welcome-marquee__track {
    display: flex;
    width: max-content;
    min-height: 86px;
    align-items: center;
    gap: 72px;
    padding: 0 36px;
    animation: w69-marquee 28s linear infinite;
    will-change: transform;
}

.welcome-marquee__track span {
    white-space: nowrap;
    color: #FFD700;
    font-size: 28px;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.welcome-marquee__track span::after {
    content: " •";
    margin-left: 72px;
    color: rgba(255, 255, 255, 0.78);
}

@keyframes w69-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Hot Games Section */
.hot-games-section {
    padding: 40px 0;
    background: var(--gradient-purple);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header .section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}

.section-header .section-title h2 {
    margin: 0;
}

.nav-arrows {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-arrow img {
    width: 40px;
    height: 40px;
}

/* Game Rank Badge */
.game-rank {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: var(--gradient-gold);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 2;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.filter-tab {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 10px 25px;
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--accent-gold);
    color: var(--primary-color);
    border-color: var(--accent-gold);
}

/* Casino Section */
.casino-section {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.3);
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.casino-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.casino-card img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

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

.casino-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 20px;
    text-align: center;
}

.casino-overlay h4 {
    color: var(--text-white);
    margin-bottom: 10px;
}

/* Articles Section */
.articles-section {
    padding: 40px 0;
    background: var(--primary-color);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.article-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.article-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.article-card-content {
    padding: 20px;
}

.article-card h3 {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.article-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.recommended-section {
    padding: 56px 0;
}

.article-card--fallback img {
    background: rgba(255, 215, 0, 0.08);
}

.article-card--fallback .article-card-content {
    min-height: 150px;
}

.article-card--fallback .read-more {
    color: var(--accent-gold);
    font-weight: 700;
}

.read-more {
    color: var(--accent-gold);
    font-weight: 500;
}

/* Archive Container */
.archive-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 40px 0;
}

.archive-header {
    margin-bottom: 30px;
}

.archive-title {
    font-size: 32px;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.archive-description {
    color: var(--text-light);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.post-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.post-card-link {
    display: block;
    text-decoration: none;
}

.post-card-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.post-card-content {
    padding: 20px;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 12px;
}

.post-date {
    color: var(--text-light);
}

.post-category {
    background: var(--accent-gold);
    color: var(--primary-color);
    padding: 2px 10px;
    border-radius: 10px;
}

.post-title {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.post-excerpt {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more-link {
    color: var(--accent-gold);
    font-weight: 500;
}

/* Pagination */
.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination .nav-links {
    display: flex;
    gap: 10px;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination .current {
    background: var(--accent-gold);
    color: var(--primary-color);
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 60px 20px;
}

.no-posts h2 {
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.no-posts p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Article Page Styles */
.category-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 10px;
    margin-bottom: 15px;
}

.article-featured-image {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
}

.quick-summary {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid var(--accent-gold);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 0 15px 15px 0;
}

.quick-summary h4 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.quick-summary .summary-content {
    color: var(--text-light);
}

/* Article CTA */
.article-cta {
    margin: 40px 0;
}

/* Related Games Component */
.related-games-component {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.component-title {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 20px;
}

.games-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.game-card.small {
    min-width: 120px;
    max-width: 120px;
}

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

/* Article Tags */
.article-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tags-label {
    color: var(--text-light);
    margin-right: 10px;
}

.tag-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 15px;
    margin: 5px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: var(--accent-gold);
    color: var(--primary-color);
}

/* Social Share */
.social-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.share-label {
    color: var(--text-light);
}

.share-btn {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.line {
    background: #00b900;
    color: white;
}

.share-btn:hover {
    transform: scale(1.05);
}

/* Sidebar Widget Styles */
.cta-widget {
    background: var(--gradient-purple);
    border: 2px solid var(--accent-gold);
    text-align: center;
}

.widget-cta-content {
    padding: 10px;
}

.widget-cta-content .cta-icon {
    width: 60px;
    margin-bottom: 15px;
}

.widget-cta-content h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.widget-cta-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Providers Grid in Sidebar */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.provider-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.provider-item:hover {
    background: rgba(255, 215, 0, 0.1);
}

.provider-item img {
    width: 100%;
    height: auto;
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-btn img {
    width: 30px;
    height: 30px;
    border-radius: 5px;
}

.contact-btn span {
    color: var(--text-white);
}

/* Promo Mini List */
.promo-mini-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.promo-mini-item img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.promo-mini-item:hover img {
    transform: scale(1.02);
}

/* Recent Posts List */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.recent-post-item:hover {
    background: rgba(255, 215, 0, 0.1);
}

.recent-post-thumb img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.recent-post-info h4 {
    font-size: 14px;
    color: var(--text-white);
    margin-bottom: 5px;
}

.recent-post-info .post-date {
    font-size: 12px;
    color: var(--text-light);
}

/* Licenses Widget */
.licenses-widget .licenses-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.licenses-widget .licenses-grid img {
    height: 40px;
    opacity: 0.8;
}

/* Footer Contact */
.footer-contact {
    text-align: center;
    padding: 30px 0;
}

.footer-contact h3 {
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: scale(1.1);
}

.contact-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.contact-item span {
    color: var(--text-white);
    font-size: 14px;
}

/* Footer Responsible */
.footer-responsible {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.footer-responsible img {
    height: 40px;
}

/* Article Rating */
.article-rating {
    margin-top: 15px;
}

/* FAQ Title */
.faq-title {
    color: var(--accent-gold);
    margin-bottom: 20px;
}

/* TOC Note */
.toc-note {
    color: var(--text-light);
    font-size: 13px;
    font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .archive-container {
        grid-template-columns: 1fr;
    }

    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 58px;
    }

    .hero-banner,
    .banner-slider,
    .banner-slide,
    .banner-slide picture {
        background: var(--primary-color);
    }

    .banner-slide img {
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: none;
        object-fit: contain;
        object-position: center;
    }

    .banner-dots {
        bottom: 8px;
        gap: 6px;
    }

    .banner-dot {
        width: 8px;
        height: 8px;
    }

    .banner-dot.active {
        width: 22px;
    }

    .site-header {
        position: sticky;
        top: 0;
    }

    .header-top {
        gap: 10px;
    }

    .header-actions {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .header-actions .btn {
        padding: 9px 14px;
        font-size: 12px;
    }

    .mobile-menu-toggle {
        width: 100%;
        min-height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 8px;
        color: var(--primary-color);
        background: var(--gradient-gold);
        border: 0;
        border-radius: 8px;
        font-family: inherit;
        font-size: 17px;
        font-weight: 800;
        cursor: pointer;
    }

    .mobile-menu-toggle__icon,
    .mobile-menu-toggle__icon::before,
    .mobile-menu-toggle__icon::after {
        width: 18px;
        height: 2px;
        display: block;
        background: var(--primary-color);
        border-radius: 999px;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .mobile-menu-toggle__icon {
        position: relative;
    }

    .mobile-menu-toggle__icon::before,
    .mobile-menu-toggle__icon::after {
        content: "";
        position: absolute;
        left: 0;
    }

    .mobile-menu-toggle__icon::before {
        top: -6px;
    }

    .mobile-menu-toggle__icon::after {
        top: 6px;
    }

    .mobile-menu-toggle.active .mobile-menu-toggle__icon {
        background: transparent;
    }

    .mobile-menu-toggle.active .mobile-menu-toggle__icon::before {
        transform: translateY(6px) rotate(45deg);
    }

    .mobile-menu-toggle.active .mobile-menu-toggle__icon::after {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        display: none;
        max-height: 58vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin-top: 8px;
    }

    .main-nav.open {
        display: block;
    }

    .nav-menu {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        justify-content: initial;
        overflow: visible;
        padding: 6px;
    }

    .nav-menu li a {
        min-height: 86px;
        justify-content: center;
        padding: 8px 4px;
        font-size: 12px;
        text-align: center;
    }

    .nav-menu li a img {
        width: 38px;
        height: 38px;
        margin-bottom: 6px;
        object-fit: contain;
    }

    .category-icons {
        gap: 15px;
    }

    .category-icon-item img {
        width: 60px;
        height: 60px;
    }

    .filter-tabs {
        flex-wrap: wrap;
    }

    .casino-grid {
        grid-template-columns: 1fr;
    }

    .social-share {
        flex-wrap: wrap;
    }
}

@media (max-width: 1024px) {
    body {
        padding-bottom: 58px;
    }

    .w69-sticky-action-bar {
        left: 0;
        right: 0;
        width: 100vw;
        max-width: none;
        transform: none;
        border-radius: 0;
    }

    .w69-sticky-action {
        min-height: 52px;
        padding: 6px 4px;
        font-size: 13px;
    }

    .w69-sticky-action__icon {
        font-size: 18px;
    }
}

@media (min-width: 1025px) {
    .w69-sticky-action-bar {
        max-width: 1400px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 8px 8px 0 0;
        overflow: hidden;
    }

    body {
        padding-bottom: 74px;
    }
}

/* Page Banner */
.page-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.page-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.page-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px;
    text-align: left;
}

.page-banner-kicker {
    display: block;
    color: var(--text-white);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}

.page-banner-content h1 {
    font-size: 42px;
    color: var(--text-white);
    line-height: 1.18;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 0;
}

.page-banner-content p {
    font-size: 18px;
    color: var(--text-white);
}

/* Page Content Wrapper */
.page-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 40px 0;
}

.page-main-content {
    min-width: 0;
}

/* Provider Grid */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.provider-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,215,0,0.1);
}

.provider-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
}

.provider-card img {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.provider-card h3, .provider-card h4 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.provider-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Download Section */
.download-section {
    margin-bottom: 40px;
}

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

.download-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255,215,0,0.1);
    transition: all 0.3s ease;
}

.download-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.download-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.download-card h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.download-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Lottery Types */
.lottery-types {
    margin-bottom: 40px;
}

/* Sports Providers */
.sports-providers, .casino-providers, .providers-filter {
    margin-bottom: 40px;
}

.providers-filter h2, .sports-providers h2, .casino-providers h2, .games-section h2, .lottery-types h2 {
    color: var(--accent-gold);
    margin-bottom: 25px;
    font-size: 28px;
}

/* Sports Article Page */
.sports-article-hero {
    background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.16), transparent 34%), var(--primary-color);
    padding: 42px 0 28px;
}

.sports-article-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 36px;
    align-items: center;
}

.sports-article-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 14px;
    border: 1px solid rgba(255, 215, 0, 0.45);
    border-radius: 999px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 16px;
}

.sports-article-hero h1 {
    font-size: 42px;
    line-height: 1.18;
    color: var(--text-white);
    margin-bottom: 16px;
}

.sports-article-hero p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 680px;
    margin-bottom: 24px;
}

.sports-article-hero__media {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.22);
    background: rgba(255, 255, 255, 0.04);
}

.sports-article-hero__media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
}

.sports-article-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 34px 0 56px;
}

.sports-article {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.sports-story-block {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 30px;
    align-items: center;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.sports-story-block--reverse .sports-story-copy {
    order: 2;
}

.sports-story-block--reverse .sports-story-image {
    order: 1;
}

.sports-story-copy h2,
.sports-table-section h2,
.sports-article-cta h2 {
    color: var(--accent-gold);
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 14px;
}

.sports-story-copy p,
.sports-article-cta p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.sports-story-image {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.16), rgba(255, 255, 255, 0.04));
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sports-story-image img {
    width: 100%;
    height: 100%;
    max-height: 310px;
    object-fit: cover;
    display: block;
}

.sports-story-image--logos img {
    width: min(72%, 300px);
    height: auto;
    object-fit: contain;
    padding: 38px;
}

.sports-provider-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.sports-provider-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 215, 0, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.sports-provider-item img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.sports-provider-item span {
    color: var(--text-white);
    font-weight: 700;
}

.sports-article-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.sports-article-list li {
    position: relative;
    color: var(--text-light);
    padding-left: 24px;
    line-height: 1.7;
}

.sports-article-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
}

.sports-article-list--columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sports-table-section {
    padding: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 215, 0, 0.16);
}

.sports-article-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.16), rgba(255, 170, 0, 0.06));
    border: 1px solid rgba(255, 215, 0, 0.35);
}

.sports-article-cta p {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .page-content-wrapper {
        grid-template-columns: 1fr;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }

    .sports-article-hero__inner,
    .sports-story-block,
    .sports-provider-strip {
        grid-template-columns: 1fr;
    }

    .sports-story-block--reverse .sports-story-copy,
    .sports-story-block--reverse .sports-story-image {
        order: initial;
    }
}

@media (max-width: 768px) {
    .page-banner-kicker {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .page-banner-content h1 {
        font-size: 28px;
    }

    .page-banner-content p {
        font-size: 14px;
    }

    .provider-grid {
        grid-template-columns: 1fr;
    }

    .sports-article-hero {
        padding: 28px 0 18px;
    }

    .sports-article-hero h1 {
        font-size: 30px;
    }

    .sports-article-hero p,
    .sports-story-copy p,
    .sports-article-cta p {
        font-size: 15px;
    }

    .sports-story-block,
    .sports-table-section,
    .sports-article-cta {
        padding: 20px;
    }

    .sports-story-copy h2,
    .sports-table-section h2,
    .sports-article-cta h2 {
        font-size: 24px;
    }

    .sports-article-list--columns {
        grid-template-columns: 1fr;
    }

    .sports-article-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Hide unwanted popups/widgets */
.n2-ss-slider-3,
.smart-slider-3,
[class*="qr-popup"],
[class*="line-popup"],
[id*="line-widget"],
.crisp-client,
.intercom-lightweight-app,
#hubspot-messages-iframe-container {
    display: none !important;
}

/* Warning Box Better Style */
.info-box.warning {
    background: linear-gradient(135deg, rgba(26,10,46,0.95) 0%, rgba(45,27,78,0.95) 100%) !important;
    border: 1px solid rgba(240,173,78,0.4) !important;
    border-left: 4px solid #f0ad4e !important;
    border-radius: 10px;
    padding: 20px 25px;
    margin: 30px 0;
}

.info-box.warning .info-box-title {
    color: #f0ad4e !important;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.info-box.warning .info-box-content,
.info-box.warning p {
    color: #f0ad4e !important;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Global Yellow Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.page-banner-content h1,
.sports-article-hero h1,
.article-title,
.article-content h2,
.article-content h3,
.section-title,
.section-title h2,
.post-title,
.archive-title,
.widget-title,
.cta-title,
.checklist-title,
.component-title,
.faq-title,
.sports-story-copy h2,
.sports-table-section h2,
.sports-article-cta h2,
.provider-card h3,
.provider-card h4,
.download-card h3,
.footer-contact h3,
.related-posts-title {
    color: var(--accent-gold) !important;
}

/* Shared Thai article landing pages */
.w69-article-hero {
    padding: 48px 0 28px;
    background: linear-gradient(180deg, rgba(35, 13, 61, 0.98), rgba(20, 5, 39, 0.98));
}

.w69-article-hero__inner,
.w69-story-block {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: 30px;
    align-items: center;
}

.w69-article-hero h1 {
    color: var(--accent-gold) !important;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.18;
    margin: 8px 0 16px;
}

.w69-article-hero p,
.w69-story-copy p,
.w69-article-body p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
}

.w69-article-hero__media,
.w69-story-image {
    margin: 0;
}

.w69-article-hero__media img,
.w69-story-image img {
    width: 100%;
    height: clamp(190px, 28vw, 360px);
    max-height: 360px;
    object-fit: contain;
    border-radius: 8px;
    padding: 12px;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.12), rgba(255, 255, 255, 0.04) 54%, rgba(0, 0, 0, 0.16));
}

.w69-article-layout {
    max-width: 1120px;
    margin: 0 auto 60px;
}

.w69-article-body {
    display: grid;
    gap: 26px;
}

.w69-story-block,
.w69-highlight-panel,
.w69-table-section,
.w69-article-body .faq-section,
.w69-article-body .cta-container {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 215, 0, 0.16);
    border-radius: 8px;
    padding: 26px;
}

.w69-story-block--reverse .w69-story-copy {
    order: 2;
}

.w69-story-block--reverse .w69-story-image {
    order: 1;
}

.w69-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.w69-highlight-item {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.18);
    border-radius: 8px;
    padding: 14px;
    font-weight: 600;
}

.popular-game-item,
.provider-item {
    cursor: default;
}

.search-form {
    display: flex;
    gap: 10px;
    max-width: 520px;
    margin: 24px auto 36px;
}

.search-field {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.error-404-page {
    padding: 70px 0;
    text-align: center;
}

.error-title {
    font-size: 110px;
    line-height: 1;
    color: var(--accent-gold) !important;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 26px 0 44px;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    max-width: 720px;
    margin: 0 auto;
}

.suggestion-card {
    padding: 22px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.suggestion-card img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin-bottom: 10px;
}

.suggestion-card span {
    display: block;
    color: var(--text-white);
}

@media (max-width: 992px) {
    .w69-article-hero__inner,
    .w69-story-block {
        grid-template-columns: 1fr;
    }

    .w69-story-block--reverse .w69-story-copy,
    .w69-story-block--reverse .w69-story-image {
        order: initial;
    }

    .w69-highlight-grid,
    .suggestions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .w69-article-hero {
        padding: 30px 0 20px;
    }

    .w69-story-block,
    .w69-highlight-panel,
    .w69-table-section,
    .w69-article-body .faq-section,
    .w69-article-body .cta-container {
        padding: 18px;
    }

    .w69-highlight-grid,
    .suggestions-grid {
        grid-template-columns: 1fr;
    }

    .search-form,
    .error-actions {
        flex-direction: column;
    }

    .welcome-marquee__track {
        min-height: 64px;
        gap: 42px;
        padding: 0 22px;
        animation-duration: 22s;
    }

    .welcome-marquee__track span {
        font-size: 20px;
    }

    .welcome-marquee__track span::after {
        margin-left: 42px;
    }
}
