* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #00fbc8;
    --color-secondary: #ff2e09;
    --color-bg: #323234;
    --color-header: #000000;
    --color-text: #ffffff;
    --color-text-muted: #b0b0b0;
    --font-main: 'PT Sans', sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

body.fixed {
    overflow: hidden;
}

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

.m9d2p-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}


.q4h8n-header {
    background: var(--color-header);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.w2j5k-header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}

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

.p6v9n-nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    justify-content: center;
}

.p6v9n-nav-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.p6v9n-nav-menu a:hover {
    color: var(--color-primary);
}

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

.z3k8m-online-count {
    background: rgba(0, 251, 200, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--color-primary);
    white-space: nowrap;
}

.z3k8m-online-count .pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse-anim 2s infinite;
}

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

.x7b4t-btn {
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-align: center;
}

.x7b4t-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.g9m2k-btn-login {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.g9m2k-btn-login:hover {
    background: var(--color-primary);
    color: #000;
}

.h4p7n-btn-signup {
    background: var(--color-secondary);
    color: var(--color-text);
}

.h4p7n-btn-signup:hover {
    background: #d62507;
}

.f2j8x-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.f2j8x-burger span {
    width: 30px;
    height: 3px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

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

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

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

.s5n9k-hero {
    background: linear-gradient(135deg, #1a1a1c 0%, #323234 100%);
    padding: 80px 0;
    margin: 30px 20px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.s5n9k-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/banner-cas.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

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

.a8t4m-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--color-primary);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.a8t4m-hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.d3k7p-breadcrumbs {
    padding: 20px 0;
    margin: 0 20px;
}

.d3k7p-breadcrumbs ul {
    list-style: none;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.d3k7p-breadcrumbs li {
    display: flex;
    align-items: center;
}

.d3k7p-breadcrumbs li::after {
    content: '›';
    margin-left: 10px;
    color: var(--color-text-muted);
}

.d3k7p-breadcrumbs li:last-child::after {
    display: none;
}

.d3k7p-breadcrumbs a {
    color: var(--color-primary);
    text-decoration: none;
}

.d3k7p-breadcrumbs a:hover {
    text-decoration: underline;
}

.t9x2n-content-block {
    background: #2a2a2c;
    padding: 40px;
    margin: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.t9x2n-content-block h2 {
    color: var(--color-primary);
    font-size: 32px;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--color-primary);
    padding-bottom: 15px;
}

.t9x2n-content-block h3 {
    color: var(--color-text);
    font-size: 24px;
    margin: 20px 0 15px;
}

.t9x2n-content-block p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.t9x2n-content-block ul,
.t9x2n-content-block ol {
    margin: 15px 0;
    padding-left: 30px;
}

.t9x2n-content-block li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.t9x2n-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #1a1a1c;
}

.t9x2n-content-block th,
.t9x2n-content-block td {
    padding: 15px;
    border: 1px solid #444;
    text-align: left;
}

.t9x2n-content-block th {
    background: #000;
    color: var(--color-primary);
    font-weight: 600;
}
.t9x2n-content-block img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.t9x2n-content-block .n4v7x-screenshots img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.t9x2n-content-block .n4v7x-screenshot-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.y5m8k-toc {
    background: #1a1a1c;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--color-primary);
}

.y5m8k-toc h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.y5m8k-toc ol {
    list-style: none;
    counter-reset: toc-counter;
}

.y5m8k-toc li {
    counter-increment: toc-counter;
    margin-bottom: 10px;
}

.y5m8k-toc li::before {
    content: counter(toc-counter) ". ";
    color: var(--color-primary);
    font-weight: 600;
}

.y5m8k-toc a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.y5m8k-toc a:hover {
    color: var(--color-primary);
}

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

.n4v7x-screenshot-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.n4v7x-screenshot-item:hover {
    transform: scale(1.05);
}

.n4v7x-screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

.c8k3p-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
}

.c8k3p-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.b2x9m-bonuses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.b2x9m-bonus-card {
    background: linear-gradient(135deg, #1a1a1c 0%, #2a2a2c 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.b2x9m-bonus-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 251, 200, 0.2);
}

.b2x9m-bonus-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.b2x9m-bonus-card h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 24px;
}

.b2x9m-bonus-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 15px 0;
}

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

.v7n2k-slot-card {
    background: #1a1a1c;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.v7n2k-slot-card:hover {
    border-color: var(--color-secondary);
    transform: scale(1.03);
}

.v7n2k-slot-image {
    width: 100%;
    height: 200px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.v7n2k-slot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v7n2k-slot-info {
    padding: 20px;
    text-align: center;
}

.v7n2k-slot-info h4 {
    color: var(--color-text);
    margin-bottom: 15px;
    font-size: 18px;
}

.j3m8x-faq-item {
    background: #2a2a2c;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #444;
}

.j3m8x-faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    transition: background 0.3s ease;
}

.j3m8x-faq-question:hover {
    background: #323234;
}

.j3m8x-faq-question::after {
    content: '+';
    font-size: 28px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.j3m8x-faq-item.active .j3m8x-faq-question::after {
    transform: rotate(45deg);
}

.j3m8x-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.j3m8x-faq-item.active .j3m8x-faq-answer {
    max-height: 500px;
}

.j3m8x-faq-answer-content {
    padding: 0 20px 20px;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.u6k9p-footer {
    background: var(--color-header);
    padding: 50px 0 20px;
    margin-top: 50px;
}

.u6k9p-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.u6k9p-footer-section h4 {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 20px;
}

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

.u6k9p-footer-links li {
    margin-bottom: 12px;
}

.u6k9p-footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.u6k9p-footer-links a:hover {
    color: var(--color-primary);
}

.e5t8m-payment-methods,
.e5t8m-game-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.e5t8m-payment-methods img,
.e5t8m-game-providers img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.e5t8m-payment-methods img:hover,
.e5t8m-game-providers img:hover {
    opacity: 1;
}

.o3x7k-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: var(--color-text-muted);
    font-size: 14px;
}

.o3x7k-legal-info {
    margin-top: 15px;
    font-size: 12px;
    line-height: 1.6;
}

.i9p4x-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #d62507 100%);
    padding: 15px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    z-index: 999;
    animation: slideUp 0.5s ease;
}

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

.i9p4x-widget-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.i9p4x-widget-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
}

.i9p4x-widget-text a {
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 2px solid var(--color-text);
}

.x5n8p-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.x5n8p-modal.active {
    display: flex;
}

.x5n8p-modal-content {
    background: #1a1a1c;
    border-radius: 20px;
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
    position: relative;
}

.x5n8p-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-secondary);
    color: var(--color-text);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
}

.x5n8p-modal-close:hover {
    transform: rotate(90deg);
    background: #d62507;
}

.x5n8p-modal-iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.x5n8p-modal-actions {
    padding: 20px;
    text-align: center;
    background: #000;
}

/* Author Info */
.q2m7k-author-info {
    background: #1a1a1c;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--color-secondary);
    margin: 30px 0;
}

.q2m7k-author-name {
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.q2m7k-author-bio {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.q2m7k-author-link {
    color: var(--color-primary);
    text-decoration: none;
}

.q2m7k-author-link:hover {
    text-decoration: underline;
}

.g4t9m-swiper {
    position: relative;
    overflow: hidden;
}

.g4t9m-swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.g4t9m-swiper-slide {
    flex-shrink: 0;
    width: 100%;
}

.g4t9m-swiper-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: var(--color-text);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.g4t9m-swiper-nav:hover {
    background: var(--color-primary);
    color: #000;
}

.g4t9m-swiper-prev {
    left: 10px;
}

.g4t9m-swiper-next {
    right: 10px;
}

.unused-z9x4k { display: none; }
.unused-m2p7n { visibility: hidden; }
.unused-k5v8x { opacity: 0; }
.unused-t3h6m { pointer-events: none; }
.wp-block-unused { display: none; }
.elementor-unused { display: none; }
.yoast-unused { display: none; }

.f2j8x-burger {
    display: none;
}

.mobile-nav-actions {
    display: none;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .w2j5k-header-content {
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 10px;
    }

    .l5n2x-header-actions {
        display: none;
    }

    .f2j8x-burger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
        padding: 5px;
    }

    .p6v9n-nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-header);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        display: flex;
        gap: 0;
    }

    .p6v9n-nav-menu.active {
        left: 0;
    }

    .p6v9n-nav-menu li {
        width: 100%;
        margin-bottom: 5px;
    }

    .p6v9n-nav-menu a {
        display: block;
        padding: 12px 0;
        font-size: 18px;
        border-bottom: 1px solid #222;
    }

    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
        padding-top: 25px;
        border-top: 1px solid #333;
        width: 100%;
    }

    .mobile-nav-actions a {
        display: block;
        text-align: center;
        width: 100%;
        border-bottom: none !important;
        padding: 12px 28px !important;
    }

    .a8t4m-hero-content h1 {
        font-size: 32px;
    }

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

    .t9x2n-content-block {
        padding: 25px 15px;
    }

    .i9p4x-widget-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .n4v7x-screenshots,
    .b2x9m-bonuses,
    .v7n2k-slots {
        grid-template-columns: 1fr;
    }

    .mobile-slider .n4v7x-screenshots,
    .mobile-slider .b2x9m-bonuses,
    .mobile-slider .v7n2k-slots {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 15px;
    }

    .mobile-slider .n4v7x-screenshot-item,
    .mobile-slider .b2x9m-bonus-card,
    .mobile-slider .v7n2k-slot-card {
        flex-shrink: 0;
        width: 85%;
        scroll-snap-align: center;
    }
}

@media (max-width: 480px) {
    .x7b4t-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
.p6v9n-nav-menu {
    left: auto;
    right: -100%;
    transition: right 0.3s ease;
}

.p6v9n-nav-menu.active {
    left: auto;
    right: 0;
}

.mobile-nav-actions .g9m2k-btn-login {
    background: transparent !important;
    color: var(--color-primary) !important;
    border: 2px solid var(--color-primary) !important;
}

