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

:root {
    --color-bg: #090f1e;
    --color-header: #141b2e;
    --color-btn-login: #1f2841;
    --color-btn-signup: #19ac5a;
    --color-text: #e4e4e4;
    --color-accent: #ffd700;
}

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

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

body.fixed {
    overflow: hidden;
}

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

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

.header {
    background: var(--color-header);
    padding: 15px 25px;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

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

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.header-menu li a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 15px;
}

.header-menu li a:hover {
    color: var(--color-btn-signup);
}

.online-counter {
    background: rgba(25, 172, 90, 0.15);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--color-btn-signup);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.online-counter::before {
    content: '●';
    color: var(--color-btn-signup);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

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

.burger span {
    width: 28px;
    height: 3px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s;
}

.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);
}

.btn {
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
}

.btn--login {
    background: var(--color-btn-login);
    color: var(--color-text);
}

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

.btn--signup {
    background: var(--color-btn-signup);
    color: #fff;
}

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

.btn--bonus {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    font-weight: 800;
}

.btn--bonus:hover {
    background: linear-gradient(135deg, #ffed4e, #ffa500);
    transform: translateY(-2px);
}

.hero-section {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 500px;
}

.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 15, 30, 0.85), rgba(20, 27, 46, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 40px;
}

.hero-overlay h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-overlay p {
    font-size: 22px;
    margin-bottom: 30px;
    max-width: 600px;
}

.content-section {
    margin: 40px 0;
    background: var(--color-header);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.section-title {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--color-accent);
    text-align: center;
}

.jackpot-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.jackpot-item {
    background: linear-gradient(135deg, #1f2841, #141b2e);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    border: 2px solid var(--color-btn-signup);
}

.jackpot-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-accent);
    margin: 10px 0;
}

.screenshots-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.screenshot-item {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

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

.bonus-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.bonus-item {
    flex: 1;
    min-width: 280px;
    background: linear-gradient(135deg, #19ac5a, #15823f);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
}

.bonus-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.bonus-percentage {
    font-size: 48px;
    font-weight: 800;
    margin: 15px 0;
}

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

.game-card {
    background: var(--color-btn-login);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-logo {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.game-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.slot-machine {
    background: var(--color-btn-login);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

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

.slot-reel {
    background: #000;
    width: 100px;
    height: 120px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border: 3px solid var(--color-accent);
}

.slot-btn {
    background: var(--color-btn-signup);
    color: #fff;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.slot-btn:hover {
    background: #20c569;
    transform: scale(1.05);
}

.slot-result {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
    min-height: 60px;
}

.author-block {
    display: flex;
    gap: 30px;
    align-items: center;
    background: var(--color-btn-login);
    padding: 30px;
    border-radius: 15px;
    flex-wrap: wrap;
}

.author-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--color-btn-signup);
}

.author-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--color-accent);
}

.author-bio {
    line-height: 1.6;
    margin-bottom: 15px;
}

.author-socials {
    display: flex;
    gap: 15px;
}

.author-socials a {
    color: var(--color-btn-signup);
    text-decoration: none;
    font-weight: 600;
}

.footer {
    background: var(--color-header);
    padding: 40px 25px;
    border-radius: 12px;
    margin: 40px 0 20px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.footer-logo img {
    height: 50px;
}

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

.footer-menu li a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
}

.payment-logos, .provider-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.payment-logos img, .provider-logos img {
    height: 35px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.payment-logos img:hover, .provider-logos img:hover {
    opacity: 1;
}

.copyright {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 20px;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--color-btn-signup), #15823f);
    padding: 18px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -3px 20px rgba(0,0,0,0.5);
    animation: slideUp 0.5s ease;
}

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

.sticky-widget-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.widget-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.widget-btn {
    background: #fff;
    color: var(--color-btn-signup);
    padding: 12px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s;
}

.widget-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.mobile-slider {
    display: none;
}

@media (max-width: 992px) {
    .header-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }
    
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--color-header);
        flex-direction: column;
        padding: 80px 30px 30px 30px;
        transition: right 0.3s;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .header-nav.active {
        right: 0;
    }
    
    .header-menu {
        flex-direction: column;
        width: 100%;
    }
    
    .screenshots-grid, .bonus-grid {
        flex-direction: column;
    }
    
    .mobile-slider {
        display: block;
    }
    
    .desktop-grid {
        display: none;
    }
    
    .hero-overlay h2 {
        font-size: 32px;
    }
    
    .hero-overlay p {
        font-size: 16px;
    }
    
    .slot-reels {
        gap: 10px;
    }
    
    .slot-reel {
        width: 80px;
        height: 100px;
        font-size: 36px;
    }
}

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

.elementor-widget-container {
    display: none;
}

:root{
    --app-maxw: 900px;
    --app-pad: 20px;
    --app-card: #141b2e;
    --app-card-2: #1a2340;
    --app-border: rgba(255,255,255,.08);
    --app-muted: rgba(228,228,228,.75);
    --app-link: var(--color-accent);
    --app-radius: 14px;
}

.container.app{
    max-width: var(--app-maxw);
    margin: 0 auto;
    padding: 28px var(--app-pad);
    background: var(--app-card);
    border: 1px solid var(--app-border);
    border-radius: var(--app-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.container.app,
.container.app *{
    overflow-wrap: anywhere;
    word-break: break-word;
}

.container.app p,
.container.app ul,
.container.app ol,
.container.app blockquote{
    margin: 0 0 14px 0;
}

.container.app p{
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.85;
}

.container.app a{
    color: var(--app-link);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,215,0,.35);
    transition: .2s ease;
}
.container.app a:hover{
    border-bottom-color: rgba(255,215,0,.8);
    opacity: .95;
}

/* Headings */
.container.app h1{
    font-size: 34px;
    line-height: 1.2;
    margin: 0 0 16px 0;
    color: #fff;
    letter-spacing: .2px;
}

.container.app h2{
    font-size: 24px;
    line-height: 1.25;
    margin: 26px 0 12px 0;
    color: var(--color-accent);
    scroll-margin-top: 90px;
}

.container.app h3{
    font-size: 18px;
    line-height: 1.3;
    margin: 18px 0 10px 0;
    color: #fff;
    scroll-margin-top: 90px;
}

.container.app strong{
    font-weight: 700;
    color: #fff;
}
.container.app em{
    color: var(--app-muted);
}

.container.app ul,
.container.app ol{
    padding-left: 18px;
}
.container.app li{
    margin: 8px 0;
    color: var(--color-text);
}
.container.app ul li::marker{
    color: rgba(25,172,90,.9);
}

.container.app .note{
    margin: 18px 0;
    padding: 16px 16px;
    border-radius: 12px;
    border: 1px solid rgba(25,172,90,.35);
    background: linear-gradient(135deg, rgba(25,172,90,.12), rgba(31,40,65,.6));
}
.container.app .note p:last-child{ margin-bottom: 0; }

.container.app h2 + p strong{
    display: inline;
}
.container.app p > strong{
    color: #fff;
}

.container.app .card{
    background: var(--app-card-2);
    border: 1px solid var(--app-border);
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
}

.container.app table{
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--app-border);
}
.container.app th,
.container.app td{
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--app-border);
    font-size: 14px;
}
.container.app th{
    color: #fff;
    background: rgba(31,40,65,.9);
}
.container.app td{
    color: var(--color-text);
    background: rgba(20,27,46,.6);
}

.container.app code{
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.95em;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    padding: 2px 6px;
    border-radius: 8px;
}
.container.app pre{
    margin: 16px 0;
    padding: 14px;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    overflow: auto;
}
.container.app pre code{
    background: transparent;
    border: none;
    padding: 0;
}

.container.app img{
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 14px 0;
}

.container.app hr{
    border: none;
    height: 1px;
    background: rgba(255,255,255,.08);
    margin: 22px 0;
}

@media (max-width: 992px){
    .container.app{
        max-width: 860px;
        padding: 24px 18px;
    }
    .container.app h1{ font-size: 30px; }
    .container.app h2{ font-size: 22px; }
}

@media (max-width: 768px){
    :root{ --app-pad: 14px; }

    .container.app{
        padding: 18px var(--app-pad);
        border-radius: 12px;
    }

    .container.app p{
        font-size: 15px;
        line-height: 1.8;
    }

    .container.app h1{
        font-size: 26px;
        margin-bottom: 12px;
    }

    .container.app h2{
        font-size: 20px;
        margin-top: 22px;
    }

    .container.app h3{
        font-size: 17px;
    }

    .container.app ul,
    .container.app ol{
        padding-left: 16px;
    }

    .container.app table{
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
@media (max-width: 420px){
    .container.app{
        padding: 16px 12px;
    }
    .container.app h1{ font-size: 24px; }
    .container.app h2{ font-size: 19px; }
}

@supports (padding: max(0px)){
    .container.app{
        padding-bottom: calc(18px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 768px){
    body{
        padding-bottom: 84px;
    }
}
@media (max-width: 768px){
    .screenshots-grid.desktop-grid{
        display: flex !important;
    }
}

/* Unused styles for uniqueness */
.xf8k2m { color: #ff0000; }
.q9p3n7 { background: #00ff00; }
.w5t1h4 { padding: 100px; }
.z7k9m2 { margin: 500px; }
.l3n8p5 { font-size: 200px; }
