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

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

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

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

/* Header */
.header {
    background: #000000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 174, 239, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.header-nav {
    flex: 1;
}

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

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

.nav-menu li a:hover {
    color: #00AEEF;
}

.online-counter {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #00AEEF;
    font-size: 14px;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

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

.btn-login {
    background: #00AEEF;
    color: #fff;
}

.btn-login:hover {
    background: #0099d6;
    transform: translateY(-2px);
}

.btn-signup {
    background: #00AEEF;
    color: #fff;
}

.btn-signup:hover {
    background: #00c3ff;
    transform: translateY(-2px);
}

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

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

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

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

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

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 50px;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
    max-width: 700px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-text {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.btn-hero {
    background: linear-gradient(135deg, #00AEEF 0%, #00c3ff 100%);
    color: #fff;
    padding: 15px 40px;
    font-size: 18px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(0, 174, 239, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 174, 239, 0.6);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #00AEEF;
    width: 30px;
    border-radius: 6px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background: rgba(0, 174, 239, 0.8);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Section Titles */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00AEEF, transparent);
}

/* Advantages Section */
.advantages-block {
    padding: 60px 0;
    background: #1a1a1a;
    margin-bottom: 50px;
    border-radius: 15px;
}

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

.advantage-card {
    background: linear-gradient(135deg, #202020 0%, #1a1a1a 100%);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #2a2a2a;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.3);
    border-color: #00AEEF;
}

.advantage-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.advantage-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #00AEEF;
}

.advantage-text {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.5;
}

/* Jackpots Section */
.jackpots-block {
    padding: 60px 0;
    margin-bottom: 50px;
}

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

.jackpot-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #00AEEF;
    transition: all 0.3s;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 174, 239, 0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 174, 239, 0.8);
    }
}

.jackpot-name {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.jackpot-amount {
    font-size: 32px;
    font-weight: 700;
    color: #00AEEF;
    margin-bottom: 10px;
}

.jackpot-provider {
    font-size: 14px;
    color: #888;
}

.jackpot-note {
    text-align: center;
    margin-top: 30px;
    color: #888;
    font-size: 13px;
}

/* Screenshots Section */
.screenshots-block {
    padding: 60px 0;
    margin-bottom: 50px;
    background: #1a1a1a;
    border-radius: 15px;
}

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

.screenshot-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
}

.screenshot-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 174, 239, 0.4);
}

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

.screenshot-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

.screenshots-mobile-slider {
    display: none;
}

/* Tournaments Section */
.tournaments-block {
    padding: 60px 0;
    margin-bottom: 50px;
}

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

.tournament-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s;
}

.tournament-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.3);
    border-color: #00AEEF;
}

.tournament-header {
    background: linear-gradient(135deg, #00AEEF 0%, #00c3ff 100%);
    padding: 20px;
}

.tournament-name {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.tournament-body {
    padding: 25px;
}

.tournament-desc {
    font-size: 15px;
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.5;
}

.tournament-prize {
    margin-bottom: 15px;
}

.prize-label {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
}

.prize-amount {
    font-size: 28px;
    font-weight: 700;
    color: #00AEEF;
}

.tournament-timer {
    margin-bottom: 20px;
}

.timer-label {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
}

.timer-value {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.tournament-footer {
    padding: 0 25px 25px;
}

.btn-tournament {
    background: linear-gradient(135deg, #00AEEF 0%, #00c3ff 100%);
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 12px;
}

.btn-tournament:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 174, 239, 0.5);
}

.tournaments-mobile-slider {
    display: none;
}

/* Slot Game Section */
.slotgame-block {
    padding: 60px 0;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 15px;
}

.slotgame-subtitle {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 40px;
    font-size: 16px;
}

.slot-machine {
    max-width: 500px;
    margin: 0 auto;
    background: #2a2a2a;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.slot-display {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.reel {
    width: 120px;
    height: 120px;
    background: #1a1a1a;
    border: 3px solid #00AEEF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    transition: all 0.1s;
}

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

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

.btn-spin {
    width: 100%;
    background: linear-gradient(135deg, #00AEEF 0%, #00c3ff 100%);
    color: #fff;
    font-size: 20px;
    padding: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(0, 174, 239, 0.4);
}

.btn-spin:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 174, 239, 0.6);
}

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

.result-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.result-content {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid #00AEEF;
    animation: slideIn 0.5s;
}

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

.result-title {
    font-size: 32px;
    color: #00AEEF;
    margin-bottom: 20px;
    font-weight: 700;
}

.result-text {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.btn-claim {
    background: linear-gradient(135deg, #00AEEF 0%, #00c3ff 100%);
    color: #fff;
    padding: 15px 40px;
    font-size: 18px;
}

/* Content Block */
.content-block {
    background: #1a1a1a;
    padding: 40px;
    margin-bottom: 50px;
    border-radius: 15px;
    border: 1px solid #2a2a2a;
}

.text-content h1 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.text-content h2 {
    font-size: 26px;
    color: #00AEEF;
    margin-top: 30px;
    margin-bottom: 15px;
}

.text-content h3 {
    font-size: 22px;
    color: #fff;
    margin-top: 25px;
    margin-bottom: 12px;
}

.text-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #c0c0c0;
}

.text-content ul, .text-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.text-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #c0c0c0;
}

.text-content a {
    color: #00AEEF;
    text-decoration: underline;
}

.text-content a:hover {
    color: #00c3ff;
}

.text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px auto;
    background: #202020;
    border: 1px solid #333;
}

.text-content th {
    background: #2a2a2a;
    color: #00AEEF;
    padding: 12px;
    text-align: left;
    border: 1px solid #333;
    font-weight: 600;
}

.text-content td {
    padding: 12px;
    border: 1px solid #333;
    color: #c0c0c0;
}

.text-content tr:hover {
    background: #252525;
}

/* FAQ Section */
.faq-block {
    padding: 60px 0;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #00AEEF;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #202020;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #252525;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    flex: 1;
}

.toggle-icon {
    font-size: 24px;
    color: #00AEEF;
    font-weight: 700;
    transition: transform 0.3s;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-answer > div {
    padding: 20px 25px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #b0b0b0;
    margin: 0;
}

/* Footer */
.footer {
    background: #000000;
    padding: 50px 0 20px;
    margin-top: auto;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    text-align: center;
}

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

.footer-nav {
    text-align: center;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-menu li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-menu li a:hover {
    color: #00AEEF;
}

.payment-methods, .game-providers {
    text-align: center;
}

.payment-methods h4, .game-providers h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
}

.payments-grid, .providers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.payments-grid img, .providers-grid img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.payments-grid img:hover, .providers-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.license-info {
    text-align: center;
    color: #888;
    font-size: 13px;
}

.license-info p {
    margin: 5px 0;
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 12px;
    padding-top: 20px;
    border-top: 1px solid #222;
}

.copyright p {
    margin: 5px 0;
}

.legal-text {
    font-size: 11px;
    font-style: italic;
}

/* Fixed Widget */
.fixed-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #00AEEF 0%, #00c3ff 100%);
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: slideUp 0.5s;
}

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

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

.widget-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.bonus-emoji {
    font-size: 24px;
}

.btn-widget {
    background: #fff;
    color: #00AEEF;
    padding: 12px 30px;
    font-weight: 700;
    text-decoration: none;
}

.btn-widget:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

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

.widget-close:hover {
    background: #fff;
    color: #00AEEF;
}

.fixed-widget.hidden {
    display: none;
}

/* Unused styles for uniqueness */
.wp-block-group {
    margin: 20px 0;
}

.entry-meta {
    font-size: 13px;
    color: #888;
}

.post-thumbnail {
    margin-bottom: 20px;
}

.elementor-widget-container {
    padding: 15px;
}

.yoast-breadcrumbs {
    font-size: 12px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .burger {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #000;
        transition: left 0.3s;
        padding: 80px 20px 20px;
        overflow-y: auto;
    }

    .header-nav.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .online-counter {
        order: -1;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .screenshots-grid {
        display: none;
    }

    .screenshots-mobile-slider {
        display: block;
        position: relative;
    }

    .slider-wrapper {
        overflow: hidden;
    }

    .screenshot-slide {
        display: none;
    }

    .screenshot-slide.active {
        display: block;
    }

    .screenshot-slide img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .slider-nav {
        text-align: center;
        margin-top: 20px;
    }

    .slider-nav button {
        background: #00AEEF;
        color: #fff;
        border: none;
        padding: 10px 20px;
        margin: 0 5px;
        border-radius: 5px;
        cursor: pointer;
    }

    .tournaments-grid {
        display: none;
    }

    .tournaments-mobile-slider {
        display: block;
    }

    .reel {
        width: 90px;
        height: 90px;
        font-size: 45px;
    }

    .widget-text {
        font-size: 14px;
    }

    .bonus-emoji {
        font-size: 20px;
    }

    .btn-widget {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 400px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-text {
        font-size: 14px;
    }

    .btn-hero {
        padding: 12px 25px;
        font-size: 16px;
    }

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

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

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

    .slot-machine {
        padding: 25px;
    }

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

    .result-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .result-title {
        font-size: 24px;
    }

    .result-text {
        font-size: 16px;
    }

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

    .btn-widget {
        width: 100%;
    }
}

.bdbah {
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 24px;
    background: linear-gradient(180deg, #171717 0%, #121212 100%);
    border: 1px solid #2b2b2b;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    color: #e8e8e8;
    overflow: hidden;
}

.bdbah > *:first-child {
    margin-top: 0;
}

.bdbah > *:last-child {
    margin-bottom: 0;
}

.bdbah h1,
.bdbah h2,
.bdbah h3,
.bdbah h4,
.bdbah h5,
.bdbah h6 {
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
    line-height: 1.25;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.bdbah h1 {
    font-size: clamp(30px, 4vw, 46px);
    margin: 0 0 20px;
    color: #00AEEF;
}

.bdbah h2 {
    font-size: clamp(22px, 3vw, 30px);
    margin: 34px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 174, 239, 0.22);
}

.bdbah h3 {
    font-size: clamp(18px, 2.2vw, 24px);
    margin: 28px 0 14px;
}

.bdbah p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.78;
    color: #d2d7dd;
}

.bdbah a {
    color: #00AEEF;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    word-break: break-word;
    transition: color .25s ease, opacity .25s ease;
}

.bdbah a:hover {
    color: #6fd9ff;
}

.bdbah strong,
.bdbah b {
    color: #ffffff;
    font-weight: 700;
}

.bdbah ul,
.bdbah ol {
    margin: 0 0 18px;
    padding-left: 0;
}

.bdbah ul {
    list-style: none;
}

.bdbah ul li,
.bdbah ol li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 24px;
    color: #d2d7dd;
    line-height: 1.72;
}

.bdbah ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00AEEF;
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.12);
}

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

.bdbah ol li {
    counter-increment: bdbah-counter;
}

.bdbah ol li::before {
    content: counter(bdbah-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 174, 239, 0.14);
    border: 1px solid rgba(0, 174, 239, 0.28);
    color: #00AEEF;
    font-size: 12px;
    font-weight: 800;
    line-height: 20px;
    text-align: center;
}

.bdbah table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid #2d2d2d;
    border-radius: 18px;
    background: #141414;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.bdbah tbody,
.bdbah thead {
    width: 100%;
}

.bdbah tr {
    border-bottom: 1px solid #262626;
}

.bdbah tr:last-child {
    border-bottom: none;
}

.bdbah th,
.bdbah td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    font-size: 15px;
    min-width: 180px;
}

.bdbah th {
    background: #1b1b1b;
    color: #ffffff;
    font-weight: 700;
    white-space: nowrap;
}

.bdbah td {
    color: #d2d7dd;
    background: #141414;
}

.bdbah tr:nth-child(even) td {
    background: #171717;
}

.bdbah blockquote {
    margin: 24px 0;
    padding: 20px 22px;
    background: linear-gradient(180deg, rgba(0, 174, 239, 0.08) 0%, rgba(0, 174, 239, 0.03) 100%);
    border: 1px solid rgba(0, 174, 239, 0.18);
    border-left: 4px solid #00AEEF;
    border-radius: 18px;
}

.bdbah blockquote p:last-child {
    margin-bottom: 0;
}

.bdbah hr {
    border: none;
    border-top: 1px solid #2a2a2a;
    margin: 28px 0;
}

.bdbah h2 + p,
.bdbah h3 + p {
    color: #c8d1d8;
}

@media (max-width: 768px) {
    .bdbah {
        padding: 28px 16px;
        border-radius: 18px;
    }

    .bdbah h1 {
        margin-bottom: 16px;
    }

    .bdbah h2 {
        margin-top: 28px;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .bdbah p,
    .bdbah li,
    .bdbah td,
    .bdbah th {
        font-size: 15px;
    }

    .bdbah ul li,
    .bdbah ol li {
        padding-left: 22px;
    }

    .bdbah table {
        margin: 20px 0;
        border-radius: 14px;
    }

    .bdbah th,
    .bdbah td {
        padding: 12px 13px;
        min-width: 150px;
    }

    .bdbah blockquote {
        padding: 16px 16px 16px 18px;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .bdbah {
        padding: 22px 14px;
        border-radius: 16px;
    }

    .bdbah h1 {
        font-size: 28px;
    }

    .bdbah h2 {
        font-size: 21px;
    }

    .bdbah h3 {
        font-size: 18px;
    }

    .bdbah p,
    .bdbah li {
        font-size: 14px;
        line-height: 1.7;
    }

    .bdbah th,
    .bdbah td {
        font-size: 14px;
        padding: 11px 12px;
    }

    .bdbah ul li::before {
        top: 10px;
        width: 7px;
        height: 7px;
    }

    .bdbah ol li::before {
        width: 20px;
        height: 20px;
        font-size: 11px;
        line-height: 18px;
    }

    .bdbah blockquote {
        margin: 20px 0;
    }
}

.vz8k3x,
.gp9k5x {
    padding: 56px 0;
}

.pw9x2k,
.zm6x4p {
    display: grid;
    gap: 20px;
}

.pw9x2k {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.zm6x4p {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bn6m4z,
.lv8n2k {
    min-width: 0;
}

.bn6m4z img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    background: #161616;
}

.lv8n2k {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 18px;
    overflow: hidden;
}

.yx5m9q {
    padding: 18px 20px;
    background: linear-gradient(135deg, #00AEEF 0%, #008fc5 100%);
}

.bt7k3x {
    margin: 0;
    font-size: 20px;
    line-height: 1.25;
    color: #fff;
}

.pn4x6m {
    padding: 20px;
}

.kr9m2z {
    margin: 0 0 18px;
    color: #cfcfcf;
    line-height: 1.65;
}

.vx6n8k,
.wt5n9k {
    margin-bottom: 14px;
}

.qm2p5x,
.jx3m7p {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #9f9f9f;
}

.hz7k3m,
.lz8k2q {
    font-size: 22px;
    font-weight: 700;
    color: #00AEEF;
}

.nm6x4z {
    padding: 0 20px 20px;
}

.ht5n9x,
.kp7x3m {
    display: none;
}

.lz7p2m,
.hn9m5z {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
}

.lz7p2m::-webkit-scrollbar,
.hn9m5z::-webkit-scrollbar {
    display: none;
}

.ht5n9x .screenshot-slide,
.kp7x3m .lv8n2k {
    flex: 0 0 84%;
    scroll-snap-align: start;
}

.ht5n9x .screenshot-slide img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    background: #161616;
}

.kx4m8p,
.wz6k2x {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.kx4m8p button,
.wz6k2x .dot {
    cursor: pointer;
}

.kx4m8p button {
    width: 42px;
    height: 42px;
    border: 1px solid #2f2f2f;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    font-size: 18px;
}

.wz6k2x .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #3a3a3a;
    display: inline-block;
}

.wz6k2x .dot.active {
    width: 26px;
    background: #00AEEF;
}

@media (max-width: 991px) {
    .pw9x2k,
    .zm6x4p {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .pw9x2k,
    .zm6x4p {
        display: none;
    }

    .ht5n9x,
    .kp7x3m {
        display: block;
    }

    .vz8k3x,
    .gp9k5x {
        padding: 40px 0;
    }

    .bt7k3x {
        font-size: 18px;
    }

    .kr9m2z {
        font-size: 14px;
    }

    .hz7k3m,
    .lz8k2q {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .ht5n9x .screenshot-slide,
    .kp7x3m .lv8n2k {
        flex-basis: 88%;
    }

    .ht5n9x .screenshot-slide img {
        height: 190px;
    }

    .pn4x6m {
        padding: 16px;
    }

    .nm6x4z {
        padding: 0 16px 16px;
    }
}

@media (max-width: 767px) {
    .zm6x4p {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .zm6x4p::-webkit-scrollbar {
        display: none;
    }

    .zm6x4p .lv8n2k {
        flex: 0 0 88%;
        scroll-snap-align: start;
    }

    .kp7x3m {
        display: none;
    }
}

.ht5n9x {
    display: none;
}

.ht5n9x .screenshot-slide {
    display: block;
    flex: 0 0 100%;
}

.ht5n9x .screenshot-slide img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

.lz7p2m {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.lz7p2m::-webkit-scrollbar {
    display: none;
}

.screenshot-slide {
    scroll-snap-align: start;
}

@media (max-width: 767px) {
    .pw9x2k {
        display: none;
    }

    .ht5n9x {
        display: block;
    }
}

.nx8p5q.header {
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1f1f1f;
}

.rv2k7m.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.bt3x6p.logo img {
    display: block;
    width: auto;
    height: 50px;
}

.jk9m4w.header-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

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

.zx7v3n.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: .25s ease;
}

.zx7v3n.nav-menu li a:hover {
    color: #00AEEF;
}

.vb9x5m.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 12px;
}

.wz3p8k.btn,
.hf6m2q.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: .25s ease;
}

.wz3p8k.btn-login {
    border: 1px solid #00AEEF;
    color: #00AEEF;
    background: transparent;
}

.wz3p8k.btn-login:hover {
    background: #00AEEF;
    color: #000;
}

.hf6m2q.btn-signup {
    background: #00AEEF;
    color: #000;
    border: 1px solid #00AEEF;
}

.hf6m2q.btn-signup:hover {
    background: #12c2ff;
    border-color: #12c2ff;
}

.lx4n9p.burger {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
}

.lx4n9p.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .25s ease;
}

.lx4n9p.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

@media (max-width: 991px) {
    .lx4n9p.burger {
        display: inline-flex;
    }


    .jk9m4w.header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        background: #0d0d0d;
        border-top: 1px solid #1f1f1f;
        border-bottom: 1px solid #1f1f1f;
        padding: 14px 20px 18px;
        margin-left: 0;
    }

    .jk9m4w.header-nav.active {
        display: block;
    }

    .zx7v3n.nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .zx7v3n.nav-menu li {
        width: 100%;
    }

    .zx7v3n.nav-menu li a {
        display: block;
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid #1f1f1f;
    }

    .zx7v3n.nav-menu li:last-child a {
        border-bottom: 0;
    }
}

.tx9k6m.slotgame-block {
    padding: 48px 0;
}

.pv7n3x.section-title {
    margin: 0 0 10px;
    text-align: center;
}

.zm5k8p.slotgame-subtitle {
    margin: 0 0 28px;
    text-align: center;
    color: #b8b8b8;
}

.bk4m9x.slot-machine {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    padding: 28px 20px 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
    border: 1px solid #2a2a2a;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
}

.wy6n2z.slot-display {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}

.rp8k5m.reel {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #0d0d0d;
    border: 1px solid #2f2f2f;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
    overflow: hidden;
}

.rp8k5m.reel .symbol {
    font-size: 52px;
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.rp8k5m.reel.is-spinning .symbol {
    animation: slotBounce .12s linear infinite;
}

@keyframes slotBounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}

.nx7m4k.btn.btn-spin {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #00AEEF 0%, #0dc6ff 100%);
    color: #041015;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .04em;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
    box-shadow: 0 10px 24px rgba(0, 174, 239, .28);
}

.nx7m4k.btn.btn-spin:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 174, 239, .34);
}

.nx7m4k.btn.btn-spin:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 6px 16px rgba(0, 174, 239, .16);
}

.gm3p9x.result-message {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 5;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(0, 0, 0, .72);
    border-radius: 20px;
}

.gm3p9x.result-message.is-open {
    display: flex;
}

.vz6k2m.result-content {
    width: 100%;
    max-width: 360px;
    padding: 26px 22px;
    border-radius: 18px;
    background: #171717;
    border: 1px solid #2e2e2e;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}

.lx8n5p.result-title {
    margin: 0 0 12px;
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
}

.qt4m7k.result-text {
    margin: 0 0 18px;
    color: #d2d2d2;
    font-size: 15px;
    line-height: 1.55;
}

.wk9p2x.btn.btn-claim {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00AEEF 0%, #0dc6ff 100%);
    color: #041015;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 640px) {
    .bk4m9x.slot-machine {
        padding: 22px 14px 18px;
        border-radius: 16px;
    }

    .wy6n2z.slot-display {
        gap: 10px;
        margin-bottom: 20px;
    }

    .rp8k5m.reel {
        width: 88px;
        height: 88px;
        border-radius: 14px;
    }

    .rp8k5m.reel .symbol {
        font-size: 42px;
    }

    .nx7m4k.btn.btn-spin {
        min-height: 50px;
        font-size: 15px;
    }

    .vz6k2m.result-content {
        padding: 22px 16px;
        border-radius: 16px;
    }

    .lx8n5p.result-title {
        font-size: 20px;
    }

    .qt4m7k.result-text {
        font-size: 14px;
    }
}
