/* Pin-Up Casino Aviator Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-cyan: #00fbc8;
    --color-red: #ff2e09;
    --color-bg: #323234;
    --color-white: #ffffff;
    --color-gray: #666666;
    --color-light-gray: #f5f5f5;
}

body {
    font-family: 'PT Sans', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.k7x3m9q2 {
    min-height: 100vh;
}

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

/* Header Styles */
.header9k2z {
    background-color: var(--color-black);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

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

.logo3x9k {
    display: block;
}

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

.header-nav2k7x {
    display: flex;
    justify-content: center;
}

.nav-list8k3z {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link2k9z {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link2k9z:hover {
    color: var(--color-cyan);
}

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

.online-counter9z2k {
    background: rgba(0, 251, 200, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.counter-icon3m8x {
    font-size: 16px;
}

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

.btn2x9k {
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-login3k7z {
    background-color: var(--color-cyan);
    color: var(--color-black);
}

.btn-login3k7z:hover {
    background-color: #00e6b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 251, 200, 0.4);
}

.btn-signup9m2x {
    background-color: var(--color-red);
    color: var(--color-white);
}

.btn-signup9m2x:hover {
    background-color: #e62800;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 46, 9, 0.4);
}

.btn-sm7k2m {
    padding: 8px 16px;
    font-size: 13px;
}

/* Mobile Navigation */
.mobile-buttons2z8k {
    display: none;
}

.burger-menu5k9z {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-line8k2x {
    width: 25px;
    height: 3px;
    background-color: var(--color-cyan);
    transition: all 0.3s ease;
}

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

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

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

.mobile-nav3z7k {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav3z7k.active {
    max-height: 500px;
    padding: 20px 0;
}

.mobile-nav-list9k2z {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item5x8k {
    margin: 10px 0;
}

.mobile-nav-link7m3x {
    color: var(--color-white);
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px;
    transition: color 0.3s ease;
}

.mobile-nav-link7m3x:hover {
    color: var(--color-cyan);
}

/* Hero Section */
.hero-wr8xn2k1 {
    margin-top: 20px;
}

.hero-bg4k7m2p {
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.hero-bg4k7m2p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(50, 50, 52, 0.5));
}

.hero-content7m2x {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.hero-title3k9p {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text8n2z {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--color-light-gray);
}

.btn-hero9z3p {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 15px 40px;
    font-size: 18px;
}

/* Breadcrumbs */
.breadcrumb5x8m {
    padding: 15px 0;
}

.breadcrumb-list3z7k {
    display: flex;
    list-style: none;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.breadcrumb-item2m9x {
    font-size: 14px;
}

.breadcrumb-item2m9x a {
    color: var(--color-cyan);
    text-decoration: none;
}

.breadcrumb-item2m9x:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: var(--color-gray);
}

.breadcrumb-item2m9x.active8k2n {
    color: var(--color-light-gray);
}

/* Sections */
.main-content7z2k {
    padding: 40px 0;
}

.section-title6z8m {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-white);
    text-align: center;
}

/* Jackpot Section */
.jackpot-section4m7x {
    margin-bottom: 50px;
}

.jackpot-box9k2p {
    background: linear-gradient(135deg, #1a1a1c, #2a2a2c);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.jackpot-card7m2z {
    background: rgba(0, 251, 200, 0.05);
    border: 2px solid var(--color-cyan);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.jackpot-card7m2z:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 251, 200, 0.2);
}

.jackpot-name5k3p {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--color-cyan);
    font-weight: 600;
}

.jackpot-amount8z2x {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
}

/* Screenshots Section */
.screenshots-section2k9m {
    margin-bottom: 50px;
}

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

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

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

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

.mobile-only3z8p {
    display: none;
}

.desktop-only8m2z {
    display: block;
}

/* Screenshots Slider */
.slider-container9m2x {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.slider-track5k7z {
    display: flex;
    transition: transform 0.5s ease;
}

.slide-item3x9m {
    min-width: 100%;
    flex-shrink: 0;
}

.slider-dots8z2k {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

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

.dot4m9x.active {
    background-color: var(--color-cyan);
    transform: scale(1.2);
}

/* App Section */
.app-section6z3m {
    margin-bottom: 50px;
}

.app-info-box2k9z {
    background: linear-gradient(135deg, #2a2a2c, #1a1a1c);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.app-table-wrapper7m3x {
    overflow-x: auto;
    margin-bottom: 30px;
}

.app-table5k8z {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

.app-table5k8z th,
.app-table5k8z td {
    padding: 15px;
    text-align: left;
    border: 2px solid rgba(255,255,255,0.1);
}

.app-table5k8z th {
    background-color: rgba(0, 251, 200, 0.1);
    color: var(--color-cyan);
    font-weight: 700;
}

.app-table5k8z td {
    color: var(--color-white);
}

.app-table5k8z tr:hover {
    background-color: rgba(255,255,255,0.05);
}

.app-downloads3z7k {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-btn2x9k {
    transition: transform 0.3s ease;
}

.app-btn2x9k:hover {
    transform: translateY(-3px);
}

.apk-btn9m2x {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

/* Content Section */
.content-section9z2k {
    margin-bottom: 50px;
}

.content-box7m3x {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.content-box7m3x h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--color-white);
}

.content-box7m3x h2 {
    font-size: 28px;
    margin: 30px 0 20px;
    color: var(--color-cyan);
}

.content-box7m3x h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: var(--color-white);
}

.content-box7m3x p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.content-box7m3x ul, .content-box7m3x ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-box7m3x li {
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.content-box7m3x table th,
.content-box7m3x table td {
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: left;
}

.content-box7m3x table th {
    background-color: rgba(0, 251, 200, 0.1);
    color: var(--color-cyan);
    font-weight: 700;
}

.content-box7m3x a {
    color: var(--color-cyan);
    text-decoration: underline;
}

.content-box7m3x a:hover {
    color: #00e6b8;
}

/* Author Info */
.author-info6k2z {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 251, 200, 0.05);
    border-radius: 15px;
}

.author-avatar3m8x img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--color-cyan);
}

.author-name5k9m {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-cyan);
    margin-bottom: 5px;
}

.author-bio2x7k {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

.author-link8m3z {
    color: var(--color-cyan);
    text-decoration: none;
    font-size: 14px;
}

/* Demo Section */
.demo-section4k8m {
    margin-bottom: 50px;
}

.demo-box9k3z {
    background: #1a1a1c;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.demo-iframe-wrapper2m7x {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}

.demo-iframe5z8k {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.demo-overlay3k9m {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.8);
}

.demo-text7z2x {
    color: var(--color-white);
    font-size: 20px;
}

/* Reviews Section */
.reviews-section8m2k {
    margin-bottom: 50px;
}

.reviews-grid5k7z {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.review-card3x9m {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

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

.review-header2k8z {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar7m2x {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--color-cyan);
}

.review-author5k2m {
    font-weight: 700;
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 5px;
}

.review-rating3x7k {
    color: #ffd700;
    font-size: 18px;
}

.review-text8k9m {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    font-size: 15px;
}

/* Review Form */
.review-form-box4k8z {
    background: linear-gradient(135deg, #2a2a2c, #1a1a1c);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-title7m2x {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--color-cyan);
    text-align: center;
}

.review-form3z9k {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group5k2m {
    display: flex;
    flex-direction: column;
}

.form-label8z3x {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-white);
}

.form-input2k7m,
.form-textarea9k3z {
    padding: 12px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: var(--color-white);
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
}

.form-input2k7m:focus,
.form-textarea9k3z:focus {
    outline: none;
    border-color: var(--color-cyan);
}

.form-submit-btn7m2k {
    padding: 15px 30px;
    background-color: var(--color-red);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn7m2k:hover {
    background-color: #e62800;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 46, 9, 0.4);
}

.form-success-msg3k9z {
    background: rgba(0, 251, 200, 0.1);
    border: 2px solid var(--color-cyan);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: var(--color-cyan);
    font-weight: 600;
    margin-top: 20px;
}


.footer2k9z {
    background-color: var(--color-black);
    padding: 50px 0 30px;
    margin-top: 60px;
}

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

.footer-section5z8k h3 {
    color: var(--color-cyan);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-desc9k2x {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-links7k2m {
    list-style: none;
    padding: 0;
}

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

.footer-link3z9k {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link3z9k:hover {
    color: var(--color-cyan);
}

.footer-support9k7x p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

.footer-logo3x9m {
    display: block;
    margin-bottom: 20px;
}

.footer-logo-img2k7z {
    height: 50px;
    width: auto;
}

.footer-payments3z8m,
.footer-providers2k8z {
    margin-bottom: 30px;
}

.payments-title7k2z,
.providers-title9z3k {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.payment-logos5k9m,
.provider-logos7m2x {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom5k7m {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-legal3z9x {
    margin-bottom: 20px;
}

.copyright-text8k2m,
.license-text7m3k,
.disclaimer-text2k9z {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-links-bottom9k3x {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-link-legal5z7k {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
}

.footer-link-legal5z7k:hover {
    color: var(--color-cyan);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive */
@media (max-width: 991px) {
    .header-wrapper3z7k {
        grid-template-columns: auto 1fr;
    }
    
    .desktop-nav6z9m {
        display: none;
    }
    
    .desktop-btns5z7x {
        display: none;
    }
    
    .mobile-buttons2z8k {
        display: flex;
        gap: 8px;
    }
    
    .burger-menu5k9z {
        display: flex;
    }
    
    .mobile-nav3z7k {
        display: block;
    }
    
    .hero-title3k9p {
        font-size: 32px;
    }
    
    .hero-text8n2z {
        font-size: 18px;
    }
    
    .screenshots-grid5x3k {
        display: none;
    }
    
    .desktop-only8m2z {
        display: none;
    }
    
    .mobile-only3z8p {
        display: block;
    }
    
    .jackpot-grid3x9k {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid5k7z {
        grid-template-columns: 1fr;
    }
    
    .widget-content9z3x {
        flex-direction: column;
        text-align: center;
    }
    
    .widget-text7k2m {
        font-size: 16px;
    }
    
    .footer-wrapper7k3m {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .header-right7k3m {
        flex-wrap: wrap;
    }
    
    .online-counter9z2k {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .hero-bg4k7m2p {
        padding: 60px 20px;
    }
    
    .hero-title3k9p {
        font-size: 24px;
    }
    
    .hero-text8n2z {
        font-size: 16px;
    }
    
    .section-title6z8m {
        font-size: 24px;
    }
    
    .app-downloads3z7k {
        flex-direction: column;
        align-items: center;
    }
    
    .content-box7m3x {
        padding: 25px;
    }
    
    .content-box7m3x h1 {
        font-size: 28px;
    }
}


:root{
    --color-black:#000;
    --color-cyan:#00fbc8;
    --color-red:#ff2e09;
    --color-bg:#323234;
    --color-white:#fff;
    --color-muted:rgba(255,255,255,.78);
    --color-muted2:rgba(255,255,255,.62);
}

.container.xapd{
    max-width:1200px;
    margin:0 auto;
    padding:18px 15px 28px;
    width:100%;
    overflow-x:clip;
}

.container.xapd p{
    color:var(--color-muted);
    line-height:1.9;
    margin:0 0 16px;
}

.container.xapd > p:first-of-type{
    font-size:18px;
}

.container.xapd h1,
.container.xapd h2,
.container.xapd h3,
.container.xapd h4,
.container.xapd h5,
.container.xapd h6{
    color:var(--color-white);
    margin:26px 0 14px;
    line-height:1.25;
    scroll-margin-top:90px;
}

.container.xapd h1{font-size:40px;}
.container.xapd h2{font-size:28px;color:var(--color-cyan);}
.container.xapd h3{font-size:20px;}
.container.xapd h4{font-size:18px;}
.container.xapd h5{font-size:16px;color:var(--color-muted);}
.container.xapd h6{font-size:15px;color:var(--color-muted2);}

.container.xapd a{
    color:var(--color-cyan);
    text-decoration:none;
    border-bottom:1px solid rgba(0,251,200,.35);
}
.container.xapd a:hover{
    border-bottom-color:rgba(0,251,200,.75);
}

.container.xapd ul,
.container.xapd ol{
    margin:14px 0 18px;
    padding-left:22px;
    color:var(--color-muted);
}

.container.xapd li{
    margin:8px 0;
    line-height:1.75;
}

.container.xapd .table-wrap{
    margin:18px 0 24px;
    border-radius:14px;
    background:linear-gradient(135deg, rgba(10,10,12,.92), rgba(26,26,28,.88));
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 10px 30px rgba(0,0,0,.45);
    overflow:hidden;
}

.container.xapd table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    background:transparent;
    color:rgba(255,255,255,.92);
    margin:18px 0 24px;
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.container.xapd table th,
.container.xapd table td{
    padding:14px 14px;
    border-bottom:1px solid rgba(255,255,255,.08);
    vertical-align:top;
}

.container.xapd table th{
    background:linear-gradient(90deg, rgba(0,251,200,.22), rgba(255,46,9,.16));
    color:#fff;
    font-weight:800;
}

.container.xapd table td{
    background:rgba(255,255,255,.03);
    color:rgba(255,255,255,.86);
}

.container.xapd table tr:nth-child(even) td{
    background:rgba(255,255,255,.05);
}

.container.xapd table tr:hover td{
    background:rgba(0,251,200,.07);
}

.container.xapd table td:first-child,
.container.xapd table th:first-child{
    border-right:1px solid rgba(255,255,255,.08);
}

@media (max-width:768px){
    .container.xapd .table-wrap{
        overflow-x:auto;
        overflow-y:hidden;
        -webkit-overflow-scrolling:touch;
        padding:10px;
    }
    .container.xapd .table-wrap > table{
        display:inline-table;
        width:auto;
        min-width:720px;
        margin:0;
        border:0;
        box-shadow:none;
        border-radius:0;
    }
    .container.xapd table th,
    .container.xapd table td{
        padding:12px 12px;
        font-size:14px;
        line-height:1.55;
    }
}

.container.xapd .table-wrap::-webkit-scrollbar{height:10px;}
.container.xapd .table-wrap::-webkit-scrollbar-track{background:rgba(255,255,255,.06);}
.container.xapd .table-wrap::-webkit-scrollbar-thumb{
    background:linear-gradient(90deg, rgba(0,251,200,.55), rgba(255,46,9,.45));
    border-radius:999px;
}

.container.xapd .hero-bg{
    position:relative;
    border-radius:18px;
    overflow:hidden;
    padding:72px 18px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    box-shadow:0 12px 35px rgba(0,0,0,.45);
    margin:10px 0 22px;
}

.container.xapd .hero-bg::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(0,0,0,.72), rgba(50,50,52,.45));
}

.container.xapd .hero-bg > *{
    position:relative;
    z-index:1;
}

@media (max-width:576px){
    .container.xapd{padding:14px 12px 22px;}
    .container.xapd h1{font-size:28px;}
    .container.xapd h2{font-size:22px;}
}


.screenshots-section2k9m{
    margin:32px 0 46px;
}

.screenshots-grid5x3k{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
    align-items:stretch;
}

.screenshot-item9k7p{
    position:relative;
    border-radius:16px;
    overflow:hidden;
    background:linear-gradient(135deg, rgba(0,0,0,.55), rgba(255,255,255,.04));
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 10px 28px rgba(0,0,0,.35);
}

.screenshot-item9k7p::before{
    content:"";
    display:block;
    padding-top:56.25%;
}

.screenshot-img3z9k{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.01);
}

.screenshots-slider7k2m{
    display:none;
}

.slider-container9m2x{
    border-radius:16px;
    overflow:hidden;
    background:linear-gradient(135deg, rgba(0,0,0,.55), rgba(255,255,255,.04));
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 10px 28px rgba(0,0,0,.35);
}

.slider-track5k7z{
    display:flex;
    will-change:transform;
    touch-action:pan-y;
}

.slide-item3x9m{
    position:relative;
    min-width:100%;
    flex:0 0 100%;
}

.slide-item3x9m::before{
    content:"";
    display:block;
    padding-top:56.25%;
}

.slider-dots8z2k{
    display:flex;
    justify-content:center;
    gap:10px;
    padding:14px 12px;
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(8px);
}

.dot4m9x{
    width:10px;
    height:10px;
    border-radius:999px;
    background:rgba(255,255,255,.35);
    border:1px solid rgba(255,255,255,.18);
    cursor:pointer;
    transition:transform .2s ease, background-color .2s ease;
}

.dot4m9x.active{
    background:rgba(0,251,200,.95);
    transform:scale(1.2);
}

@media (max-width: 991px){
    .screenshots-grid5x3k{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 768px){
    .desktop-only8m2z{
        display:none !important;
    }
    .mobile-only3z8p{
        display:block !important;
    }
    .screenshots-slider7k2m{
        display:block;
    }
    .screenshots-section2k9m{
        margin:24px 0 36px;
    }
    .slider-container9m2x{
        border-radius:14px;
    }
    .slider-dots8z2k{
        padding:12px 10px;
        gap:8px;
    }
    .dot4m9x{
        width:9px;
        height:9px;
    }
}

@media (max-width: 420px){
    .slider-container9m2x{
        border-radius:12px;
    }
    .slide-item3x9m::before{
        padding-top:62%;
    }
}

@media (max-width: 767px){
    .demo-section-zx9k4m7p{
        min-height: 100svh;
        display: flex;
        align-items: stretch;
        padding: 0;
    }

    .demo-section-zx9k4m7p > .container-fluid.vh8p3k1x{
        width: 100%;
        display: flex;
        flex-direction: column;
        min-height: 100svh;
        padding: 18px 14px 20px;
    }

    .demo-wrapper-lv8k3m2p{
        flex: 1;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }

    .demo-iframe-container-nz5k2m8p{
        flex: 1;
        width: 100%;
        padding-bottom: 0;
        min-height: 0;
        border-radius: 14px;
    }

    .demo-iframe-qx7k4m9p{
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .demo-px2k8m5t{
        margin-top: 14px;
    }

    .btn-demo-play-kz9m3p7x{
        width: 100%;
        text-align: center;
    }
}


@media (max-width: 767px){
    .demo-iframe-container-nz5k2m8p{
        touch-action: manipulation;
    }

    .demo-iframe-qx7k4m9p{
        pointer-events: auto;
        touch-action: manipulation;
    }

    .demo-overlay-px2k8m5t{
        pointer-events: none;
    }

    .demo-px2k8m5t{
        position: relative;
        z-index: 5;
        pointer-events: auto;
    }
}

.fixed-widget-bottom-zx9k4m2p{
    pointer-events: none;
}

.fixed-widget-bottom-zx9k4m2p *{
    pointer-events: auto;
}


.demo-wrapper-lv8k3m2p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.demo-description-mx7k9p4t {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.demo-iframe-container-nz5k2m8p {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: linear-gradient(145deg, #2d1b5e 0%, #3e2875 100%);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.demo-iframe-qx7k4m9p {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.demo-overlay-px2k8m5t {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    padding: 30px;
}

.btn-demo-play-kz9m3p7x {
    display: inline-block;
    padding: 16px 40px;
    background: var(--color-btn-signup);
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 10px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-demo-play-kz9m3p7x:hover {
    background: #ffe092;
    transform: scale(1.1);
}

.demo-section-zx9k4m7p{
    padding:48px 0;
}

.demo-wrapper-lv8k3m2p{
    max-width:1000px;
    margin:0 auto;
    padding:32px;
    border-radius:18px;
    background:linear-gradient(135deg, rgba(0,0,0,.55), rgba(255,255,255,.05));
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 14px 40px rgba(0,0,0,.35);
}

.demo-description-mx7k9p4t{
    margin:12px auto 22px;
    max-width:760px;
    font-size:18px;
    line-height:1.7;
    color:rgba(255,255,255,.86);
    text-align:center;
}

.demo-px2k8m5t{
    display:flex;
    justify-content:center;
    margin-top:22px;
}

.btn-demo-play-kz9m3p7x{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 28px;
    min-height:48px;
    border-radius:14px;
    text-decoration:none;
    font-weight:800;
    font-size:16px;
    letter-spacing:.2px;
    color:#000;
    background:linear-gradient(135deg, #00fbc8, #00d4aa);
    box-shadow:0 10px 26px rgba(0,251,200,.22);
    transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
    will-change:transform;
}

.btn-demo-play-kz9m3p7x:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 34px rgba(0,251,200,.28);
    filter:saturate(1.05);
}

.btn-demo-play-kz9m3p7x:active{
    transform:translateY(0);
    box-shadow:0 10px 22px rgba(0,251,200,.20);
}

.btn-demo-play-kz9m3p7x:focus-visible{
    outline:3px solid rgba(0,251,200,.55);
    outline-offset:3px;
}

@media (max-width: 768px){
    .demo-section-zx9k4m7p{
        padding:32px 0;
    }
    .demo-wrapper-lv8k3m2p{
        padding:22px;
        border-radius:16px;
    }
    .demo-description-mx7k9p4t{
        font-size:16px;
        margin:10px auto 18px;
    }
    .btn-demo-play-kz9m3p7x{
        width:100%;
        max-width:360px;
        padding:14px 18px;
        border-radius:12px;
    }
}

@media (max-width: 420px){
    .demo-wrapper-lv8k3m2p{
        padding:18px;
        border-radius:14px;
    }
    .btn-demo-play-kz9m3p7x{
        max-width:100%;
        font-size:15px;
    }
}

.unused9k7x { display: none; }
.random3z8m { visibility: hidden; }
.placeholder5k2x { opacity: 0; }
.hidden7m9z { position: absolute; left: -9999px; }
.dummy2k8x { width: 0; height: 0; }
