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

:root {
    --color-black: #000000;
    --color-login: #00fbc8;
    --color-signup: #ff2e09;
    --color-bg: #323234;
    --color-text: #ffffff;
    --color-text-secondary: #cccccc;
    --font-main: 'PT Sans', sans-serif;
}

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

.qw8p3.main-wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
}

.gh5kl.site-header {
    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);
}

.pq3nx.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.tx9vm.logo-link {
    display: block;
}

.hs6fd.logo-img {
    height: auto;
    max-width: 100%;
}

.jy4mt.desktop-nav {
    display: block;
}

.bz7kq.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.fj3bn.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.fj3bn.nav-link:hover {
    color: var(--color-login);
}

.nv2kx.online-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
}

.mc5br.counter-text {
    font-size: 14px;
    color: var(--color-text-secondary);
}

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

.zx4pk.btn-login,
.zx4pk.btn-login-mobile {
    background-color: var(--color-login);
    color: var(--color-black);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.zx4pk.btn-login:hover,
.zx4pk.btn-login-mobile:hover {
    background-color: #00d9b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 251, 200, 0.3);
}

.lm9wq.btn-signup,
.lm9wq.btn-signup-mobile {
    background-color: var(--color-signup);
    color: var(--color-text);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.lm9wq.btn-signup:hover,
.lm9wq.btn-signup-mobile:hover {
    background-color: #e02808;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 46, 9, 0.3);
}

.mobile-buttons-top {
    display: none;
}

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

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

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

.qf7ns.burger-menu.active .hj3bp.burger-line:nth-child(2) {
    opacity: 0;
}

.qf7ns.burger-menu.active .hj3bp.burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

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

.sb9kx.mobile-nav.active {
    max-height: 400px;
    margin-top: 15px;
}

.vn4pr.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pw6jd.mobile-nav-link {
    color: var(--color-text);
    text-decoration: none;
    padding: 12px 15px;
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: background 0.3s;
}

.pw6jd.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.xv7bp.hero-section {
    background: linear-gradient(135deg, #1a1a1c 0%, #2d2d2f 100%);
    background-image: url('/banner-p.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    position: relative;
}

.xv7bp.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.kd9pm.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hf3nx.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.ct8jr.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--color-login);
}

.pb2vx.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.wn4km.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.qx7mt.feature-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.fr9np.feature-text {
    font-size: 16px;
    color: var(--color-text);
}

.ms6fv.hero-btn {
    display: inline-block;
    background-color: var(--color-signup);
    color: var(--color-text);
    padding: 18px 48px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255, 46, 9, 0.4);
}

.ms6fv.hero-btn:hover {
    background-color: #e02808;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 46, 9, 0.6);
}

.zt5mx.container-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.dv4nx.app-section,
.vk4nx.bonuses-section,
.mk7nx.games-section,
.pk7nx.demo-section,
.gm7nx.minigame-section,
.tv7nx.reviews-section,
.fw7nx.faq-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 30px;
    margin-bottom: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.km3vr.section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: var(--color-text);
}

.tn9ks.section-desc {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-text-secondary);
}

.hx6pd.app-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.wp9mx.app-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
}

.wp9mx.app-table thead {
    background: rgba(0, 251, 200, 0.1);
}

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

.wp9mx.app-table th {
    font-weight: bold;
    color: var(--color-login);
}

.wp9mx.app-table td {
    color: var(--color-text-secondary);
}

.ft7vk.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jm5nx.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    gap: 12px;
}

.jm5nx.download-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.jm5nx.download-btn img {
    max-width: 100%;
    height: auto;
}

.yn8ck.download-icon {
    font-size: 28px;
}

.lp3vd.download-text {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-text);
}


.qj8md.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.xp5kw.bonus-card {
    background: linear-gradient(135deg, rgba(0, 251, 200, 0.1) 0%, rgba(255, 46, 9, 0.1) 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.xp5kw.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 251, 200, 0.2);
}

.zm4nr.bonus-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.bn7vk.bonus-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--color-text);
}

.fc9xt.bonus-amount {
    font-size: 42px;
    font-weight: bold;
    color: var(--color-login);
    margin-bottom: 15px;
}

.th2pk.bonus-desc {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 25px;
    line-height: 1.5;
}

.vj6mn.bonus-btn {
    display: inline-block;
    background-color: var(--color-signup);
    color: var(--color-text);
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.vj6mn.bonus-btn:hover {
    background-color: #e02808;
    transform: translateY(-2px);
}

.cp9kx.bonuses-slider {
    display: none;
}

.fy8md.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}

.wv5kn.game-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wv5kn.game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 251, 200, 0.2);
    border-color: var(--color-login);
}

.xz2pr.game-logo {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.xz2pr.game-logo img {
    width: 100%;
    height: auto;
}

.gn4vk.game-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--color-text);
}

.jh9tp.game-provider {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 15px;
}

.kp6mn.game-btn {
    display: inline-block;
    background-color: var(--color-login);
    color: var(--color-black);
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s;
}

.kp6mn.game-btn:hover {
    background-color: #00d9b0;
    transform: translateY(-2px);
}

.hb9kx.games-slider {
    display: none;
}

.bx8md.demo-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.dn4kv.demo-frame-container {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.mw9px.demo-iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.rt6hp.demo-info {
    padding: 20px;
}

.yf3nk.demo-game-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--color-text);
}

.km7vr.demo-game-provider {
    font-size: 16px;
    color: var(--color-login);
    margin-bottom: 20px;
}

.ln8xt.demo-game-desc {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.jv6mn.demo-play-btn {
    display: inline-block;
    background-color: var(--color-signup);
    color: var(--color-text);
    padding: 14px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
}

.jv6mn.demo-play-btn:hover {
    background-color: #e02808;
    transform: translateY(-2px);
}

.wz8md.minigame-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.hp4kv.slot-machine {
    background: linear-gradient(135deg, #1a1a1c 0%, #2d2d2f 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    position: relative;
}

.ny9pr.slot-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.vm3xt.reel {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    border: 3px solid var(--color-login);
    box-shadow: inset 0 0 20px rgba(0, 251, 200, 0.2);
}

.vm3xt.reel.spinning {
    animation: spin 0.5s ease-in-out;
}

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

.dx7kn.symbol {
    font-size: 72px;
}

.fm6kx.spin-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--color-signup) 0%, #ff5722 100%);
    color: var(--color-text);
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255, 46, 9, 0.4);
}

.fm6kx.spin-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 46, 9, 0.6);
}

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

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

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

.bn5xk.result-content {
    background: linear-gradient(135deg, #2d2d2f 0%, #1a1a1c 100%);
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
    border: 2px solid var(--color-login);
}

.yt8px.result-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 0.6s;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.jm4vk.result-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--color-login);
    margin-bottom: 15px;
}

.hn7xt.result-text {
    font-size: 20px;
    color: var(--color-text);
    margin-bottom: 30px;
}

.xp6mn.claim-btn {
    display: inline-block;
    background-color: var(--color-signup);
    color: var(--color-text);
    padding: 14px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.xp6mn.claim-btn:hover {
    background-color: #e02808;
    transform: translateY(-2px);
}

.lv3nt.close-result {
    display: block;
    width: 100%;
    background: transparent;
    border: 2px solid var(--color-text-secondary);
    color: var(--color-text);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.lv3nt.close-result:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mt6hp.minigame-info {
    padding: 20px;
}

.df3nk.minigame-subtitle {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--color-text);
}

.pw7vr.minigame-rules {
    list-style: none;
    counter-reset: rules;
    padding-left: 0;
}

.pw7vr.minigame-rules li {
    counter-increment: rules;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.pw7vr.minigame-rules li::before {
    content: counter(rules);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--color-login);
    color: var(--color-black);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.lp9vr.content-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 30px;
    margin-bottom: 30px;
    border-radius: 16px;
}

.uk2md.content-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.nf7ht.main-heading {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--color-text);
    text-align: center;
}

.rh4jk.content-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.xj92k.content-wrapper h2,
.rh4jk.content-text h2 {
    font-size: 30px;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--color-text);
}

.xj92k.content-wrapper h3,
.rh4jk.content-text h3 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--color-login);
}

.xj92k.content-wrapper p,
.rh4jk.content-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.xj92k.content-wrapper ul,
.rh4jk.content-text ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.xj92k.content-wrapper ul li,
.rh4jk.content-text ul li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.xj92k.content-wrapper table,
.rh4jk.content-text table {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
}

.xj92k.content-wrapper table th,
.rh4jk.content-text table th {
    background: rgba(0, 251, 200, 0.1);
    padding: 15px 20px;
    text-align: left;
    font-weight: bold;
    color: var(--color-login);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.xj92k.content-wrapper table td,
.rh4jk.content-text table td {
    padding: 15px 20px;
    text-align: left;
    color: var(--color-text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.xj92k.content-wrapper strong,
.rh4jk.content-text strong {
    color: var(--color-text);
    font-weight: bold;
}


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

.nx5kw.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.nx5kw.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.ym4pr.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.kz7vx.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.bn9vk.review-author {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-text);
    display: block;
    margin-bottom: 5px;
}

.xw6tp.review-rating {
    display: flex;
    gap: 3px;
}

.gm2kx.star {
    color: #ffd700;
    font-size: 16px;
}

.gm2kx.star.empty {
    color: rgba(255, 255, 255, 0.2);
}

.dn8xt.review-text {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}


.yv9kx.review-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 12px;
}

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

.ck5vn.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hn4tp.form-label {
    font-size: 16px;
    font-weight: bold;
    color: var(--color-text);
}

.bx9kv.form-input,
.wx6kn.form-textarea {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--color-text);
    font-size: 15px;
    font-family: var(--font-main);
    transition: all 0.3s;
}

.bx9kv.form-input:focus,
.wx6kn.form-textarea:focus {
    outline: none;
    border-color: var(--color-login);
    box-shadow: 0 0 0 3px rgba(0, 251, 200, 0.1);
}

.pm8vk.form-submit {
    padding: 14px 32px;
    background-color: var(--color-signup);
    color: var(--color-text);
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.pm8vk.form-submit:hover {
    background-color: #e02808;
    transform: translateY(-2px);
}

.gn4xt.form-success {
    text-align: center;
    padding: 40px;
}

.vm7kp.success-icon {
    font-size: 64px;
    color: #4caf50;
    margin-bottom: 20px;
}

.yn3vk.success-text {
    font-size: 18px;
    color: var(--color-text);
}


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

.mn5kw.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--color-login);
}

.tn4pr.faq-question {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-text);
    margin-bottom: 12px;
}

.hk9xt.faq-answer p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}


.rw7nx.site-footer {
    background-color: var(--color-black);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.mk3pm.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.yp8md.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.hn5kw.footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vm9xt.footer-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.dn6vk.footer-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-text);
    margin-bottom: 10px;
}

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

.tm4nx.menu-item {
    margin-bottom: 10px;
}

.pz8vk.menu-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.pz8vk.menu-link:hover {
    color: var(--color-login);
}

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

.fn3vx.contact-item {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.xm9kp.payment-providers,
.xm9kp.game-providers {
    margin-bottom: 30px;
}

.hn6vk.providers-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-text);
    margin-bottom: 20px;
    text-align: center;
}

.bw8pr.providers-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.jx4vn.provider-logo {
    max-height: 40px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.jx4vn.provider-logo:hover {
    opacity: 1;
}

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

.yw9vx.legal-text {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.yw9vx.legal-text.disclaimer {
    color: #ffa726;
    font-weight: bold;
    margin-top: 15px;
}

.hm5vx.author-info {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nx7kp.author-text {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.qw4vn.author-link {
    color: var(--color-login);
    text-decoration: none;
    transition: color 0.3s;
}

.qw4vn.author-link:hover {
    color: #00d9b0;
    text-decoration: underline;
}

.nx7kp.author-bio {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.pw9nx.fixed-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1500;
    background: linear-gradient(135deg, var(--color-signup) 0%, #ff5722 100%);
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(255, 46, 9, 0.5);
    animation: slideUp 0.5s ease-out;
}

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

.km7vx.widget-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.yx3kp.widget-icon {
    font-size: 32px;
}

.bn4vr.widget-text {
    display: flex;
    flex-direction: column;
}

.hm8kx.widget-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.dw5vn.widget-bonus {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-text);
}

.fn6mp.widget-btn {
    background-color: var(--color-text);
    color: var(--color-signup);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    white-space: nowrap;
}

.fn6mp.widget-btn:hover {
    background-color: var(--color-login);
    color: var(--color-black);
    transform: scale(1.05);
}

.zv4kx.widget-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    line-height: 1;
    padding: 0;
    width: 24px;
    height: 24px;
}

.zv4kx.widget-close:hover {
    opacity: 1;
}

.container.dks{
    padding-top:24px;
    padding-bottom:40px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.10);
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-1);
}

.container.dks > p,
.container.dks > h2,
.container.dks > h3,
.container.dks > ul{
    padding-left:26px;
    padding-right:26px;
}

.container.dks > p:first-child{
    padding-top:26px;
    font-size:18px;
    color:rgba(255,255,255,.9);
}

.container.dks p{margin:0 0 18px;color:rgba(255,255,255,.86)}
.container.dks a{color:var(--color-login);text-decoration:none;font-weight:600}
.container.dks a:hover{color:#00d9b0;text-decoration:underline}

.container.dks h2{
    margin:34px 0 14px;
    font-size:30px;
    line-height:1.2;
    color:#fff;
    padding-bottom:12px;
    border-bottom:1px solid rgba(255,255,255,.10);
}

.container.dks h3{
    margin:22px 0 12px;
    font-size:22px;
    line-height:1.25;
    color:rgba(255,255,255,.92);
}

.container.dks ul{
    margin:14px 0 22px;
    padding:16px 18px 16px 36px;
    background:rgba(0,0,0,.18);
    border:1px solid rgba(255,255,255,.10);
    border-radius:var(--radius-md);
    box-shadow:0 10px 26px rgba(0,0,0,.22);
}
.container.dks li{margin:0 0 10px;color:rgba(255,255,255,.86)}

.container.dks blockquote{
    margin:18px 26px;
    padding:16px 18px;
    background:rgba(0,0,0,.22);
    border-left:3px solid rgba(255,255,255,.18);
    border-radius:12px;
    color:rgba(255,255,255,.9);
}

.container.dks table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    margin:22px 0 26px;
    overflow:hidden;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.10);
    background:rgba(0,0,0,.18);
}
.container.dks th,
.container.dks td{
    padding:14px 16px;
    border-bottom:1px solid rgba(255,255,255,.08);
    border-right:1px solid rgba(255,255,255,.06);
    text-align:left;
}
.container.dks th{
    color:rgba(255,255,255,.92);
    background:rgba(255,255,255,.05);
    font-weight:700;
}
.container.dks tr:last-child td{border-bottom:none}
.container.dks td:last-child,
.container.dks th:last-child{border-right:none}

.container.dks hr{
    border:none;
    height:1px;
    background:rgba(255,255,255,.10);
    margin:24px 26px;
}

.container.dks p:last-child{
    font-size:16px;
    color:rgba(255,255,255,.75);
    padding-bottom:26px;
}

@media (max-width: 992px){
    .container.dks h2{font-size:26px}
    .container.dks > p:first-child{font-size:17px}
}

@media (max-width: 768px){
    .container{padding:0 14px}
    .container.dks{border-radius:14px;padding-top:18px;padding-bottom:26px}
    .container.dks > p,
    .container.dks > h2,
    .container.dks > h3,
    .container.dks > ul{padding-left:16px;padding-right:16px}
    .container.dks > p:first-child{padding-top:18px}
    .container.dks h2{font-size:22px;margin:26px 0 12px;padding-bottom:10px}
    .container.dks h3{font-size:18px;margin:18px 0 10px}
    .container.dks p{font-size:15px}
    .container.dks ul{padding:14px 14px 14px 30px}
    .container.dks table{display:block;overflow-x:auto;-webkit-overflow-scrolling:touch}
    .container.dks th,.container.dks td{white-space:nowrap}
}

@media (max-width: 420px){
    .container.dks > p:first-child{font-size:16px}
    .container.dks h2{font-size:21px}
}

.unused-class-1 { display: none; }
.unused-class-2 { visibility: hidden; }
.wp-block-container { position: relative; }
.elementor-hidden { display: none !important; }
.yoast-schema-graph { display: none; }
