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

:root {
    --color-header: #312d2b;
    --color-footer: #312d2b;
    --color-bg: #211e1c;
    --color-login: #d7cec5;
    --color-register: #d5812d;
    --color-text-light: #f5f5f5;
    --color-text-dark: #1a1a1a;
    --color-accent: #d5812d;
    --font-main: 'Montserrat', sans-serif;
}

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

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

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

a:hover {
    color: var(--color-accent);
}

.tm9x4kp {
    background: linear-gradient(135deg, var(--color-header) 0%, #3a3633 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.wp8r2nx {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.xm4t7kp {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 2rem;
    align-items: center;
}

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

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

.zm5p8nx {
    display: flex;
    align-items: center;
}

.lk3w9mx {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
}

.lk3w9mx a {
    color: var(--color-text-light);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.lk3w9mx a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.lk3w9mx a:hover::after {
    width: 100%;
}

.pr4t8kx {
    color: var(--color-accent) !important;
}

.np7m2wx {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(213, 129, 45, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid var(--color-accent);
}

.counter-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.wp5t3kx {
    color: var(--color-accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-login,
.btn-register {
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

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

.btn-login:hover {
    background: #e8dfd6;
    color: var(--color-text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(215, 206, 197, 0.3);
}

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

.btn-register:hover {
    background: #e69238;
    color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(213, 129, 45, 0.4);
}

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--color-header);
    z-index: 999;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.xp4m7nx {
    padding: 2rem;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-menu a {
    color: var(--color-text-light);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pm8r4nx {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.wp7m3nx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xm5t8kp {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
}

.qw8r4nx {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    animation: fadeInUp 0.8s ease;
}

.lm3p9wx {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease;
}

.btn-hero {
    padding: 1rem 3rem;
    background: var(--color-register);
    color: var(--color-text-light);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    animation: fadeInUp 1.2s ease;
}

.btn-hero:hover {
    background: #e69238;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(213, 129, 45, 0.5);
    color: var(--color-text-light);
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 20;
}

.slider-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: white;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

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

.dot.active {
    background: var(--color-accent);
    width: 30px;
    border-radius: 6px;
}


.zx7k3mw {
    flex: 1;
    padding: 3rem 0;
}

.lm9p2wx {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-container {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--color-text-light);
    position: relative;
    padding-bottom: 1rem;
}

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


.qm7p3nx {
    background: rgba(49, 45, 43, 0.5);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.table-wrapper {
    overflow-x: auto;
}

.lm8p4nx {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(33, 30, 28, 0.7);
    border-radius: 15px;
    overflow: hidden;
}

.lm8p4nx td {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.param-cell {
    font-weight: 600;
    color: var(--color-login);
    width: 30%;
}

.value-cell {
    color: var(--color-text-light);
}

.highlight-bonus {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.pm5t9kx {
    margin-top: 3rem;
}

.qw7m4kp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.lm3p8nx {
    border-radius: 15px;
    overflow: hidden;
    background: rgba(49, 45, 43, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lm3p8nx:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(213, 129, 45, 0.3);
}

.lm3p8nx img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-caption {
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    color: var(--color-text-light);
}

.screenshots-slider {
    display: none;
}

.content-block {
    background: rgba(49, 45, 43, 0.5);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.wp-content-area h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.text-content {
    color: var(--color-text-light);
    line-height: 1.8;
}

.text-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--color-accent);
}

.text-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: var(--color-login);
}

.text-content p {
    margin-bottom: 1rem;
}

.text-content ul,
.text-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.text-content li {
    margin-bottom: 0.5rem;
}

.text-content strong {
    color: var(--color-accent);
    font-weight: 600;
}

.text-content table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

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

.text-content table th {
    background: rgba(213, 129, 45, 0.2);
    font-weight: 600;
}

.qw8m4nx {
    margin-top: 3rem;
}

.lm7p3nx {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.zm5t8kp {
    background: linear-gradient(135deg, rgba(49, 45, 43, 0.8), rgba(58, 54, 51, 0.6));
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(213, 129, 45, 0.3);
}

.zm5t8kp:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(213, 129, 45, 0.4);
}

.card-header {
    background: linear-gradient(135deg, var(--color-accent), #c17024);
    padding: 1.5rem;
}

.tournament-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.card-body {
    padding: 2rem;
}

.tournament-desc {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tournament-info {
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(33, 30, 28, 0.5);
    border-radius: 10px;
}

.info-label {
    color: var(--color-login);
    font-weight: 500;
}

.info-value {
    color: var(--color-text-light);
    font-weight: 600;
}

.prize-amount {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.countdown {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-tournament {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--color-register);
    color: white;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-tournament:hover {
    background: #e69238;
    transform: translateY(-2px);
    color: white;
}

.tournaments-slider {
    display: none;
}

.lm8p5nx {
    margin-top: 3rem;
}

.video-wrapper {
    background: rgba(49, 45, 43, 0.5);
    padding: 2rem;
    border-radius: 20px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-description {
    color: var(--color-text-light);
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

.zm7p4nx {
    margin-top: 3rem;
}

.slot-machine {
    background: linear-gradient(135deg, rgba(49, 45, 43, 0.8), rgba(58, 54, 51, 0.6));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--color-accent);
}

.slot-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.reel {
    width: 120px;
    height: 150px;
    background: rgba(33, 30, 28, 0.9);
    border: 3px solid var(--color-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.symbol {
    font-size: 5rem;
    animation: none;
}

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

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

.spin-button {
    padding: 1.2rem 4rem;
    background: var(--color-register);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.spin-button:hover:not(:disabled) {
    background: #e69238;
    transform: scale(1.05);
}

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

.slot-message {
    min-height: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.win-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    background: linear-gradient(135deg, var(--color-header), #3a3633);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid var(--color-accent);
}

.modal-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.modal-text {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.bonus-text {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.btn-claim {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--color-register);
    color: white;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.btn-claim:hover {
    background: #e69238;
    transform: scale(1.05);
    color: white;
}

.btn-close {
    background: transparent;
    border: 2px solid var(--color-login);
    color: var(--color-login);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.slot-description {
    color: var(--color-text-light);
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.qw7m5nx {
    margin-top: 3rem;
}

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

.faq-item {
    background: rgba(49, 45, 43, 0.5);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(213, 129, 45, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--color-text-light);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--color-accent);
}

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

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

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

.faq-answer > div {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.pm8t5nx {
    margin-top: 3rem;
}

.author-card {
    background: rgba(49, 45, 43, 0.5);
    padding: 2rem;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: center;
}

.author-avatar img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid var(--color-accent);
}

.author-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.author-role {
    color: var(--color-login);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.author-bio {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.author-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--color-register);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-link:hover {
    background: #e69238;
    transform: translateY(-2px);
    color: white;
}

.qw5m9nx {
    background: linear-gradient(135deg, var(--color-footer) 0%, #3a3633 100%);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    color: var(--color-accent);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--color-login);
    margin-top: 1rem;
}

.footer-menu,
.footer-contacts {
    list-style: none;
}

.footer-menu li,
.footer-contacts li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: var(--color-text-light);
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--color-accent);
}

.footer-contacts li {
    color: var(--color-text-light);
}

.footer-middle {
    margin-bottom: 3rem;
}

.payment-logos,
.provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.payment-logos img,
.provider-logos img {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.payment-logos img:hover,
.provider-logos img:hover {
    transform: scale(1.1);
}

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

.legal-info p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.fixed-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--color-header), #3a3633);
    padding: 1rem 2rem;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
    animation: slideUp 0.5s ease;
}

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

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

.widget-bonus {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-light);
}

.widget-btn {
    padding: 1rem 3rem;
    background: var(--color-register);
    color: white;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.widget-close {
    background: transparent;
    border: none;
    color: var(--color-text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.widget-close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

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

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

@media (max-width: 1024px) {
    .xm4t7kp {
        grid-template-columns: auto 1fr;
    }
    
    .zm5p8nx {
        display: none;
    }
    
    .np7m2wx {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .lm7p3nx {
        grid-template-columns: 1fr;
    }
    
    .tournaments-slider {
        display: block;
    }
    
    .qw7m4kp {
        display: none;
    }
    
    .screenshots-slider {
        display: block;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .author-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .author-avatar {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .qw8r4nx {
        font-size: 2rem;
    }
    
    .lm3p9wx {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .qm7p3nx {
        padding: 2rem 1rem;
    }
    
    .param-cell {
        width: 40%;
    }
    
    .slot-display {
        gap: 0.5rem;
    }
    
    .reel {
        width: 80px;
        height: 100px;
    }
    
    .symbol {
        font-size: 3rem;
    }
    
    .spin-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .widget-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .widget-bonus {
        font-size: 1rem;
        text-align: center;
    }
    
    .widget-btn {
        padding: 0.8rem 2rem;
        width: 100%;
    }
}

.unused-flex-container {
    display: flex;
    flex-wrap: wrap;
}

.unused-grid-system {
    display: grid;
    grid-template-areas: "header" "main" "sidebar" "footer";
}

.hidden-element {
    visibility: hidden;
    position: absolute;
}

.elementor-widget-container {
}

.wp-block-group {
}

.container.sol{
    max-width:1100px;
    margin:0 auto;
    padding:32px 16px;
}

.container.sol > p{
    font-size:18px;
    color:rgba(245,245,245,.92);
    margin:0 0 18px;
}

.container.sol h1,
.container.sol h2,
.container.sol h3{
    line-height:1.25;
    letter-spacing:.2px;
}

.container.sol h1{
    font-size:38px;
    margin:0 0 18px;
    color:var(--color-text-light);
}

.container.sol h2{
    font-size:28px;
    margin:26px 0 12px;
    color:var(--color-text-light);
    position:relative;
    padding-bottom:10px;
}

.container.sol h2::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:72px;
    height:3px;
    background:linear-gradient(90deg,var(--color-accent),transparent);
    border-radius:2px;
}

.container.sol h3{
    font-size:22px;
    margin:18px 0 10px;
    color:var(--color-login);
}

.container.sol p{
    margin:0 0 14px;
    color:rgba(245,245,245,.88);
}

.container.sol a{
    color:var(--color-login);
    text-decoration:underline;
    text-underline-offset:3px;
}

.container.sol a:hover{
    color:var(--color-accent);
}

.container.sol ul,
.container.sol ol{
    margin:12px 0 18px;
    padding-left:22px;
}

.container.sol li{
    margin:0 0 10px;
    color:rgba(245,245,245,.88);
}

.container.sol blockquote{
    margin:18px 0;
    padding:16px 18px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(213,129,45,.25);
    border-radius:14px;
}

.container.sol table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    margin:18px 0 24px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    overflow:hidden;
}

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

.container.sol table th:last-child,
.container.sol table td:last-child{
    border-right:none;
}

.container.sol table tr:last-child td{
    border-bottom:none;
}

.container.sol table th{
    background:rgba(213,129,45,.14);
    color:var(--color-text-light);
    font-weight:700;
}

.container.sol table td{
    color:rgba(245,245,245,.88);
}

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

.tm9x4kp{
    backdrop-filter:saturate(120%) blur(10px);
}

.wp8r2nx{
    padding:0 20px;
}

.xm4t7kp{
    grid-template-columns:auto 1fr auto auto;
    gap:18px;
}

.lk3w9mx{
    gap:18px;
}

.lk3w9mx a{
    font-size:15px;
    opacity:.95;
}

.lk3w9mx a::after{
    height:2px;
}

.np7m2wx{
    border:1px solid rgba(213,129,45,.55);
    background:rgba(213,129,45,.10);
}

.btn-login,
.btn-register{
    padding:10px 16px;
    border-radius:999px;
}

.btn-login{
    background:rgba(215,206,197,.92);
}

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

.pm8r4nx{
    height:560px;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.slide-bg{
    filter:brightness(.55);
}

.xm5t8kp{
    max-width:900px;
    padding:0 18px;
}

.qw8r4nx{
    font-size:46px;
}

.lm3p9wx{
    font-size:18px;
    opacity:.92;
}

.btn-hero{
    padding:14px 34px;
    border-radius:999px;
}

.zx7k3mw{
    padding:28px 0 80px;
}

.lm9p2wx{
    padding:0 20px;
}

.section-container{
    margin-bottom:34px;
}

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

.qm7p3nx,
.content-block,
.video-wrapper,
.slot-machine,
.faq-item,
.author-card{
    background:rgba(49,45,43,.55);
    border:1px solid rgba(255,255,255,.06);
}

.content-block{
    padding:26px;
    border-radius:18px;
}

.text-content{
    color:rgba(245,245,245,.9);
}

.text-content h2{
    color:var(--color-text-light);
}

.text-content h3{
    color:var(--color-login);
}

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

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

.zm5t8kp{
    border-radius:18px;
}

.card-header{
    background:linear-gradient(135deg,rgba(213,129,45,.95),rgba(196,112,36,.95));
}

.info-item{
    background:rgba(33,30,28,.55);
    border:1px solid rgba(255,255,255,.06);
}

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

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

.fixed-widget .widget-content{
    pointer-events:auto;
}

@media (max-width: 1024px){
    .container.sol{
        max-width:980px;
    }

    .xm4t7kp{
        grid-template-columns:auto 1fr auto;
    }

    .zm5p8nx,
    .np7m2wx{
        display:none;
    }

    .burger-menu{
        display:flex;
    }

    .mobile-menu{
        display:block;
    }

    .pm8r4nx{
        height:520px;
    }

    .qw8r4nx{
        font-size:38px;
    }

    .lm7p3nx{
        grid-template-columns:1fr;
        gap:16px;
    }

    .qw7m4kp{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .author-card{
        grid-template-columns:1fr;
        text-align:center;
    }

    .author-avatar img{
        width:160px;
        height:160px;
    }

    .footer-top{
        grid-template-columns:1fr;
        gap:22px;
    }
}

@media (max-width: 768px){
    .container.sol{
        padding:22px 14px;
    }

    .container.sol h1{
        font-size:30px;
    }

    .container.sol h2{
        font-size:22px;
        margin:22px 0 10px;
    }

    .container.sol h2::after{
        width:56px;
    }

    .container.sol h3{
        font-size:18px;
    }

    .container.sol > p{
        font-size:16px;
    }

    .pm8r4nx{
        height:460px;
    }

    .qw8r4nx{
        font-size:30px;
    }

    .lm3p9wx{
        font-size:15px;
    }

    .btn-hero{
        width:100%;
        max-width:360px;
    }

    .slider-controls{
        bottom:14px;
    }

    .slider-btn{
        width:36px;
        height:36px;
        font-size:18px;
    }

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

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

    .lm8p4nx td{
        padding:12px;
    }

    .param-cell{
        width:auto;
    }

    .content-block{
        padding:18px 14px;
        border-radius:16px;
    }

    .video-wrapper{
        padding:14px;
        border-radius:16px;
    }

    .slot-machine{
        padding:18px 14px;
        border-radius:16px;
    }

    .reel{
        width:78px;
        height:96px;
    }

    .symbol{
        font-size:44px;
    }

    .spin-button{
        width:100%;
        padding:14px 18px;
        font-size:18px;
    }

    .widget-content{
        flex-direction:column;
        align-items:stretch;
        gap:10px;
    }

    .widget-bonus{
        text-align:center;
        font-size:16px;
    }

    .widget-btn{
        width:100%;
        padding:12px 18px;
    }

    .fixed-widget{
        padding:10px 12px;
    }
}

@media (max-width: 480px){
    .pm8r4nx{
        height:420px;
    }

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

    .lm8p4nx{
        font-size:14px;
    }

    .footer-container{
        padding:0 14px;
    }

    .payment-logos img,
    .provider-logos img{
        padding:6px;
    }
}
.pm5t9kx.screenshots-section{
    margin-top:24px;
}

.pm5t9kx .wp3m7nx.section-container{
    max-width:1100px;
    margin:0 auto;
    padding:0 20px;
}

.pm5t9kx .zm4r7nx.section-title{
    font-size:32px;
    font-weight:700;
    text-align:center;
    margin:0 0 22px;
    color:var(--color-text-light);
}

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

.pm5t9kx .screenshot-item.lm3p8nx{
    background:rgba(49,45,43,.55);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    overflow:hidden;
    transition:transform .25s ease, box-shadow .25s ease;
}

.pm5t9kx .screenshot-item.lm3p8nx:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 28px rgba(0,0,0,.35);
}

.pm5t9kx .screenshot-item.lm3p8nx img{
    width:100%;
    height:auto;
    display:block;
    aspect-ratio:16/10;
    object-fit:cover;
}

.pm5t9kx .screenshot-caption{
    margin:0;
    padding:12px 14px 14px;
    font-size:14px;
    line-height:1.4;
    color:rgba(245,245,245,.9);
}

.pm5t9kx .screenshots-slider.xm9r2nx{
    display:none;
}

.pm5t9kx .screenshots-slider.xm9r2nx{
    background:rgba(49,45,43,.55);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    overflow:hidden;
}

.pm5t9kx .screenshots-slider .slider-track{
    display:flex;
    gap:0;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
}

.pm5t9kx .screenshots-slider .slider-track::-webkit-scrollbar{
    width:0;
    height:0;
}

.pm5t9kx .screenshots-slider .screenshot-slide{
    flex:0 0 100%;
    scroll-snap-align:center;
}

.pm5t9kx .screenshots-slider .screenshot-slide img{
    width:100%;
    height:auto;
    display:block;
    aspect-ratio:16/10;
    object-fit:cover;
}

.pm5t9kx .screenshots-slider .screenshot-slide .screenshot-caption{
    padding:12px 14px 14px;
}

.pm5t9kx .screenshots-slider .slider-nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    padding:12px 12px 14px;
}

.pm5t9kx .screenshots-slider .nav-btn{
    width:44px;
    height:44px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.14);
    background:rgba(33,30,28,.55);
    color:rgba(245,245,245,.95);
    font-size:22px;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:transform .2s ease, background .2s ease, border-color .2s ease;
    user-select:none;
    -webkit-tap-highlight-color:transparent;
    touch-action:manipulation;
}

.pm5t9kx .screenshots-slider .nav-btn:active{
    transform:scale(.98);
}

.pm5t9kx .screenshots-slider .nav-btn:hover{
    background:rgba(33,30,28,.75);
    border-color:rgba(213,129,45,.35);
}

@media (max-width: 1024px){
    .pm5t9kx .screenshots-grid.qw7m4kp{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }
}

@media (max-width: 768px){
    .pm5t9kx .wp3m7nx.section-container{
        padding:0 14px;
    }

    .pm5t9kx .zm4r7nx.section-title{
        font-size:22px;
        margin:0 0 14px;
    }

    .pm5t9kx .screenshots-grid.qw7m4kp{
        display:none;
    }

    .pm5t9kx .screenshots-slider.xm9r2nx{
        display:block;
    }

    .pm5t9kx .screenshots-slider .slider-nav{
        padding:10px 10px 12px;
    }

    .pm5t9kx .screenshots-slider .nav-btn{
        width:42px;
        height:42px;
        border-radius:12px;
    }

    .pm5t9kx .screenshot-caption{
        font-size:13px;
        padding:10px 12px 12px;
    }
}

@media (max-width: 420px){
    .pm5t9kx .screenshots-slider.xm9r2nx{
        border-radius:16px;
    }

    .pm5t9kx .screenshots-slider .nav-btn{
        width:40px;
        height:40px;
        border-radius:10px;
        font-size:20px;
    }
}
.slider-nav{
    display:flex;
    justify-content:center;
    gap:14px;
    margin-top:14px;
}

.slider-nav .nav-btn{
    -webkit-tap-highlight-color:transparent;
    appearance:none;
    border:1px solid rgba(255,255,255,.14);
    background:rgba(0,0,0,.35);
    color:rgba(255,255,255,.95);
    width:46px;
    height:46px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    line-height:1;
    cursor:pointer;
    transition:transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, opacity .18s ease;
    box-shadow:0 10px 24px rgba(0,0,0,.28);
}

.slider-nav .nav-btn:hover{
    background:rgba(0,0,0,.5);
    border-color:rgba(213,129,45,.45);
    transform:translateY(-1px);
    box-shadow:0 14px 32px rgba(0,0,0,.35);
}

.slider-nav .nav-btn:active{
    transform:translateY(0) scale(.96);
}

.slider-nav .nav-btn:focus-visible{
    outline:none;
    box-shadow:0 0 0 3px rgba(213,129,45,.25), 0 10px 24px rgba(0,0,0,.28);
}

.slider-nav .nav-btn[disabled]{
    opacity:.45;
    cursor:not-allowed;
    transform:none;
    box-shadow:none;
}

@media (max-width: 768px){
    .slider-nav{
        gap:12px;
        margin-top:12px;
    }
    .slider-nav .nav-btn{
        width:44px;
        height:44px;
        font-size:24px;
    }
}

@media (max-width: 420px){
    .slider-nav{
        gap:10px;
        margin-top:10px;
    }
    .slider-nav .nav-btn{
        width:42px;
        height:42px;
        font-size:22px;
    }
}
