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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #090f1e;
    color: #e8e8e8;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.qw3r8t5y {
    flex: 1;
}

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

.header-w9k4m {
    background-color: #141b2e;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideDown-k7m3p 0.5s ease-out;
}

@keyframes slideDown-k7m3p {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

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

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

.header-nav-m4k8p {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu-z7k3m {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link-w4k7n {
    color: #e8e8e8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-link-w4k7n:hover {
    color: #19ac5a;
    background-color: rgba(25, 172, 90, 0.1);
}

.nav-icon-z8m2k {
    width: 20px;
    height: 20px;
}

.header-actions-k7m9p {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviews-counter-m8k3n {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: rgba(25, 172, 90, 0.1);
    border-radius: 20px;
    font-size: 14px;
}

.counter-icon-p4k7m {
    width: 18px;
    height: 18px;
}

.btn-login-n4k8m {
    background-color: #1f2841;
    color: #e8e8e8;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-login-n4k8m:hover {
    background-color: #2a3550;
    border-color: #19ac5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 172, 90, 0.2);
}

.btn-register-p7m3k {
    background: linear-gradient(135deg, #19ac5a 0%, #15934d 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(25, 172, 90, 0.3);
}

.btn-register-p7m3k:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(25, 172, 90, 0.4);
}

.btn-review-w6k9m {
    background-color: transparent;
    color: #19ac5a;
    padding: 10px 20px;
    border: 1px solid #19ac5a;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-review-w6k9m:hover {
    background-color: #19ac5a;
    color: #fff;
}

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

.burger-line-m3k7p {
    width: 25px;
    height: 3px;
    background-color: #e8e8e8;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hero-z9x4c2 {
    position: relative;
    padding: 60px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-bg-k5m8n {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-k5m8n::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(9, 15, 30, 0.7) 0%, rgba(9, 15, 30, 0.95) 100%);
}

.hero-img-p2l9r {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-f4g8k {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(20, 27, 46, 0.95) 0%, rgba(31, 40, 65, 0.95) 100%);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp-m7k3p 0.8s ease-out;
}

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

.casino-info-w2q5t {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.casino-logo-r8m3n {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.rating-main-t5y7k {
    text-align: center;
}

.rating-stars-p9n4m {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 32px;
}

.star-filled-z1x8c {
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.star-half-b6v2n {
    color: #ffd700;
    opacity: 0.5;
}

.rating-value-k3m7j {
    font-size: 24px;
    font-weight: 700;
    color: #19ac5a;
    margin-left: 12px;
}

.bonus-info-l8p4w {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(25, 172, 90, 0.2) 0%, rgba(21, 147, 77, 0.2) 100%);
    border-radius: 12px;
    border: 2px solid #19ac5a;
}

.bonus-text-m9r6t {
    font-size: 20px;
    font-weight: 700;
    color: #19ac5a;
}

.hero-buttons-y4k8n {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-z7m3k {
    background: linear-gradient(135deg, #19ac5a 0%, #15934d 100%);
    color: #fff;
    padding: 16px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(25, 172, 90, 0.4);
    border: none;
    cursor: pointer;
}

.btn-primary-z7m3k:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(25, 172, 90, 0.5);
}

.btn-secondary-p5n9w {
    background-color: #1f2841;
    color: #e8e8e8;
    padding: 16px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid #19ac5a;
}

.btn-secondary-p5n9w:hover {
    background-color: #2a3550;
    transform: translateY(-3px);
}

.rating-distribution-j6t2m {
    position: relative;
    z-index: 1;
    background: rgba(20, 27, 46, 0.95);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-title-n8k4p {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #19ac5a;
}

.rating-bar-item-w7q3r {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.rating-label-v4m8z {
    min-width: 40px;
    font-weight: 600;
    color: #ffd700;
}

.rating-bar-bg-l2p6n {
    flex: 1;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.rating-bar-fill-k9r4t {
    height: 100%;
    background: linear-gradient(90deg, #19ac5a 0%, #15934d 100%);
    transition: width 1s ease-out;
    border-radius: 5px;
}

.rating-count-j3m8y {
    min-width: 40px;
    text-align: right;
    font-weight: 600;
    color: #b8b8b8;
}

.detailed-ratings-m4n8k {
    position: relative;
    z-index: 1;
    background: rgba(20, 27, 46, 0.95);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title-p7r2w {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #19ac5a;
    text-align: center;
}

.rating-params-z9k4m {
    display: grid;
    gap: 16px;
}

.rating-param-item-j6t3n {
    display: flex;
    align-items: center;
    gap: 16px;
}

.param-label-w8q5r {
    min-width: 160px;
    font-weight: 600;
    color: #e8e8e8;
}

.param-value-n3k7m {
    min-width: 60px;
    text-align: right;
    font-weight: 700;
    color: #19ac5a;
    font-size: 18px;
}

.rating-bar-green-v4m2z {
    background: linear-gradient(90deg, #19ac5a 0%, #15934d 100%);
}

.casino-details-k3m9p {
    position: relative;
    z-index: 1;
    background: rgba(20, 27, 46, 0.95);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.detail-item-m7q3t {
    padding: 16px;
    background: rgba(31, 40, 65, 0.5);
    border-radius: 8px;
    border-left: 3px solid #19ac5a;
    transition: all 0.3s ease;
}

.detail-item-m7q3t:hover {
    background: rgba(31, 40, 65, 0.8);
    transform: translateX(4px);
}

.detail-label-z5k8r {
    display: block;
    font-size: 14px;
    color: #b8b8b8;
    margin-bottom: 6px;
}

.detail-value-p2n6w {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #e8e8e8;
}

.leave-review-section-m8k3n {
    padding: 60px 0;
}

.bonus-banner-z4p7k {
    background: linear-gradient(135deg, rgba(25, 172, 90, 0.2) 0%, rgba(21, 147, 77, 0.2) 100%);
    border: 2px solid #19ac5a;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    animation: pulse-k8m3p 2s ease-in-out infinite;
}

@keyframes pulse-k8m3p {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.bonus-banner-title-n5q8t {
    font-size: 32px;
    font-weight: 700;
    color: #19ac5a;
    margin-bottom: 12px;
}

.bonus-banner-text-k6m3p {
    font-size: 18px;
    color: #e8e8e8;
    margin-bottom: 24px;
}

.btn-bonus-j8r4n {
    background: linear-gradient(135deg, #19ac5a 0%, #15934d 100%);
    color: #fff;
    padding: 16px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(25, 172, 90, 0.4);
}

.btn-bonus-j8r4n:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(25, 172, 90, 0.5);
}

.review-form-wrapper-p3n7k {
    background: rgba(20, 27, 46, 0.95);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-form-t9m4w {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row-k5n8p {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-label-j4k9r {
    font-weight: 600;
    color: #e8e8e8;
    font-size: 15px;
}

.form-input-z8n2m {
    padding: 14px 18px;
    background-color: rgba(31, 40, 65, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e8e8e8;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.form-input-z8n2m:focus {
    outline: none;
    border-color: #19ac5a;
    box-shadow: 0 0 0 3px rgba(25, 172, 90, 0.1);
}

.form-textarea-p6m8k {
    padding: 14px 18px;
    background-color: rgba(31, 40, 65, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e8e8e8;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
    resize: vertical;
}

.form-textarea-p6m8k:focus {
    outline: none;
    border-color: #19ac5a;
    box-shadow: 0 0 0 3px rgba(25, 172, 90, 0.1);
}

.rating-inputs-n4k7m {
    padding: 24px;
    background: rgba(31, 40, 65, 0.5);
    border-radius: 12px;
}

.rating-inputs-title-w9r3p {
    font-size: 18px;
    font-weight: 700;
    color: #19ac5a;
    margin-bottom: 20px;
}

.rating-input-grid-z5m8k {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.rating-input-item-j7n4p {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-input-label-m3k9w {
    font-size: 14px;
    font-weight: 600;
    color: #e8e8e8;
}

.star-rating-input-p8r2n {
    display: flex;
    gap: 4px;
}

.star-input-k4m7z {
    font-size: 28px;
    color: rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-input-k4m7z:hover,
.star-input-k4m7z.active-k9m2p {
    color: #ffd700;
    transform: scale(1.2);
}

.btn-submit-k9r4n {
    margin-top: 16px;
}

.form-success-message-p7k3m {
    text-align: center;
    padding: 60px 40px;
    background: rgba(25, 172, 90, 0.1);
    border: 2px solid #19ac5a;
    border-radius: 16px;
}

.success-icon-z9m4k {
    font-size: 72px;
    color: #19ac5a;
    margin-bottom: 20px;
}

.success-title-n6k8p {
    font-size: 28px;
    font-weight: 700;
    color: #19ac5a;
    margin-bottom: 12px;
}

.success-text-w4m7r {
    font-size: 18px;
    color: #e8e8e8;
}

.reviews-section-k7m3n {
    padding: 60px 0;
}

.reviews-container-m8k3n {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.review-card-z7k4m {
    background: rgba(20, 27, 46, 0.95);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.review-card-z7k4m:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(25, 172, 90, 0.3);
}

.review-header-p9m6k {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.review-author-info-w4k8n {
    display: flex;
    gap: 16px;
    align-items: center;
}

.review-avatar-k6m3p {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #19ac5a;
}

.review-meta-z8m2k {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.review-author-name-m4k7p {
    font-size: 18px;
    font-weight: 700;
    color: #e8e8e8;
}

.review-country-n6k9m {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #b8b8b8;
}

.country-flag-p3k8m {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.review-date-w7k4n {
    font-size: 14px;
    color: #b8b8b8;
}

.review-rating-container-k9m3p {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.rating-display-z6k8m {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-value-m7k4p {
    font-size: 24px;
    font-weight: 700;
    color: #19ac5a;
}

.stars-display-p8m2k {
    display: flex;
    gap: 2px;
}

.star-icon-k4m9n {
    font-size: 20px;
}

.star-filled-z7m3k {
    color: #ffd700;
}

.star-empty-w6k2m {
    color: rgba(255, 215, 0, 0.2);
}

.rating-details-toggle-n5k8m {
    background: transparent;
    border: 1px solid #19ac5a;
    color: #19ac5a;
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.rating-details-toggle-n5k8m:hover {
    background-color: #19ac5a;
    color: #fff;
}

.rating-details-panel-m9k4p {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: rgba(31, 40, 65, 0.98);
    border: 1px solid #19ac5a;
    border-radius: 12px;
    padding: 20px;
    min-width: 250px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.detail-rating-item-z7k3m {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-rating-item-z7k3m:last-child {
    border-bottom: none;
}

.detail-label-p4k9m {
    font-size: 14px;
    color: #e8e8e8;
}

.detail-stars-w6k2n {
    display: flex;
    gap: 2px;
}

.star-small-k8m3p {
    font-size: 16px;
}

.review-title-m7k4p {
    font-size: 22px;
    font-weight: 700;
    color: #e8e8e8;
    margin-bottom: 12px;
}

.review-source-info-k9m3p {
    font-size: 14px;
    color: #b8b8b8;
    margin-bottom: 16px;
}

.source-label-z6k8m {
    font-weight: 600;
}

.source-link-p4m7k {
    color: #19ac5a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.source-link-p4m7k:hover {
    color: #15934d;
    text-decoration: underline;
}

.review-body-wrapper-n5k8m {
    margin-bottom: 20px;
}

.review-text-content-z7m4k {
    color: #e8e8e8;
    font-size: 16px;
    line-height: 1.7;
}

.review-text-collapsed-p9k3m {
    max-height: 100px;
    overflow: hidden;
    position: relative;
}

.review-text-collapsed-p9k3m::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(20, 27, 46, 0.95) 100%);
}

.review-expand-button-k6m9n {
    background: transparent;
    border: none;
    color: #19ac5a;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    margin-top: 8px;
    transition: color 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.review-expand-button-k6m9n:hover {
    color: #15934d;
}

.review-pros-cons-m8k3p {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(31, 40, 65, 0.5);
    border-radius: 12px;
}

.pros-title-p6m9k,
.cons-title-m5k7p {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pros-title-p6m9k {
    color: #19ac5a;
}

.cons-title-m5k7p {
    color: #ff5555;
}

.pros-list-w4k8n,
.cons-list-z8k4n {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pro-item-k7m3p {
    color: #e8e8e8;
    font-size: 15px;
    padding-left: 8px;
}

.con-item-p6m8k {
    color: #e8e8e8;
    font-size: 15px;
    padding-left: 8px;
}

.review-actions-footer-k9m4p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-votes-section-z7k3m {
    display: flex;
    gap: 12px;
}

.vote-button-like-m6k8n,
.vote-button-dislike-n8k3p {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(31, 40, 65, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
    color: #e8e8e8;
}

.vote-button-like-m6k8n:hover {
    background-color: rgba(25, 172, 90, 0.2);
    border-color: #19ac5a;
}

.vote-button-dislike-n8k3p:hover {
    background-color: rgba(255, 85, 85, 0.2);
    border-color: #ff5555;
}

.vote-icon-p4k9m {
    font-size: 18px;
}

.vote-count-w7k2m {
    font-weight: 600;
}

.reply-toggle-button-z5k9m {
    background: transparent;
    border: 1px solid #19ac5a;
    color: #19ac5a;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.reply-toggle-button-z5k9m:hover {
    background-color: #19ac5a;
    color: #fff;
}

.reply-form-container-m7k4p {
    margin-top: 20px;
    padding: 20px;
    background: rgba(31, 40, 65, 0.5);
    border-radius: 12px;
}

.reply-textarea-k9m3n {
    width: 100%;
    padding: 14px 18px;
    background-color: rgba(20, 27, 46, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e8e8e8;
    font-size: 15px;
    resize: vertical;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 12px;
}

.reply-textarea-k9m3n:focus {
    outline: none;
    border-color: #19ac5a;
}

.reply-form-actions-z6k8m {
    display: flex;
    gap: 12px;
}

.reply-submit-button-p8m2k {
    background: linear-gradient(135deg, #19ac5a 0%, #15934d 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.reply-submit-button-p8m2k:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 172, 90, 0.4);
}

.reply-cancel-button-w4k7n {
    background-color: #1f2841;
    color: #e8e8e8;
    padding: 10px 24px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.reply-cancel-button-w4k7n:hover {
    background-color: #2a3550;
}

.bonus-banner-center-m9k2p {
    text-align: center;
}

.content-section-p9m4k {
    padding: 60px 0;
}

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

.video-wrapper-z7m4k {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

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

.text-content-section-m6k9p {
    background: rgba(20, 27, 46, 0.95);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-content-wrapper-p4m8k {
    color: #e8e8e8;
    font-size: 17px;
    line-height: 1.8;
}

.text-content-wrapper-p4m8k h1,
.text-content-wrapper-p4m8k h2,
.text-content-wrapper-p4m8k h3 {
    color: #19ac5a;
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.text-content-wrapper-p4m8k h1 {
    font-size: 32px;
}

.text-content-wrapper-p4m8k h2 {
    font-size: 26px;
}

.text-content-wrapper-p4m8k h3 {
    font-size: 22px;
}

.text-content-wrapper-p4m8k p {
    margin-bottom: 20px;
}

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

.text-content-wrapper-p4m8k li {
    margin-bottom: 10px;
}

.text-content-wrapper-p4m8k table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(31, 40, 65, 0.5);
    border-radius: 8px;
    overflow: hidden;
}

.text-content-wrapper-p4m8k th,
.text-content-wrapper-p4m8k td {
    padding: 16px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-content-wrapper-p4m8k th {
    background-color: rgba(25, 172, 90, 0.2);
    font-weight: 700;
    color: #19ac5a;
}

.text-content-wrapper-p4m8k a {
    color: #19ac5a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.text-content-wrapper-p4m8k a:hover {
    color: #15934d;
    text-decoration: underline;
}

.author-info-z8k3m {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(31, 40, 65, 0.5);
    border-radius: 12px;
    margin-top: 40px;
    border-left: 4px solid #19ac5a;
}

.author-avatar-p7m2k img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #19ac5a;
}

.author-details-w4n9k {
    flex: 1;
}

.author-name-m3k7p {
    font-size: 20px;
    font-weight: 700;
    color: #19ac5a;
    margin-bottom: 8px;
}

.author-bio-z6m2n {
    color: #e8e8e8;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.author-links-k9p4m {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.author-link-j7m3k {
    color: #19ac5a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.author-link-j7m3k:hover {
    color: #15934d;
    text-decoration: underline;
}

.footer-k9m4p {
    background-color: #141b2e;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-column-w4k8n {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-img-m9k3n {
    height: 40px;
    width: auto;
}

.footer-description-z5k7m {
    color: #b8b8b8;
    font-size: 14px;
    line-height: 1.6;
}

.footer-title-n8k4m {
    font-size: 18px;
    font-weight: 700;
    color: #19ac5a;
    margin-bottom: 8px;
}

.footer-menu-p7m3k {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link-w3k8m {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-link-w3k8m:hover {
    color: #19ac5a;
}

.trust-logos-m7k4p {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-logo-item-z9k3m {
    width: 60px;
    height: 40px;
    background: rgba(31, 40, 65, 0.5);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.trust-logo-item-z9k3m img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer-bottom-p8m3k {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods-k7m9n {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.payment-label-w4k6m {
    font-weight: 600;
    color: #e8e8e8;
}

.payment-icons-z5m8k {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-icons-z5m8k img {
    height: 30px;
    width: auto;
    background: rgba(31, 40, 65, 0.5);
    padding: 6px 10px;
    border-radius: 6px;
}

.footer-legal-m9k4p {
    text-align: center;
    color: #b8b8b8;
    font-size: 14px;
}

.copyright-text-z7k3m,
.disclaimer-text-n6k8m,
.site-info-p4k7m {
    margin-bottom: 8px;
}

.floating-widget-k8m3p {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    animation: slideInRight-p7k3m 0.5s ease-out;
}

@keyframes slideInRight-p7k3m {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.widget-content-z7n4k {
    background: linear-gradient(135deg, #19ac5a 0%, #15934d 100%);
    padding: 20px 28px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(25, 172, 90, 0.5);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.widget-bonus-text-m9p2r {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.widget-btn-k6m8n {
    background-color: #fff;
    color: #19ac5a;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.widget-btn-k6m8n:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .details-grid-w8n4k {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .rating-input-grid-z5m8k {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .header-nav-m4k8p {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: #141b2e;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .header-nav-m4k8p.active-z8m4k {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu-z7k3m {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .nav-item-p9m6k {
        width: 100%;
    }

    .nav-link-w4k7n {
        width: 100%;
        padding: 12px 16px;
    }

    .header-actions-k7m9p {
        flex-wrap: wrap;
        gap: 8px;
    }

    .reviews-counter-m8k3n {
        order: -1;
        width: 100%;
        justify-content: center;
    }

    .burger-menu-z8k4n {
        display: flex;
    }

    .btn-review-w6k9m {
        display: none;
    }

    .hero-card-f4g8k {
        padding: 24px;
    }

    .casino-logo-r8m3n {
        width: 120px;
        height: 120px;
    }

    .rating-stars-p9n4m {
        font-size: 24px;
    }

    .rating-value-k3m7j {
        font-size: 20px;
    }

    .bonus-text-m9r6t {
        font-size: 16px;
    }

    .hero-buttons-y4k8n {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-z7m3k,
    .btn-secondary-p5n9w {
        width: 100%;
        text-align: center;
        padding: 14px 32px;
        font-size: 16px;
    }

    .review-header-p9m6k {
        flex-direction: column;
    }

    .rating-display-z6k8m {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-row-k5n8p {
        grid-template-columns: 1fr;
    }

    .rating-input-grid-z5m8k {
        grid-template-columns: 1fr;
    }

    .review-actions-footer-k9m4p {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .review-votes-section-z7k3m {
        justify-content: space-between;
    }

    .author-info-z8k3m {
        flex-direction: column;
        text-align: center;
    }

    .author-links-k9p4m {
        justify-content: center;
    }

    .floating-widget-k8m3p {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .widget-content-z7n4k {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .widget-bonus-text-m9p2r {
        font-size: 14px;
        text-align: left;
    }

    .widget-btn-k6m8n {
        padding: 10px 24px;
        font-size: 14px;
    }

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

    .bonus-banner-title-n5q8t {
        font-size: 24px;
    }

    .bonus-banner-text-k6m3p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container-v7h3j {
        padding: 0 16px;
    }

    .details-grid-w8n4k {
        grid-template-columns: 1fr;
    }

    .param-label-w8q5r {
        min-width: 120px;
        font-size: 14px;
    }

    .rating-value-m7k4p {
        font-size: 20px;
    }

    .review-card-z7k4m {
        padding: 20px;
    }

    .review-avatar-k6m3p {
        width: 50px;
        height: 50px;
    }

    .review-author-name-m4k7p {
        font-size: 16px;
    }

    .review-title-m7k4p {
        font-size: 18px;
    }

    .text-content-wrapper-p4m8k {
        font-size: 16px;
    }

    .text-content-wrapper-p4m8k h1 {
        font-size: 26px;
    }

    .text-content-wrapper-p4m8k h2 {
        font-size: 22px;
    }

    .text-content-wrapper-p4m8k h3 {
        font-size: 18px;
    }
}

.n4b6v8z1 {
    padding-top: 0;
}

.y3m8k7n4 {
    opacity: 0;
}

.w9k2m5p7 {
    visibility: hidden;
}

.elementor-section-z4k9m {
    display: none;
}

.wp-block-spacer-m7k3p {
    height: 20px;
}

.yoast-schema-graph-n8k4m {
    display: none;
}

.container.lsjd {
    --lsjd-bg: #0b1222;
    --lsjd-card: rgba(255, 255, 255, 0.04);
    --lsjd-border: rgba(255, 255, 255, 0.10);
    --lsjd-text: #e9edf5;
    --lsjd-muted: rgba(233, 237, 245, 0.72);
    --lsjd-accent: #19ac5a;
    --lsjd-accent2: #7cf0a8;
    --lsjd-radius: 14px;

    max-width: 980px;
    margin: 0 auto;
    padding: clamp(18px, 3vw, 34px);
    color: var(--lsjd-text);
    background: radial-gradient(900px 420px at 85% -10%, rgba(25, 172, 90, 0.22) 0%, rgba(25, 172, 90, 0.00) 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(9, 15, 30, 0.94) 58%, rgba(20, 27, 46, 0.70) 100%);
    border: 1px solid var(--lsjd-border);
    border-radius: var(--lsjd-radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.38);
}

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

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

.container.lsjd h1,
.container.lsjd h2,
.container.lsjd h3,
.container.lsjd h4 {
    color: var(--lsjd-text);
    letter-spacing: -0.02em;
    line-height: 1.2;
    scroll-margin-top: 92px;
}

.container.lsjd h1 {
    font-size: clamp(26px, 4.4vw, 44px);
    margin: 0 0 14px;
    background: linear-gradient(135deg, var(--lsjd-accent) 0%, var(--lsjd-accent2) 55%, var(--lsjd-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container.lsjd h2 {
    font-size: clamp(20px, 3.2vw, 28px);
    margin: clamp(22px, 3.6vw, 34px) 0 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.container.lsjd h3 {
    font-size: clamp(17px, 2.6vw, 22px);
    margin: clamp(18px, 3vw, 26px) 0 10px;
    color: rgba(233, 237, 245, 0.92);
}

.container.lsjd h4 {
    font-size: clamp(15px, 2.2vw, 18px);
    margin: 18px 0 8px;
    color: rgba(233, 237, 245, 0.90);
}

.container.lsjd p {
    font-size: clamp(15px, 2.2vw, 17px);
    line-height: 1.85;
    color: var(--lsjd-muted);
    margin: 0 0 14px;
}

.container.lsjd a {
    color: var(--lsjd-accent2);
    text-decoration: none;
    border-bottom: 1px solid rgba(124, 240, 168, 0.35);
    border-radius: 6px;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.container.lsjd a:hover {
    color: #a7ffd0;
    background: rgba(25, 172, 90, 0.10);
    border-color: rgba(124, 240, 168, 0.75);
}

.container.lsjd strong {
    color: rgba(233, 237, 245, 0.95);
    font-weight: 700;
}

.container.lsjd ul,
.container.lsjd ol {
    margin: 0 0 14px;
    padding-left: 1.2em;
    color: var(--lsjd-muted);
    line-height: 1.9;
}

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

.container.lsjd ul li::marker {
    color: rgba(124, 240, 168, 0.9);
}

.container.lsjd ol li::marker {
    color: rgba(124, 240, 168, 0.9);
    font-weight: 700;
}

.container.lsjd blockquote {
    margin: 18px 0;
    padding: 14px 16px;
    border-left: 4px solid rgba(25, 172, 90, 0.85);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    color: rgba(233, 237, 245, 0.86);
}

.container.lsjd table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 16px 0 18px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.02);
}

.container.lsjd th,
.container.lsjd td {
    text-align: left;
    padding: 12px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(233, 237, 245, 0.86);
    vertical-align: top;
}

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

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

.container.lsjd th {
    background: linear-gradient(135deg, rgba(25, 172, 90, 0.18) 0%, rgba(255, 255, 255, 0.03) 100%);
    color: rgba(233, 237, 245, 0.95);
    font-weight: 700;
}

.container.lsjd tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 900px) {
    .container.lsjd {
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
    }

    .container.lsjd h2 {
        scroll-margin-top: 78px;
    }
}

@media (max-width: 640px) {
    .container.lsjd {
        padding: 16px;
        border-radius: 12px;
    }

    .container.lsjd p {
        line-height: 1.78;
    }

    .container.lsjd ul,
    .container.lsjd ol {
        padding-left: 1.05em;
    }

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

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

@media (prefers-reduced-motion: reduce) {
    .container.lsjd * {
        transition: none;
        scroll-behavior: auto;
    }
}

@media (max-width: 768px) {
    .header-w9k4m {
        padding: 10px 0;
    }

    .header-content-p8m3n {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .header-logo-section-z6k2m {
        flex: 0 0 auto;
        min-width: 0;
    }

    .logo-img-w7n3k {
        height: 38px;
        width: auto;
    }

    .burger-menu-z8k4n {
        display: flex;
        flex: 0 0 auto;
        margin-left: 6px;
        padding: 8px;
    }

    .header-actions-k7m9p {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1 1 auto;
        justify-content: flex-end;
        min-width: 0;
    }

    .reviews-counter-m8k3n {
        display: none;
    }

    .btn-review-w6k9m {
        display: none;
    }

    .btn-login-n4k8m,
    .btn-register-p7m3k {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 10px;
        white-space: nowrap;
    }

    .header-nav-m4k8p {
        position: fixed;
        left: 0;
        right: 0;
        top: 62px;
        background: rgba(20, 27, 46, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
        z-index: 999;
    }

    .header-nav-m4k8p.active-z8m4k {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu-z7k3m {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 14px 14px 16px;
        margin: 0;
    }

    .nav-item-p9m6k {
        width: 100%;
    }

    .nav-link-w4k7n {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 14px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-link-w4k7n:active {
        transform: translateY(1px);
    }

    .nav-icon-z8m2k {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .logo-img-w7n3k {
        height: 34px;
    }

    .btn-login-n4k8m {
        padding: 8px 10px;
    }


    .header-nav-m4k8p {
        top: 58px;
    }
}
