/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #090f1e;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

body.fixed {
    overflow: hidden;
}

.wp-container-1 { display: none; }
.wp-block-group { display: none; }

/* Container */
.xj8k2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.p9x4m-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.zl3q9-header {
    background: linear-gradient(135deg, #141b2e 0%, #1a2339 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.n7k2p-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.m4v8x-logo-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.m4v8x-logo-block img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.m4v8x-logo-block img:hover {
    transform: scale(1.05);
}

.q2w9r-online-count {
    background: rgba(25, 172, 90, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #19ac5a;
    font-weight: 600;
    border: 1px solid rgba(25, 172, 90, 0.3);
}

.q2w9r-online-count .t5y7u-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #19ac5a;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse-anim 2s infinite;
}

@keyframes pulse-anim {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.h6j3n-nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    align-items: center;
}

.h6j3n-nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.h6j3n-nav-menu a:hover {
    color: #19ac5a;
}

.k9l2m-btn-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.v3b8n-btn {
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.v3b8n-btn-login {
    background: #1f2841;
    color: #fff;
}

.v3b8n-btn-login:hover {
    background: #2a3552;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 40, 65, 0.4);
}

.v3b8n-btn-signup {
    background: #19ac5a;
    color: #fff;
}

.v3b8n-btn-signup:hover {
    background: #1bc767;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 172, 90, 0.4);
}

/* Burger Menu */
.c5x9z-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.c5x9z-burger span {
    width: 28px;
    height: 3px;
    background: #19ac5a;
    border-radius: 2px;
    transition: all 0.3s;
}

.c5x9z-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.c5x9z-burger.active span:nth-child(2) {
    opacity: 0;
}

.c5x9z-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.d7n3k-hero {
    background: url('/banner.jpg') center/cover no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin: 30px 20px;
    border-radius: 15px;
    overflow: hidden;
}

.d7n3k-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(9, 15, 30, 0.85) 0%, rgba(20, 27, 46, 0.75) 100%);
}

.w8q4p-hero-content {
    position: relative;
    z-index: 1;
    padding: 40px;
}

.w8q4p-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.w8q4p-hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.r2t6y-hero-btn {
    background: #19ac5a;
    color: #fff;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(25, 172, 90, 0.3);
}

.r2t6y-hero-btn:hover {
    background: #1bc767;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(25, 172, 90, 0.5);
}

/* Content Sections */
.u9i3l-section {
    margin: 30px 20px;
    background: rgba(20, 27, 46, 0.5);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.u9i3l-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #19ac5a;
    font-weight: 700;
    border-bottom: 2px solid rgba(25, 172, 90, 0.3);
    padding-bottom: 15px;
}

.u9i3l-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

/* Mirrors Table */
.a5s7d-mirrors-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    overflow-x: auto;
    display: block;
}

.a5s7d-mirrors-table table {
    width: 100%;
    min-width: 600px;
}

.a5s7d-mirrors-table th,
.a5s7d-mirrors-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.1);
}

.a5s7d-mirrors-table th {
    background: #1f2841;
    color: #19ac5a;
    font-weight: 600;
}

.a5s7d-mirrors-table td {
    background: rgba(31, 40, 65, 0.3);
    color: #e0e0e0;
}

.a5s7d-mirrors-table tr:hover td {
    background: rgba(31, 40, 65, 0.5);
}

.f3g8h-mirror-link {
    color: #19ac5a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.f3g8h-mirror-link:hover {
    color: #1bc767;
    text-decoration: underline;
}

.j4k2n-update-time {
    text-align: center;
    margin-top: 15px;
    color: #888;
    font-size: 14px;
    font-style: italic;
}

/* Winners Table */
.p8o3m-winners-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    overflow-x: auto;
    display: block;
}

.p8o3m-winners-table table {
    width: 100%;
    min-width: 500px;
}

.p8o3m-winners-table th,
.p8o3m-winners-table td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.p8o3m-winners-table th {
    background: #1f2841;
    color: #19ac5a;
    font-weight: 600;
}

.p8o3m-winners-table td {
    background: rgba(31, 40, 65, 0.3);
    color: #e0e0e0;
}

.p8o3m-winners-table tr:hover td {
    background: rgba(31, 40, 65, 0.5);
}

.l7m9q-win-amount {
    color: #19ac5a;
    font-weight: 700;
    font-size: 16px;
}

/* App Info Block */
.b6n2x-app-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.z9c4v-app-table {
    width: 100%;
    border-collapse: collapse;
}

.z9c4v-app-table th,
.z9c4v-app-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.1);
}

.z9c4v-app-table th {
    background: #1f2841;
    color: #19ac5a;
    font-weight: 600;
    width: 40%;
}

.z9c4v-app-table td {
    background: rgba(31, 40, 65, 0.3);
    color: #e0e0e0;
}

.x8k3p-download-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.t5r9w-app-btn {
    background: #1f2841;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.t5r9w-app-btn:hover {
    background: #19ac5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 172, 90, 0.4);
}

/* Slots Grid */
.h3y7m-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.q5w9e-slot-card {
    background: rgba(31, 40, 65, 0.4);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.q5w9e-slot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(25, 172, 90, 0.2);
    border-color: rgba(25, 172, 90, 0.3);
}

.q5w9e-slot-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.q5w9e-slot-card h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.n2m8k-play-btn {
    background: #19ac5a;
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.n2m8k-play-btn:hover {
    background: #1bc767;
    box-shadow: 0 5px 15px rgba(25, 172, 90, 0.4);
}

/* Mini Slot Game */
.v7x4q-mini-slot {
    background: linear-gradient(135deg, #1f2841 0%, #141b2e 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    border: 2px solid rgba(25, 172, 90, 0.3);
}

.c9n2m-slot-machine {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.k8p3x-reel {
    width: 100px;
    height: 100px;
    background: rgba(9, 15, 30, 0.8);
    border: 3px solid #19ac5a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    transition: all 0.3s ease;
}

.k8p3x-reel.spinning {
    animation: spin-reel 0.1s linear infinite;
}

@keyframes spin-reel {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.y5t2w-spin-btn {
    background: #19ac5a;
    color: #fff;
    padding: 15px 60px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.y5t2w-spin-btn:hover {
    background: #1bc767;
    transform: scale(1.05);
}

.y5t2w-spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.u4i9p-result-message {
    margin-top: 25px;
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    display: none;
}

.u4i9p-result-message.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.u4i9p-result-message.win {
    background: rgba(25, 172, 90, 0.2);
    color: #19ac5a;
    border: 2px solid #19ac5a;
}

.u4i9p-result-message.lose {
    background: rgba(255, 99, 71, 0.2);
    color: #ff6347;
    border: 2px solid #ff6347;
}

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

.o3l8m-claim-btn {
    margin-top: 15px;
    background: #19ac5a;
    color: #fff;
    padding: 12px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.o3l8m-claim-btn:hover {
    background: #1bc767;
    transform: translateY(-2px);
}

/* Author Block */
.s6d2n-author-block {
    display: flex;
    gap: 30px;
    align-items: center;
    background: rgba(31, 40, 65, 0.3);
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
    border-left: 4px solid #19ac5a;
}

.g7h4k-author-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #19ac5a;
}

.m2q9v-author-info h4 {
    color: #19ac5a;
    font-size: 22px;
    margin-bottom: 10px;
}

.m2q9v-author-info p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.p4x8w-social-links {
    display: flex;
    gap: 15px;
}

.p4x8w-social-links a {
    color: #19ac5a;
    font-size: 24px;
    transition: color 0.3s;
}

.p4x8w-social-links a:hover {
    color: #1bc767;
}

/* Footer */
.e2r9t-footer {
    background: linear-gradient(135deg, #141b2e 0%, #1a2339 100%);
    padding: 40px 20px 20px;
    margin-top: 50px;
    border-top: 2px solid rgba(25, 172, 90, 0.2);
}

.i5u3y-footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.a9n7k-footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.a9n7k-footer-logo img {
    height: 60px;
    width: auto;
}

.l3o8m-footer-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.l3o8m-footer-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.l3o8m-footer-menu a:hover {
    color: #19ac5a;
}

.w4q2x-payment-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.w4q2x-payment-logos img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.w4q2x-payment-logos img:hover {
    filter: grayscale(0%);
}

.t7y3u-providers {
    text-align: center;
    margin-bottom: 30px;
}

.t7y3u-providers p {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}

.r5e9k-provider-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #aaa;
}

.n8m4p-copyright {
    text-align: center;
    color: #888;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.n8m4p-copyright a {
    color: #19ac5a;
    text-decoration: none;
}

/* Sticky Widget */
.z3x7n-sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #19ac5a 0%, #1bc767 100%);
    padding: 15px 20px;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.5);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.z3x7n-sticky-widget p {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
}

.k9p2x-widget-btn {
    background: #fff;
    color: #19ac5a;
    padding: 12px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.k9p2x-widget-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.v6n3k-close-widget {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.v6n3k-close-widget:hover {
    background: #fff;
    color: #19ac5a;
}

/* Content Area Styling */
.o7k4m-content-area h1,
.o7k4m-content-area h2,
.o7k4m-content-area h3,
.o7k4m-content-area h4,
.o7k4m-content-area h5,
.o7k4m-content-area h6 {
    color: #fff;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.o7k4m-content-area p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #e0e0e0;
}

.o7k4m-content-area ul,
.o7k4m-content-area ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.o7k4m-content-area li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #e0e0e0;
}

.o7k4m-content-area a {
    color: #19ac5a;
    text-decoration: none;
    transition: color 0.3s;
}

.o7k4m-content-area a:hover {
    color: #1bc767;
    text-decoration: underline;
}

.o7k4m-content-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow-x: auto;
    display: block;
}

.o7k4m-content-area table thead {
    background: #1f2841;
}

.o7k4m-content-area table th {
    padding: 12px 15px;
    text-align: left;
    color: #19ac5a;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
}

.o7k4m-content-area table td {
    padding: 12px 15px;
    text-align: left;
    color: #e0e0e0;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(31, 40, 65, 0.3);
}

.o7k4m-content-area blockquote {
    border-left: 4px solid #19ac5a;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #aaa;
}

/* Unused WordPress Elements */
.wp-block-image { display: none; }
.wp-block-gallery { display: none; }
.elementor-widget-container { display: none; }
.yoast-breadcrumb { display: none; }

/* Responsive Design */
@media (max-width: 992px) {
    .h6j3n-nav-menu {
        display: none;
    }

    .c5x9z-burger {
        display: flex;
    }

    .b6n2x-app-info {
        grid-template-columns: 1fr;
    }

    .h3y7m-slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .w8q4p-hero-content h1 {
        font-size: 32px;
    }

    .w8q4p-hero-content p {
        font-size: 16px;
    }

    .u9i3l-section {
        padding: 20px;
        margin: 20px 10px;
    }

    .u9i3l-section h2 {
        font-size: 24px;
    }

    .s6d2n-author-block {
        flex-direction: column;
        text-align: center;
    }

    .c9n2m-slot-machine {
        gap: 10px;
    }

    .k8p3x-reel {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .z3x7n-sticky-widget {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .z3x7n-sticky-widget p {
        font-size: 14px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .n7k2p-header-content {
        justify-content: center;
    }

    .k9l2m-btn-group {
        order: -1;
        width: 100%;
        justify-content: center;
    }

    .h3y7m-slots-grid {
        grid-template-columns: 1fr;
    }
}

.new-wrap{
    padding: 24px 20px;
}

.new-article{
    max-width: 920px;
    margin: 0 auto;
    background: rgba(20,27,46,.55);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(0,0,0,.45);
    backdrop-filter: blur(10px);
}

.new-article > *:first-child{ margin-top: 0; }
.new-article > *:last-child{ margin-bottom: 0; }

.new-article p{
    margin: 0 0 14px 0;
    color: #d7dbe3;
    line-height: 1.85;
    font-size: 16px;
}

.new-article h2{
    margin: 26px 0 14px 0;
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: .2px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(25,172,90,.25);
}

.new-article h3{
    margin: 18px 0 10px 0;
    color: #ffffff;
    font-size: 19px;
    font-weight: 750;
}

.new-article a{
    color: #19ac5a;
    text-decoration: none;
    font-weight: 650;
    border-bottom: 1px solid rgba(25,172,90,.35);
    transition: filter .2s ease, border-color .2s ease;
}

.new-article a:hover{
    filter: brightness(1.08);
    border-color: rgba(25,172,90,.7);
}

.new-article ul,
.new-article ol{
    margin: 14px 0 18px 0;
    padding-left: 22px;
    color: #d7dbe3;
}

.new-article li{
    margin: 8px 0;
    line-height: 1.75;
}

.new-article ul li::marker{
    color: rgba(25,172,90,.9);
}

.new-article ol li::marker{
    color: rgba(25,172,90,.9);
    font-weight: 800;
}

.new-article blockquote{
    margin: 18px 0;
    padding: 14px 16px;
    border-left: 4px solid #19ac5a;
    background: rgba(9,15,30,.55);
    border-radius: 10px;
    color: #cfd6e3;
}

.new-article code{
    background: rgba(31,40,65,.55);
    border: 1px solid rgba(255,255,255,.08);
    padding: 2px 6px;
    border-radius: 8px;
    color: #ffffff;
    font-size: .95em;
}

.new-article table{
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 22px 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
}

.new-article thead{
    background: rgba(31,40,65,.75);
}

.new-article th,
.new-article td{
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.new-article th{
    color: #19ac5a;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.new-article td{
    color: #d7dbe3;
    background: rgba(20,27,46,.35);
}

.new-article tr:hover td{
    background: rgba(25,172,90,.06);
}

.new-article hr{
    border: 0;
    height: 1px;
    background: rgba(255,255,255,.08);
    margin: 22px 0;
}

.new-article img{
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 992px){
    .new-wrap{ padding: 20px 16px; }
    .new-article{ padding: 26px; }
    .new-article h2{ font-size: 24px; }
}

@media (max-width: 768px){
    .new-wrap{ padding: 14px 12px; }
    .new-article{
        padding: 18px 14px;
        border-radius: 14px;
    }
    .new-article p{ font-size: 15px; }
    .new-article h2{
        font-size: 20px;
        margin-top: 20px;
        padding-bottom: 8px;
    }
    .new-article h3{
        font-size: 17px;
        margin-top: 14px;
    }
    .new-article ul,
    .new-article ol{
        padding-left: 18px;
    }
    .new-article table{
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    .new-article th,
    .new-article td{
        padding: 10px 12px;
    }
}

@media (max-width: 420px){
    .new-article{ padding: 16px 12px; }
    .new-article h2{ font-size: 19px; }
}

:root{
    --hx7-bg:#141b2e;
    --hx7-bg2:#1a2339;
    --hx7-text:#e8e8e8;
    --hx7-muted:#b4b4b4;
    --hx7-accent:#19ac5a;
    --hx7-ghost:#1f2841;
    --hx7-border:rgba(255,255,255,.10);
}

.hx7-header{
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--hx7-bg) 0%, var(--hx7-bg2) 100%);
    box-shadow: 0 10px 28px rgba(0,0,0,.35);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

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

.hx7-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
}

.hx7-left{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

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

.hx7-logo img{
    display: block;
    height: 44px;
    width: auto;
}

.hx7-online{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(25,172,90,.12);
    border: 1px solid rgba(25,172,90,.25);
    color: var(--hx7-accent);
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}

.hx7-dot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--hx7-accent);
    box-shadow: 0 0 0 0 rgba(25,172,90,.45);
    animation: hx7Pulse 1.8s infinite;
}

@keyframes hx7Pulse{
    0%{ box-shadow: 0 0 0 0 rgba(25,172,90,.45); opacity: 1; }
    70%{ box-shadow: 0 0 0 10px rgba(25,172,90,0); opacity: .7; }
    100%{ box-shadow: 0 0 0 0 rgba(25,172,90,0); opacity: 1; }
}

.hx7-menu{
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hx7-link{
    color: var(--hx7-text);
    text-decoration: none;
    font-weight: 650;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 10px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.hx7-link:hover{
    background: rgba(25,172,90,.10);
    color: #ffffff;
}

.hx7-right{
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hx7-actions{
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hx7-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    transition: transform .2s ease, filter .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    user-select: none;
    white-space: nowrap;
}

.hx7-btn--ghost{
    background: var(--hx7-ghost);
    color: var(--hx7-text);
    border: 1px solid rgba(255,255,255,.10);
}

.hx7-btn--ghost:hover{
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 10px 22px rgba(0,0,0,.25);
}

.hx7-btn--primary{
    background: var(--hx7-accent);
    color: #fff;
    border: 1px solid rgba(25,172,90,.35);
    box-shadow: 0 10px 22px rgba(25,172,90,.22);
}

.hx7-btn--primary:hover{
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 14px 30px rgba(25,172,90,.30);
}

.hx7-burger{
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(31,40,65,.35);
    cursor: pointer;
    padding: 10px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
}

.hx7-line{
    width: 22px;
    height: 2px;
    background: var(--hx7-text);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

.hx7-burger.is-open .hx7-line:nth-child(1){
    transform: translateY(7px) rotate(45deg);
}

.hx7-burger.is-open .hx7-line:nth-child(2){
    opacity: 0;
}

.hx7-burger.is-open .hx7-line:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
}

.hx7-lock{
    overflow: hidden;
}

@media (max-width: 992px){

    .hx7-burger{
        display: inline-flex;
    }

    .hx7-menu{
        position: fixed;
        inset: 68px 0 0 0;
        background: rgba(9,15,30,.92);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255,255,255,.06);
        padding: 18px 14px;
        flex-direction: column;
        gap: 8px;
        transform: translateX(100%);
        transition: transform .22s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hx7-menu.is-open{
        transform: translateX(0);
    }

    .hx7-item{
        width: 100%;
    }

    .hx7-link{
        width: 100%;
        justify-content: center;
        padding: 14px 14px;
        border: 1px solid rgba(255,255,255,.08);
        background: rgba(20,27,46,.55);
    }

    .hx7-link:hover{
        background: rgba(25,172,90,.14);
    }
}

@media (max-width: 520px){
    .hx7-online{
        display: none;
    }

    .hx7-logo img{
        height: 40px;
    }

    .hx7-bar{
        gap: 10px;
        padding: 10px 0;
    }
}

html, body { width: 100%; max-width: 100%; overflow-x: hidden; }

.p9x4m-wrapper,
.xj8k2-container,
.hx7-header,
.d7n3k-hero,
.e2r9t-footer,
.u9i3l-section { max-width: 100%; }

img, svg, video, canvas { max-width: 100%; height: auto; }

.a5s7d-mirrors-table,
.p8o3m-winners-table,
.o7k4m-content-area table,
.new-article table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.a5s7d-mirrors-table table,
.p8o3m-winners-table table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
}

.a5s7d-mirrors-table th,
.a5s7d-mirrors-table td,
.p8o3m-winners-table th,
.p8o3m-winners-table td {
    word-break: break-word;
    overflow-wrap: anywhere;
}

@media (max-width: 768px) {
    .xj8k2-container { padding: 0 12px; }

    .d7n3k-hero,
    .u9i3l-section { margin: 16px 12px; }

    .w8q4p-hero-content { padding: 22px 16px; }

    .b6n2x-app-info { grid-template-columns: 1fr; }

    .h3y7m-slots-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .q5w9e-slot-card img { height: 140px; }
}

@media (max-width: 420px) {
    .h3y7m-slots-grid { grid-template-columns: 1fr; }
}
