
:root {
    --color-bg: #211e1c;
    --color-header: #312d2b;
    --color-btn-login: #d7cec5;
    --color-btn-signup: #d5812d;
    --color-text-light: #e8e6e3;
    --color-text-dark: #1a1816;
    --color-accent: #d5812d;
    --color-border: #3f3a37;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.header-main-9kd2 {
    background: linear-gradient(135deg, var(--color-header) 0%, #2a2725 100%);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.navbar-custom-7jf2 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-row-3ks9 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-section-2kd8 {
    flex-shrink: 0;
}

.logo-img-4ks2 {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.nav-center-8kd4 {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-grow: 1;
}

.online-counter-3jf7 {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(213, 129, 45, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--color-accent);
}

.online-icon-2ks9 {
    font-size: 18px;
}

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

.nav-item-2kd9 a {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-item-2kd9 a:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.nav-actions-4jf9 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-header-login-3ks8,
.btn-header-signup-7kd2 {
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-header-login-3ks8 {
    background-color: var(--color-btn-login);
    color: var(--color-text-dark);
    border-color: var(--color-btn-login);
}

.btn-header-login-3ks8:hover {
    background-color: #e8dfd5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(215, 206, 197, 0.3);
}

.btn-header-signup-7kd2 {
    background-color: var(--color-btn-signup);
    color: #fff;
    border-color: var(--color-btn-signup);
}

.btn-header-signup-7kd2:hover {
    background-color: #e89335;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(213, 129, 45, 0.4);
}

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

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

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

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

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

.mobile-menu-overlay-8kd3 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay-8kd3.active {
    display: block;
    opacity: 1;
}

.mobile-menu-9jf4 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background: var(--color-header);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu-9jf4.active {
    right: 0;
}

.mobile-menu-header-2ks7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-title-5kd9 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-accent);
}

.mobile-menu-close-3jf8 {
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
}

.mobile-menu-list-7kd4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list-7kd4 li {
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-list-7kd4 a {
    display: block;
    padding: 18px 20px;
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu-list-7kd4 a:hover {
    background: rgba(213, 129, 45, 0.1);
    color: var(--color-accent);
    padding-left: 30px;
}

.k8fn2-hero-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.p9ds4-hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #1a1816;
}

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

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide-item.active {
    opacity: 1;
    z-index: 1;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

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

.slide-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.slide-content p {
    font-size: 22px;
    margin-bottom: 28px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.btn-7jd2k {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-primary:hover {
    background-color: #e89335;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(213, 129, 45, 0.5);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(49, 45, 43, 0.8);
    color: #fff;
    border: none;
    font-size: 40px;
    padding: 12px 20px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.slider-btn:hover {
    background: var(--color-accent);
}

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

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

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

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: var(--color-accent);
    border-color: #fff;
    transform: scale(1.2);
}

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

.breadcrumbs-9dk2 {
    padding: 16px 0;
    margin-bottom: 20px;
}

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

.breadcrumb-list li {
    color: var(--color-text-light);
    font-size: 14px;
}

.breadcrumb-list li:not(:last-child)::after {
    content: ' › ';
    margin-left: 8px;
    color: var(--color-accent);
}

.breadcrumb-list a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

.main-content-4hd9 {
    padding: 40px 0;
}

.section-title-9dk2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-accent);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title-9dk2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

.pros-cons-section-2kd8 {
    margin-bottom: 60px;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pros-column-3ks9,
.cons-column-5ld3 {
    background: #2a2725;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.pros-column-3ks9:hover,
.cons-column-5ld3:hover {
    transform: translateY(-5px);
}

.column-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-border);
}

.pros-title {
    color: #4caf50;
}

.cons-title {
    color: #ff9800;
}

.pros-list-8jf2,
.cons-list-2kf9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list-8jf2 li,
.cons-list-2kf9 li {
    padding: 12px 0 12px 30px;
    position: relative;
    line-height: 1.6;
    font-size: 15px;
}

.pros-list-8jf2 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
    font-size: 18px;
}

.cons-list-2kf9 li::before {
    content: '−';
    position: absolute;
    left: 0;
    color: #ff9800;
    font-weight: 700;
    font-size: 20px;
}

.screenshots-section-7kd2 {
    margin-bottom: 60px;
}

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

.screenshot-item-2ks8 {
    background: #2a2725;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-item-2ks8:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(213, 129, 45, 0.3);
}

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

.screenshot-caption {
    padding: 16px;
    text-align: center;
    font-weight: 600;
    color: var(--color-text-light);
    background: #312d2b;
}

.video-section-3kd9 {
    margin-bottom: 60px;
}

.video-wrapper-5jf2 {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.video-wrapper-5jf2 iframe {
    display: block;
    border: none;
}

.games-section-8kd3 {
    margin-bottom: 60px;
}

.games-grid-2jf9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.game-card-4ks2 {
    background: #2a2725;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.game-card-4ks2:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(213, 129, 45, 0.3);
}

.game-card-4ks2 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.game-title {
    font-size: 18px;
    font-weight: 700;
    margin: 16px 0 8px;
    color: var(--color-text-light);
    padding: 0 16px;
}

.game-provider {
    font-size: 14px;
    color: var(--color-accent);
    margin-bottom: 16px;
    font-weight: 500;
}

.btn-game-7jd2 {
    display: inline-block;
    margin: 0 16px 20px;
    padding: 10px 28px;
    background-color: var(--color-accent);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-game-7jd2:hover {
    background-color: #e89335;
    transform: scale(1.05);
}


.wheel-section-9kd4 {
    margin-bottom: 60px;
    background: #2a2725;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.wheel-container-3jf7 {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

#wheelCanvas {
    display: block;
    margin: 0 auto 30px;
    max-width: 100%;
    height: auto;
}

.btn-spin-5kd8 {
    padding: 14px 40px;
    background-color: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-spin-5kd8:hover:not(:disabled) {
    background-color: #e89335;
    transform: scale(1.05);
}

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

.wheel-result-2jf3 {
    margin-top: 30px;
    padding: 25px;
    background: #312d2b;
    border-radius: 10px;
    border: 2px solid var(--color-accent);
}

#resultText {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-claim-8kd2 {
    display: inline-block;
    padding: 12px 32px;
    background-color: var(--color-accent);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-claim-8kd2:hover {
    background-color: #e89335;
    transform: scale(1.05);
}

.content-section-5kd9 {
    margin-bottom: 60px;
    background: #2a2725;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.content-section-5kd9 h1 {
    font-size: 36px;
    color: var(--color-accent);
    margin-bottom: 25px;
}

.content-text-3jf8 {
    line-height: 1.8;
    font-size: 16px;
}

.content-text-3jf8 h2 {
    font-size: 28px;
    color: var(--color-accent);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-text-3jf8 h3 {
    font-size: 22px;
    color: var(--color-btn-login);
    margin-top: 25px;
    margin-bottom: 12px;
}

.content-text-3jf8 p {
    margin-bottom: 16px;
}

.content-text-3jf8 ul,
.content-text-3jf8 ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-text-3jf8 li {
    margin-bottom: 10px;
}

.content-text-3jf8 table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px auto;
    background: #312d2b;
    border-radius: 8px;
    overflow: hidden;
}

.content-text-3jf8 th,
.content-text-3jf8 td {
    padding: 14px;
    text-align: left;
    border: 1px solid var(--color-border);
}

.content-text-3jf8 th {
    background: var(--color-accent);
    color: #fff;
    font-weight: 700;
}

.content-text-3jf8 a {
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.content-text-3jf8 a:hover {
    border-bottom-color: var(--color-accent);
}

.author-section-7kd3 {
    margin-bottom: 60px;
}

.author-card-4jf9 {
    display: flex;
    gap: 30px;
    background: #2a2725;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.author-photo-2ks7 {
    flex-shrink: 0;
}

.author-photo-2ks7 img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-accent);
}

.author-info-8kd4 {
    flex-grow: 1;
}

.author-name-5jf2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.author-bio-3ks9 {
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 15px;
}

.author-social-9kd2 {
    display: flex;
    gap: 12px;
}

.social-link-linkedin {
    display: inline-block;
    padding: 8px 20px;
    background-color: #0077b5;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link-linkedin:hover {
    background-color: #006399;
    transform: scale(1.05);
}


.footer-main-8kd2 {
    background: linear-gradient(135deg, var(--color-header) 0%, #2a2725 100%);
    padding: 50px 0 30px;
    margin-top: auto;
    border-top: 3px solid var(--color-accent);
}

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

.footer-title-3jf8 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.footer-description-4ks2 {
    line-height: 1.6;
    font-size: 14px;
    color: #b8b3af;
}

.footer-menu-list-2ks7,
.footer-info-list-8jf2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list-2ks7 li,
.footer-info-list-8jf2 li {
    margin-bottom: 10px;
}

.footer-menu-list-2ks7 a,
.footer-info-list-8jf2 a {
    color: #b8b3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-menu-list-2ks7 a:hover,
.footer-info-list-8jf2 a:hover {
    color: var(--color-accent);
}

.footer-contact-item-2jf4 {
    margin-bottom: 10px;
    font-size: 14px;
    color: #b8b3af;
}

.footer-payments-section-4ks8,
.footer-providers-section-7kd3 {
    margin-bottom: 40px;
}

.payments-title-9kd2,
.providers-title-2jf9 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 20px;
    text-align: center;
}

.payments-grid-3jf7,
.providers-grid-8ks4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 15px;
    justify-items: center;
}

.payment-item-5ks2,
.provider-item-4jf2 {
    background: #1a1816;
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.payment-item-5ks2:hover,
.provider-item-4jf2:hover {
    transform: scale(1.1);
}

.payment-item-5ks2 img,
.provider-item-4jf2 img {
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-license-section-9kd8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(26, 24, 22, 0.5);
    border-radius: 8px;
}

.license-text-5ks7,
.age-restriction-2kd9 {
    font-size: 14px;
    margin-bottom: 8px;
    color: #b8b3af;
}

.responsible-gaming-icons-7jf3 {
    display: flex;
    gap: 12px;
}

.responsible-gaming-icons-7jf3 img {
    width: 60px;
    height: 60px;
}

.footer-bottom-section-4ks3 {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.copyright-text-8jf2 {
    font-size: 13px;
    color: #8a8581;
}

.disclaimer-text-5kd7 {
    margin-top: 12px;
    font-size: 12px;
    color: #736f6b;
    line-height: 1.5;
}

.widget-sticky-7kd9 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, #c67225 100%);
    padding: 16px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    animation: slideUp 0.5s ease forwards;
    animation-delay: 2s;
}

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

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

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

.widget-btn-2kd8 {
    padding: 12px 32px;
    background-color: #fff;
    color: var(--color-accent);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.widget-btn-2kd8:hover {
    background-color: var(--color-btn-login);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}


@media (max-width: 1024px) {
    .nav-menu-7jf8 {
        display: none;
    }

    .burger-menu-5jf2 {
        display: flex;
    }

    .screenshots-grid-4jf8 {
        grid-template-columns: 1fr;
    }

    .screenshots-grid-4jf8 .screenshot-item-2ks8:not(:first-child) {
        display: none;
    }

    .games-grid-2jf9 {
        overflow-x: auto;
        display: flex;
        gap: 20px;
        scroll-snap-type: x mandatory;
    }

    .game-card-4ks2 {
        min-width: 250px;
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 32px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .author-card-4jf9 {
        flex-direction: column;
        text-align: center;
    }

    .author-photo-2ks7 {
        margin: 0 auto;
    }

    .author-social-9kd2 {
        justify-content: center;
    }

    .widget-content-3jf8 {
        flex-direction: column;
        text-align: center;
    }

    .widget-text-5ks2 {
        font-size: 16px;
    }

    .footer-license-section-9kd8 {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-actions-4jf9 {
        gap: 8px;
    }

    .btn-header-login-3ks8,
    .btn-header-signup-7kd2 {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .slide-content h2 {
        font-size: 24px;
    }

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

    #wheelCanvas {
        width: 100% !important;
        height: auto !important;
    }
}

.legacy-class-1 {
    display: none;
}

.legacy-class-2 {
    visibility: hidden;
}

.elementor-widget-1 {
    position: absolute;
    left: -9999px;
}

.wp-block-1 {
    opacity: 0;
}

.yoast-hidden-1 {
    pointer-events: none;
}

.container.csrg {
    --csrg-bg: rgba(49, 45, 43, 0.55);
    --csrg-bg2: rgba(33, 30, 28, 0.6);
    --csrg-border: rgba(215, 206, 197, 0.16);
    --csrg-text: #f5f5f5;
    --csrg-muted: rgba(245, 245, 245, 0.78);
    --csrg-accent: #d5812d;
    --csrg-accent2: #f39c3f;
    --csrg-link: #f0d1a5;
    --csrg-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);

    margin: 24px auto;
    padding: clamp(16px, 3vw, 30px);
    background: linear-gradient(180deg, rgba(49, 45, 43, 0.58), rgba(33, 30, 28, 0.18));
    border: 1px solid var(--csrg-border);
    border-radius: 16px;
    box-shadow: var(--csrg-shadow);
    color: var(--csrg-text);
    font-size: clamp(15px, 0.95vw + 12px, 18px);
    line-height: 1.75;
    letter-spacing: 0.1px;
    overflow-wrap: anywhere;
}

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

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

.container.csrg p {
    margin: 0 0 14px;
    color: var(--csrg-muted);
}

.container.csrg h1,
.container.csrg h2,
.container.csrg h3,
.container.csrg h4 {
    margin: 26px 0 12px;
    color: var(--csrg-text);
    letter-spacing: 0.2px;
}

.container.csrg h1 {
    font-size: clamp(26px, 2.2vw + 18px, 44px);
    line-height: 1.18;
}

.container.csrg h2 {
    font-size: clamp(20px, 1.2vw + 16px, 30px);
    line-height: 1.25;
    padding-top: 10px;
    border-top: 1px solid var(--csrg-border);
}

.container.csrg h3 {
    font-size: clamp(18px, 0.9vw + 15px, 24px);
    line-height: 1.28;
}

.container.csrg h2:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.container.csrg a {
    color: var(--csrg-link);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.2s ease, opacity 0.2s ease, text-decoration-color 0.2s ease;
    word-break: break-word;
}

.container.csrg a:hover {
    color: var(--csrg-accent2);
}

.container.csrg a:focus-visible {
    outline: 2px solid rgba(213, 129, 45, 0.6);
    outline-offset: 3px;
    border-radius: 10px;
}

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

.container.csrg li {
    margin: 8px 0;
}

.container.csrg ul li::marker {
    color: rgba(213, 129, 45, 0.85);
}

.container.csrg ol li::marker {
    color: rgba(213, 129, 45, 0.95);
    font-weight: 800;
}

.container.csrg hr {
    border: 0;
    border-top: 1px solid var(--csrg-border);
    margin: 22px 0;
}

.container.csrg blockquote {
    margin: 18px 0;
    padding: 14px 16px;
    background: rgba(61, 56, 53, 0.55);
    border: 1px solid var(--csrg-border);
    border-left: 4px solid rgba(213, 129, 45, 0.85);
    border-radius: 12px;
    color: rgba(245, 245, 245, 0.88);
}

.container.csrg code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.95em;
    padding: 0.12em 0.35em;
    border: 1px solid rgba(215, 206, 197, 0.2);
    background: rgba(33, 30, 28, 0.65);
    border-radius: 8px;
    color: rgba(240, 209, 165, 0.95);
}

.container.csrg pre {
    margin: 16px 0 20px;
    padding: 14px 16px;
    background: rgba(33, 30, 28, 0.72);
    border: 1px solid var(--csrg-border);
    border-radius: 14px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.container.csrg pre code {
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
    color: var(--csrg-text);
}

.container.csrg table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 18px 0 22px;
    border: 1px solid var(--csrg-border);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(33, 30, 28, 0.22);
}

.container.csrg th,
.container.csrg td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--csrg-border);
    border-right: 1px solid var(--csrg-border);
    text-align: left;
    vertical-align: top;
}

.container.csrg tr:last-child td {
    border-bottom: 0;
}

.container.csrg th:last-child,
.container.csrg td:last-child {
    border-right: 0;
}

.container.csrg th {
    background: rgba(213, 129, 45, 0.18);
    color: rgba(213, 129, 45, 0.95);
    font-weight: 800;
    letter-spacing: 0.3px;
}

.container.csrg tr:nth-child(even) td {
    background: rgba(49, 45, 43, 0.32);
}

.container.csrg img,
.container.csrg video,
.container.csrg iframe {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.container.csrg iframe {
    width: 100%;
}

.container.csrg .csrg-callout {
    margin: 18px 0 22px;
    padding: 16px 16px;
    border-radius: 14px;
    border: 1px solid rgba(213, 129, 45, 0.28);
    background: linear-gradient(135deg, rgba(213, 129, 45, 0.22), rgba(243, 156, 63, 0.14));
}

.container.csrg .csrg-cta {
    margin: 18px 0 22px;
    padding: 16px 16px;
    border-radius: 14px;
    border: 1px solid rgba(215, 206, 197, 0.16);
    background: linear-gradient(180deg, rgba(33, 30, 28, 0.6), rgba(49, 45, 43, 0.45));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.container.csrg .csrg-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--csrg-accent), var(--csrg-accent2));
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 24px rgba(213, 129, 45, 0.28);
    white-space: nowrap;
}

.container.csrg .csrg-cta a:hover {
    opacity: 0.95;
}

@media (max-width: 1024px) {
    .container.csrg {
        margin: 18px auto;
        border-radius: 14px;
    }

    .container.csrg h2 {
        margin-top: 22px;
    }
}

@media (max-width: 768px) {
    .container.csrg {
        padding: 16px;
        border-radius: 14px;
    }

    .container.csrg p {
        margin-bottom: 12px;
    }

    .container.csrg ul,
    .container.csrg ol {
        padding-left: 18px;
    }

    .container.csrg table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .container.csrg th,
    .container.csrg td {
        padding: 10px 12px;
        white-space: nowrap;
    }

    .container.csrg .csrg-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .container.csrg .csrg-cta a {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .container.csrg {
        padding: 14px;
    }

    .container.csrg h1 {
        letter-spacing: 0;
    }

    .container.csrg h2 {
        padding-top: 8px;
    }
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
}

.container-main,
.navbar-custom-7jf2 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .container-main {
        padding: 0 14px;
    }
}

@media (max-width: 768px) {
    .container-main {
        padding: 0 12px;
    }

    .main-content-4hd9 {
        padding: 18px 0;
    }

    .section-title-9dk2 {
        font-size: 22px;
        margin-bottom: 18px;
        padding-bottom: 10px;
    }

    .section-title-9dk2::after {
        width: 56px;
    }

    .breadcrumbs-9dk2 {
        padding: 12px 0;
        margin-bottom: 10px;
    }

    .breadcrumb-list {
        gap: 6px;
    }

    .breadcrumb-list li {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .k8fn2-hero-section {
        margin-bottom: 18px;
    }

    .p9ds4-hero-slider {
        height: auto;
        border-radius: 12px;
        overflow: hidden;
    }

    .slider-track {
        height: 360px;
    }

    .slide-item {
        inset: 0;
    }

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

    .slide-content {
        width: 100%;
        max-width: 100%;
        padding: 14px 14px 18px;
    }

    .slide-content h2 {
        font-size: 24px;
        line-height: 1.15;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .btn-7jd2k {
        width: 100%;
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 10px;
        text-align: center;
    }

    .slider-btn {
        display: none;
    }

    .slider-dots {
        bottom: 12px;
        gap: 8px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 420px) {
    .slider-track {
        height: 320px;
    }

    .slide-item img {
        height: 320px;
    }

    .slide-content h2 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pros-column-3ks9,
    .cons-column-5ld3 {
        padding: 16px;
        border-radius: 12px;
    }

    .column-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .pros-list-8jf2 li,
    .cons-list-2kf9 li {
        font-size: 14px;
        padding: 10px 0 10px 28px;
    }
}

@media (max-width: 768px) {
    .screenshots-grid-4jf8 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .screenshot-item-2ks8 {
        border-radius: 12px;
    }

    .screenshot-caption {
        font-size: 14px;
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .video-wrapper-5jf2 {
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
        overflow: hidden;
    }

    .video-wrapper-5jf2 iframe {
        width: 100%;
        height: 220px;
    }
}

@media (max-width: 420px) {
    .video-wrapper-5jf2 iframe {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .games-grid-2jf9 {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 2px 2px 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .game-card-4ks2 {
        min-width: 240px;
        scroll-snap-align: start;
        border-radius: 12px;
    }

    .game-card-4ks2 img {
        height: 170px;
    }

    .game-title {
        font-size: 16px;
        margin: 12px 0 6px;
    }

    .game-provider {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .btn-game-7jd2 {
        width: calc(100% - 24px);
        margin: 0 12px 14px;
        padding: 11px 14px;
        border-radius: 10px;
        text-align: center;
    }

    .games-grid-2jf9::-webkit-scrollbar {
        height: 6px;
    }

    .games-grid-2jf9::-webkit-scrollbar-thumb {
        background: rgba(213, 129, 45, 0.35);
        border-radius: 999px;
    }

    .games-grid-2jf9::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.06);
        border-radius: 999px;
    }
}

@media (max-width: 768px) {
    .wheel-section-9kd4 {
        padding: 18px;
        margin-bottom: 28px;
    }

    .wheel-container-3jf7 {
        max-width: 100%;
    }

    #wheelCanvas {
        width: 100% !important;
        height: auto !important;
        max-width: 360px;
    }

    .btn-spin-5kd8 {
        width: 100%;
        padding: 12px 14px;
        border-radius: 10px;
        font-size: 16px;
    }

    .wheel-result-2jf3 {
        margin-top: 16px;
        padding: 16px;
    }

    #resultText {
        font-size: 14px;
    }

    .btn-claim-8kd2 {
        width: 100%;
        text-align: center;
        padding: 12px 14px;
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .content-section-5kd9 {
        padding: 18px;
        border-radius: 12px;
    }

    .content-section-5kd9 h1 {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .content-text-3jf8 {
        font-size: 15px;
    }

    .content-text-3jf8 h2 {
        font-size: 18px;
    }

    .content-text-3jf8 h3 {
        font-size: 16px;
    }

    .content-text-3jf8 ul,
    .content-text-3jf8 ol {
        padding-left: 18px;
    }

    .content-text-3jf8 table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }

    .content-text-3jf8 th,
    .content-text-3jf8 td {
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .author-card-4jf9 {
        flex-direction: column;
        gap: 14px;
        padding: 18px;
        border-radius: 12px;
        text-align: center;
    }

    .author-photo-2ks7 img {
        width: 120px;
        height: 120px;
    }

    .author-name-5jf2 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .author-bio-3ks9 {
        font-size: 14px;
    }

    .author-social-9kd2 {
        justify-content: center;
    }

    .social-link-linkedin {
        width: 100%;
        text-align: center;
        padding: 10px 14px;
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .widget-sticky-7kd9 {
        padding: 12px;
    }

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

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

    .widget-btn-2kd8 {
        width: 100%;
        text-align: center;
        padding: 12px 14px;
        border-radius: 10px;
    }
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img, video, iframe, canvas, svg {
    max-width: 100%;
    height: auto;
}

.container-fluid,
.navbar-custom-7jf2,
.container-main {
    width: 100%;
    max-width: 100%;
}

.k8fn2-hero-section,
.p9ds4-hero-slider,
.slider-track,
.main-content-4hd9,
.content-section-5kd9,
.content-text-3jf8 {
    max-width: 100%;
}

@media (max-width: 768px) {
    body {
        padding-right: 0;
    }

    .container-main {
        padding-left: 12px;
        padding-right: 12px;
    }

    .navbar-custom-7jf2 {
        padding-left: 12px;
        padding-right: 12px;
    }

    .nav-row-3ks9 {
        width: 100%;
        max-width: 100%;
    }

    .content-section-5kd9,
    .pros-column-3ks9,
    .cons-column-5ld3,
    .author-card-4jf9,
    .wheel-section-9kd4 {
        width: 100%;
        max-width: 100%;
    }
}

@supports (overflow: clip) {
    html, body {
        overflow-x: clip;
    }
}
