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

:root {
    --color-header: #0d2f56;
    --color-login: #5B695F;
    --color-signup: #2F8637;
    --color-bg: #0C220E;
    --color-text: #e8f0e8;
    --color-text-dark: #1a1a1a;
    --color-accent: #2F8637;
    --spacing-unit: 8px;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 2);
}

.mx9k2 {
    padding-left: calc(var(--spacing-unit) * 2);
    padding-right: calc(var(--spacing-unit) * 2);
}

.q9k3m {
    background: linear-gradient(135deg, var(--color-header) 0%, #1a4a7d 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: calc(var(--spacing-unit) * 2) 0;
}

.header-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: calc(var(--spacing-unit) * 3);
}

.logo-img {
    max-width: 180px;
    height: auto;
    display: block;
}

.desktop-nav {
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: calc(var(--spacing-unit) * 3);
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2);
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
}

.online-counter {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 1);
    padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.online-text {
    font-size: 14px;
    color: var(--color-text);
}

.header-buttons {
    display: flex;
    gap: calc(var(--spacing-unit) * 1);
}

.btn-login {
    background: var(--color-login);
    color: #fff;
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-login:hover {
    background: #4a5850;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.btn-signup {
    background: var(--color-signup);
    color: #fff;
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-signup:hover {
    background: #267a2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--spacing-unit) * 1);
}

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-header);
    z-index: 2000;
    transition: right 0.3s ease;
    padding: calc(var(--spacing-unit) * 3);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

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

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

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

.mobile-nav-item {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.mobile-nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: calc(var(--spacing-unit) * 1.5);
    transition: all 0.3s ease;
    border-radius: 6px;
}

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

.hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

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

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

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

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    max-width: 800px;
    padding: calc(var(--spacing-unit) * 3);
    background: rgba(0, 0, 0, 0.6);
    border-radius: 16px;
}

.slide-content h2 {
    font-size: 42px;
    margin-bottom: calc(var(--spacing-unit) * 2);
    font-weight: 700;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: #fff;
    font-size: 40px;
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 3);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-prev {
    left: calc(var(--spacing-unit) * 2);
}

.slider-next {
    right: calc(var(--spacing-unit) * 2);
}

.main-content {
    padding: calc(var(--spacing-unit) * 4) 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 4);
    color: var(--color-text);
}

.bonus-section {
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing-unit) * 3);
}

.bonus-card {
    background: linear-gradient(135deg, #1a3a2e 0%, #0d2419 100%);
    border-radius: 16px;
    padding: calc(var(--spacing-unit) * 3);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(47, 134, 55, 0.3);
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(47, 134, 55, 0.3);
}

.bonus-card.featured {
    border-color: var(--color-signup);
    box-shadow: 0 4px 16px rgba(47, 134, 55, 0.4);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--color-signup);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
}

.bonus-icon {
    font-size: 64px;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.bonus-card h3 {
    font-size: 22px;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--color-text);
}

.bonus-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-signup);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.bonus-card p {
    margin-bottom: calc(var(--spacing-unit) * 2);
    line-height: 1.5;
    color: var(--color-text);
}

.bonus-features {
    list-style: none;
    margin-bottom: calc(var(--spacing-unit) * 3);
    padding: 0;
}

.bonus-features li {
    padding: calc(var(--spacing-unit) * 1) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-features li:last-child {
    border-bottom: none;
}

.btn-bonus {
    background: var(--color-signup);
    color: #fff;
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 4);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-bonus:hover {
    background: #267a2d;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(47, 134, 55, 0.5);
    color: #fff;
}

.mobile-view {
    display: none;
}

.bonus-slider-mobile {
    position: relative;
    overflow: hidden;
    padding-bottom: calc(var(--spacing-unit) * 5);
}

.bonus-slider-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: calc(var(--spacing-unit) * 2);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 1);
    margin-top: calc(var(--spacing-unit) * 2);
}

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

.slider-dots .dot.active {
    background: var(--color-signup);
    width: 30px;
    border-radius: 5px;
}

.screenshots-section {
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing-unit) * 3);
}

.screenshot-item {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #1a3a2e;
}

.screenshot-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.screenshot-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.screenshot-item p {
    padding: calc(var(--spacing-unit) * 2);
    text-align: center;
    font-weight: 600;
    color: var(--color-text);
}

.screenshots-slider-mobile {
    position: relative;
    overflow: hidden;
    padding-bottom: calc(var(--spacing-unit) * 5);
}

.screenshots-slider-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: calc(var(--spacing-unit) * 2);
}

.winners-section {
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.winners-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    background: #1a3a2e;
    padding: calc(var(--spacing-unit) * 2);
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

.winners-table thead {
    background: var(--color-header);
}

.winners-table th {
    padding: calc(var(--spacing-unit) * 2);
    text-align: left;
    font-weight: 600;
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.winners-table td {
    padding: calc(var(--spacing-unit) * 2);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
}

.winners-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.winners-table tbody tr:hover {
    background: rgba(47, 134, 55, 0.2);
}

.win-amount {
    font-weight: 700;
    color: var(--color-signup);
}

.video-section {
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.wheel-section {
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.wheel-game-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.wheel-wrapper {
    position: relative;
    display: inline-block;
}

#wheelCanvas {
    display: block;
    margin: 0 auto calc(var(--spacing-unit) * 3);
}

.spin-btn {
    background: var(--color-signup);
    color: #fff;
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 5);
    border-radius: 50px;
    border: none;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(47, 134, 55, 0.4);
}

.spin-btn:hover {
    background: #267a2d;
    transform: scale(1.1);
}

.spin-btn:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
}

.wheel-result {
    background: linear-gradient(135deg, #1a3a2e 0%, #0d2419 100%);
    border-radius: 16px;
    padding: calc(var(--spacing-unit) * 4);
    margin-top: calc(var(--spacing-unit) * 3);
    border: 2px solid var(--color-signup);
}

.wheel-result.hidden {
    display: none;
}

.wheel-result h3 {
    font-size: 28px;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--color-signup);
}

.wheel-result p {
    font-size: 18px;
    margin-bottom: calc(var(--spacing-unit) * 3);
    color: var(--color-text);
}

.btn-retry {
    background: var(--color-login);
    color: #fff;
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 4);
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-retry:hover {
    background: #4a5850;
}

.content-section {
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.text-content {
    background: #1a3a2e;
    border-radius: 12px;
    padding: calc(var(--spacing-unit) * 4);
}

.text-content h1 {
    font-size: 38px;
    margin-bottom: calc(var(--spacing-unit) * 3);
    color: var(--color-text);
}

.text-content h2 {
    font-size: 30px;
    margin-top: calc(var(--spacing-unit) * 4);
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--color-text);
}

.text-content h3 {
    font-size: 24px;
    margin-top: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--color-text);
}

.text-content p {
    margin-bottom: calc(var(--spacing-unit) * 2);
    line-height: 1.8;
    color: var(--color-text);
}

.text-content ul, .text-content ol {
    margin-bottom: calc(var(--spacing-unit) * 2);
    padding-left: calc(var(--spacing-unit) * 4);
    color: var(--color-text);
}

.text-content li {
    margin-bottom: calc(var(--spacing-unit) * 1);
    line-height: 1.8;
}

.text-content table {
    width: 100%;
    margin: calc(var(--spacing-unit) * 3) auto;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
}

.text-content th {
    padding: calc(var(--spacing-unit) * 2);
    text-align: left;
    background: var(--color-header);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
}

.text-content td {
    padding: calc(var(--spacing-unit) * 2);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
}

.reviews-section {
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 5);
}

.review-card {
    background: #1a3a2e;
    border-radius: 12px;
    padding: calc(var(--spacing-unit) * 3);
    border: 1px solid rgba(47, 134, 55, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--color-signup);
    box-shadow: 0 8px 16px rgba(47, 134, 55, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

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

.review-author {
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    color: var(--color-text);
}

.review-rating {
    margin-top: calc(var(--spacing-unit) * 0.5);
}

.stars {
    color: #ffc107;
    font-size: 16px;
}

.review-text {
    line-height: 1.6;
    color: var(--color-text);
}

.review-form-wrapper {
    background: #1a3a2e;
    border-radius: 12px;
    padding: calc(var(--spacing-unit) * 4);
    max-width: 600px;
    margin: 0 auto;
}

.form-title {
    font-size: 24px;
    margin-bottom: calc(var(--spacing-unit) * 3);
    text-align: center;
    color: var(--color-text);
}

.form-group {
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.form-label {
    display: block;
    margin-bottom: calc(var(--spacing-unit) * 1);
    font-weight: 600;
    color: var(--color-text);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: calc(var(--spacing-unit) * 1.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-signup);
    background: rgba(255, 255, 255, 0.08);
}

.btn-submit {
    background: var(--color-signup);
    color: #fff;
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 5);
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #267a2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 134, 55, 0.5);
}

.form-success-message {
    background: linear-gradient(135deg, #1a3a2e 0%, #0d2419 100%);
    border-radius: 12px;
    padding: calc(var(--spacing-unit) * 3);
    text-align: center;
    border: 2px solid var(--color-signup);
}

.form-success-message.hidden {
    display: none;
}

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

.main-footer {
    background: linear-gradient(135deg, var(--color-header) 0%, #1a4a7d 100%);
    padding: calc(var(--spacing-unit) * 6) 0 calc(var(--spacing-unit) * 3) 0;
    margin-top: calc(var(--spacing-unit) * 6);
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing-unit) * 4);
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.footer-logo {
    max-width: 160px;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.footer-description {
    color: var(--color-text);
    line-height: 1.6;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--color-text);
}

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

.footer-menu-item {
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    color: var(--color-text);
}

.footer-link {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-providers,
.footer-payments {
    margin-bottom: calc(var(--spacing-unit) * 4);
    text-align: center;
}

.providers-title,
.payments-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--color-text);
}

.providers-logos,
.payments-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 2);
}

.provider-logo,
.payment-logo {
    padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 600;
}

.footer-legal {
    text-align: center;
    padding-top: calc(var(--spacing-unit) * 3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-text {
    color: var(--color-text);
    font-size: 14px;
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.legal-links {
    margin-top: calc(var(--spacing-unit) * 2);
}

.legal-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--color-signup);
}

.separator {
    margin: 0 calc(var(--spacing-unit) * 1);
    color: var(--color-text);
}

.fixed-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, var(--color-signup) 0%, #267a2d 100%);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    padding: calc(var(--spacing-unit) * 2);
}

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

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

.widget-btn {
    background: #fff;
    color: var(--color-signup);
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 4);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.widget-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--color-signup);
}

.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .header-wrapper {
        grid-template-columns: auto 1fr;
    }

    .desktop-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-only {
        display: block !important;
    }

    .online-counter {
        display: none;
    }

    .slider-container {
        height: 400px;
    }

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

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

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

    .bonus-grid,
    .screenshots-grid {
        display: none;
    }

    .desktop-view {
        display: none !important;
    }

    .mobile-view {
        display: block !important;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 3);
    }

    .widget-content {
        flex-direction: column;
        gap: calc(var(--spacing-unit) * 2);
        text-align: center;
    }

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

    .text-content h1 {
        font-size: 28px;
    }

    #wheelCanvas {
        width: 300px !important;
        height: 300px !important;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 300px;
    }

    .slide-content {
        padding: calc(var(--spacing-unit) * 2);
    }

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

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

    .bonus-amount {
        font-size: 36px;
    }
}

.elementor-widget-container {
    margin: 0;
    padding: 0;
}

.wp-block-group {
    margin: 0;
    padding: 0;
}

.entry-content > * {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.lsnyd {
    max-width: 980px;
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(180deg, rgba(18, 42, 29, 0.98), rgba(12, 34, 14, 0.99));
    border: 1px solid rgba(47, 134, 55, 0.22);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    color: #e8f0e8;
    font-family: Inter, system-ui, -apple-system, sans-serif;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

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

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

.lsnyd h1,
.lsnyd h2,
.lsnyd h3,
.lsnyd h4,
.lsnyd h5,
.lsnyd h6 {
    margin: 0 0 18px;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.28;
}

.lsnyd h1 {
    font-size: 42px;
    margin-bottom: 24px;
}

.lsnyd h2 {
    font-size: 30px;
    margin-top: 44px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(47, 134, 55, 0.22);
}

.lsnyd h3 {
    font-size: 24px;
    margin-top: 32px;
    color: #7ee894;
}

.lsnyd h4 {
    font-size: 20px;
    margin-top: 26px;
}

.lsnyd h5 {
    font-size: 18px;
    margin-top: 22px;
}

.lsnyd h6 {
    font-size: 16px;
    margin-top: 20px;
    color: #ffd54f;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lsnyd p {
    margin: 0 0 18px;
    font-size: 17px;
    color: #e8f0e8;
}

.lsnyd ul,
.lsnyd ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.lsnyd li {
    margin-bottom: 10px;
    color: #d8e7da;
}

.lsnyd ul li::marker,
.lsnyd ol li::marker {
    color: #5cd875;
}

.lsnyd a {
    color: #5cd875;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
    word-break: break-word;
}

.lsnyd a:hover {
    color: #7ee894;
}

.lsnyd strong,
.lsnyd b {
    color: #ffffff;
    font-weight: 700;
}

.lsnyd em,
.lsnyd i {
    color: #a8b8ac;
}

.lsnyd table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 14px;
    border: 1px solid rgba(47, 134, 55, 0.2);
    background: rgba(255, 255, 255, 0.02);
}

.lsnyd thead,
.lsnyd tbody,
.lsnyd tr {
    width: 100%;
}

.lsnyd th,
.lsnyd td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border: 1px solid rgba(47, 134, 55, 0.16);
    white-space: nowrap;
}

.lsnyd th {
    background: #0d2f56;
    color: #ffffff;
    font-weight: 700;
}

.lsnyd td {
    background: rgba(255, 255, 255, 0.02);
    color: #e8f0e8;
}

.lsnyd tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.04);
}

.lsnyd blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    border-left: 4px solid #2f8637;
    border-radius: 0 12px 12px 0;
    background: rgba(47, 134, 55, 0.08);
    color: #d8e7da;
}

.lsnyd hr {
    border: 0;
    border-top: 1px solid rgba(47, 134, 55, 0.2);
    margin: 30px 0;
}

@media (max-width: 991px) {
    .lsnyd {
        margin: 32px auto;
        padding: 32px 24px;
        border-radius: 18px;
    }

    .lsnyd h1 {
        font-size: 34px;
    }

    .lsnyd h2 {
        font-size: 26px;
        margin-top: 38px;
    }

    .lsnyd h3 {
        font-size: 22px;
    }

    .lsnyd p,
    .lsnyd li {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .lsnyd {
        margin: 24px auto;
        padding: 24px 18px;
        border-radius: 16px;
        line-height: 1.68;
    }

    .lsnyd h1 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .lsnyd h2 {
        font-size: 22px;
        margin-top: 30px;
        padding-bottom: 10px;
    }

    .lsnyd h3 {
        font-size: 19px;
        margin-top: 24px;
    }

    .lsnyd h4 {
        font-size: 17px;
    }

    .lsnyd h5,
    .lsnyd h6 {
        font-size: 15px;
    }

    .lsnyd p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .lsnyd ul,
    .lsnyd ol {
        padding-left: 20px;
        margin-bottom: 20px;
    }

    .lsnyd li {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .lsnyd table {
        margin: 22px 0;
    }

    .lsnyd th,
    .lsnyd td {
        padding: 10px 12px;
        font-size: 14px;
    }

    .lsnyd blockquote {
        padding: 16px;
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .lsnyd {
        margin: 16px auto;
        padding: 18px 14px;
        border-radius: 14px;
    }

    .lsnyd h1 {
        font-size: 24px;
    }

    .lsnyd h2 {
        font-size: 20px;
    }

    .lsnyd h3 {
        font-size: 17px;
    }

    .lsnyd p,
    .lsnyd li {
        font-size: 14px;
    }

    .lsnyd th,
    .lsnyd td {
        padding: 9px 10px;
        font-size: 13px;
    }
}

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

    .q9k3m .mx9k2 {
        padding-left: 14px;
        padding-right: 14px;
    }

    .q9k3m .header-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .q9k3m .header-left {
        flex: 0 0 auto;
    }

    .q9k3m .logo-img {
        width: 76px;
        height: auto;
        display: block;
    }

    .q9k3m .desktop-nav {
        display: none !important;
    }

    .q9k3m .header-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        flex: 1 1 auto;
    }

    .q9k3m .online-counter {
        display: none !important;
    }

    .q9k3m .header-buttons {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .q9k3m .btn-login,
    .q9k3m .btn-signup {
        padding: 8px 10px;
        font-size: 13px;
        line-height: 1.2;
        border-radius: 8px;
        white-space: nowrap;
    }

    .q9k3m .burger-menu,
    .q9k3m .mobile-only {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    .q9k3m .burger-menu {
        width: 44px;
        height: 44px;
        min-width: 44px;
        padding: 0;
        margin: 0;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
        position: relative;
        z-index: 2100;
        flex-shrink: 0;
    }

    .q9k3m .burger-line {
        display: block;
        width: 20px;
        height: 2px;
        background: #ffffff;
        border-radius: 999px;
    }

    .q9k3m .mobile-menu {
        display: block;
        width: min(320px, 86vw);
        max-width: 320px;
        padding: 20px 16px;
        background: #0d2f56;
        z-index: 2200;
    }

    .q9k3m .mobile-menu-header {
        margin-bottom: 20px;
    }

    .q9k3m .mobile-menu-title {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
    }

    .q9k3m .close-mobile-menu {
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        font-size: 24px;
        line-height: 1;
    }

    .q9k3m .mobile-nav-link {
        padding: 12px 14px;
        border-radius: 10px;
        font-size: 15px;
        color: #e8f0e8;
        background: rgba(255, 255, 255, 0.03);
    }

    .q9k3m .mobile-nav-item {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {


    .q9k3m .btn-login {
        padding: 8px 12px;
        font-size: 12px;
    }

    .q9k3m .burger-menu {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .q9k3m .logo-img {
        width: 68px;
    }
}

.g3k8x,
.n8k2m {
    margin: 40px 0;
}

.g3k8x .section-title,
.n8k2m .section-title {
    margin-bottom: 28px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
}

.g3k8x .bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.g3k8x .bonus-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(18, 42, 29, 0.98), rgba(12, 34, 14, 0.98));
    border: 1px solid rgba(47, 134, 55, 0.22);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.g3k8x .bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
    border-color: rgba(92, 216, 117, 0.45);
}

.g3k8x .bonus-card.featured {
    border-color: rgba(255, 213, 79, 0.45);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.g3k8x .featured-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #ffd54f;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
}

.g3k8x .bonus-icon {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 18px;
}

.g3k8x .bonus-card h3 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
    color: #ffffff;
}

.g3k8x .bonus-amount {
    margin-bottom: 14px;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 800;
    color: #7ee894;
}

.g3k8x .bonus-card.featured .bonus-amount {
    color: #ffd54f;
}

.g3k8x .bonus-card p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.65;
    color: #d8e7da;
}

.g3k8x .bonus-features {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}

.g3k8x .bonus-features li {
    position: relative;
    padding: 10px 0 10px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #e8f0e8;
    font-size: 15px;
    line-height: 1.5;
}

.g3k8x .bonus-features li:last-child {
    border-bottom: 0;
}

.g3k8x .bonus-features li::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2f8637;
    box-shadow: 0 0 0 4px rgba(47, 134, 55, 0.14);
}

.g3k8x .btn-bonus {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    width: 100%;
    padding: 12px 18px;
    border-radius: 12px;
    background: linear-gradient(180deg, #2f8637, #267a2d);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.g3k8x .btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(47, 134, 55, 0.32);
    color: #ffffff;
}

.g3k8x .bonus-slider-mobile {
    display: none;
}

.g3k8x .bonus-slider-track {
    display: flex;
    gap: 16px;
}

.g3k8x .slider-dots,
.n8k2m .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.g3k8x .slider-dots .dot,
.n8k2m .slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.g3k8x .slider-dots .dot.active,
.n8k2m .slider-dots .dot.active {
    width: 28px;
    background: #2f8637;
}

.n8k2m .screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.n8k2m .screenshot-item {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(47, 134, 55, 0.18);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.n8k2m .screenshot-item:hover {
    transform: translateY(-6px);
    border-color: rgba(92, 216, 117, 0.42);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.n8k2m .screenshot-item img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.n8k2m .screenshots-slider-mobile {
    display: none;
}

.n8k2m .screenshots-slider-track {
    display: flex;
    gap: 16px;
}

@media (max-width: 991px) {
    .g3k8x .section-title,
    .n8k2m .section-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .g3k8x .bonus-grid,
    .n8k2m .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .g3k8x .bonus-card {
        padding: 24px 20px;
    }

    .g3k8x .bonus-card h3 {
        font-size: 22px;
    }

    .g3k8x .bonus-amount {
        font-size: 34px;
    }

    .n8k2m .screenshot-item img {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .g3k8x,
    .n8k2m {
        margin: 28px 0;
    }

    .g3k8x .section-title,
    .n8k2m .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .g3k8x .desktop-view,
    .n8k2m .desktop-view {
        display: none !important;
    }

    .g3k8x .mobile-view,
    .n8k2m .mobile-view {
        display: block !important;
    }

    .g3k8x .bonus-slider-mobile,
    .n8k2m .screenshots-slider-mobile {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .g3k8x .bonus-slider-mobile::-webkit-scrollbar,
    .n8k2m .screenshots-slider-mobile::-webkit-scrollbar {
        display: none;
    }

    .g3k8x .bonus-slider-track,
    .n8k2m .screenshots-slider-track {
        width: max-content;
    }

    .g3k8x .bonus-slider-track .bonus-card {
        width: min(86vw, 320px);
        min-width: min(86vw, 320px);
        scroll-snap-align: start;
    }

    .n8k2m .screenshots-slider-track .screenshot-item {
        width: min(86vw, 320px);
        min-width: min(86vw, 320px);
        scroll-snap-align: start;
    }

    .n8k2m .screenshots-slider-track .screenshot-item img {
        height: 220px;
    }

    .g3k8x .bonus-slider-mobile,
    .n8k2m .screenshots-slider-mobile {
        scroll-snap-type: x mandatory;
    }

    .g3k8x .bonus-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .g3k8x .featured-badge {
        top: 12px;
        right: 12px;
        font-size: 11px;
        padding: 6px 10px;
    }

    .g3k8x .bonus-icon {
        font-size: 36px;
        margin-bottom: 14px;
    }

    .g3k8x .bonus-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .g3k8x .bonus-amount {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .g3k8x .bonus-card p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .g3k8x .bonus-features li {
        font-size: 14px;
        padding: 9px 0 9px 20px;
    }

    .g3k8x .btn-bonus {
        min-height: 46px;
        font-size: 14px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .g3k8x .section-title,
    .n8k2m .section-title {
        font-size: 22px;
    }

    .g3k8x .bonus-slider-track .bonus-card,
    .n8k2m .screenshots-slider-track .screenshot-item {
        width: 84vw;
        min-width: 84vw;
    }

    .g3k8x .bonus-card {
        padding: 20px 16px;
    }

    .g3k8x .bonus-card h3 {
        font-size: 18px;
    }

    .g3k8x .bonus-amount {
        font-size: 26px;
    }

    .g3k8x .bonus-card p,
    .g3k8x .bonus-features li {
        font-size: 14px;
    }

    .n8k2m .screenshots-slider-track .screenshot-item img {
        height: 200px;
    }
}