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

:root {
    --color-primary: #450b17;
    --color-secondary: #c7051d;
    --color-accent: #e0e0e0;
    --color-bg: #110d0e;
    --color-text: #e0e0e0;
    --color-text-dark: #1a1a1a;
    --font-main: 'Manrope', sans-serif;
}

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

.site-header {
    background: var(--color-primary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-custom {
}

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

.logo-link {
    display: block;
    text-decoration: none;
}

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

.burger-menu {
    display: none;
}

.burger-btn {
    background: none;
    border: none;
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 0;
}

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

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

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

.burger-btn.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header-actions-mobile {
    display: none;
    gap: 10px;
}

.btn-mobile {
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-reg-mob {
    background: var(--color-secondary);
    color: var(--color-text);
}

.nav-wrapper {
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
}

.nav-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-link:hover {
    color: #fff;
}

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

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

.online-icon {
    font-size: 10px;
}

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

.online-count {
    color: #fff;
}

.btn-header {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
}

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

.btn-login:hover {
    background: #fff;
    transform: translateY(-2px);
}

.btn-signup {
    background: var(--color-secondary);
    color: var(--color-text);
}

.btn-signup:hover {
    background: #d90820;
    transform: translateY(-2px);
}

.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(69, 11, 23, 0.9) 0%, rgba(17, 13, 14, 0.8) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-highlight {
    color: var(--color-secondary);
    font-size: 64px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-accent);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-hero {
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.btn-primary-hero:hover {
    background: #d90820;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(199, 5, 29, 0.4);
}

.btn-secondary-hero {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-secondary-hero:hover {
    background: var(--color-accent);
    color: var(--color-text-dark);
}

.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    color: #4ade80;
    font-size: 18px;
}

.feature-text {
    color: var(--color-accent);
    font-size: 15px;
}

.main-container {
    padding: 60px 0;
}

.content-area {
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-accent);
    font-size: 16px;
    margin-bottom: 40px;
}

.review-content {
    max-width: 900px;
    margin: 0 auto 60px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
}

.main-heading {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

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

.text-content h2 {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.text-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-top: 25px;
    margin-bottom: 12px;
}

.text-content p {
    margin-bottom: 15px;
}

.text-content ul, .text-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

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

.text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

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

.text-content th {
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
}

.bonuses-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.bonuses-slider {
    display: none;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(69, 11, 23, 0.4) 0%, rgba(199, 5, 29, 0.2) 100%);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-secondary);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.bonus-badge-hot {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

.bonus-badge-vip {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

.bonus-icon-wrap {
    margin-bottom: 15px;
}

.bonus-icon-large {
    font-size: 48px;
}

.bonus-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.bonus-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.bonus-description {
    color: var(--color-accent);
    font-size: 15px;
    margin-bottom: 20px;
}

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

.bonus-feature-item {
    color: var(--color-accent);
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.bonus-feature-item:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
}

.btn-bonus {
    display: inline-block;
    padding: 12px 30px;
    background: var(--color-secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-bonus:hover {
    background: #d90820;
    transform: scale(1.05);
}

.proscons-section {
    padding: 60px 0;
}

.proscons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pros-column, .cons-column {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
}

.proscons-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.pros-header {
    border-bottom-color: #4ade80;
}

.cons-header {
    border-bottom-color: #ef4444;
}

.proscons-icon {
    font-size: 28px;
    font-weight: bold;
}

.pros-header .proscons-icon {
    color: #4ade80;
}

.cons-header .proscons-icon {
    color: #ef4444;
}

.proscons-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.proscons-list {
    list-style: none;
    padding: 0;
}

.proscons-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.item-marker {
    font-size: 18px;
    font-weight: bold;
    min-width: 20px;
}

.pros-item .item-marker {
    color: #4ade80;
}

.cons-item .item-marker {
    color: #ef4444;
}

.item-text {
    color: var(--color-accent);
    font-size: 15px;
    line-height: 1.6;
}

.jackpots-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.jackpot-card {
    background: linear-gradient(135deg, rgba(69, 11, 23, 0.4) 0%, rgba(17, 13, 14, 0.6) 100%);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.jackpot-card:hover {
    transform: scale(1.05);
}

.jackpot-featured {
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(199, 5, 29, 0.3);
}

.jackpot-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.jackpot-icon-wrap {
    margin-bottom: 15px;
}

.jackpot-icon {
    font-size: 48px;
}

.jackpot-game-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.jackpot-amount-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.jackpot-currency {
    font-size: 24px;
    color: var(--color-accent);
}

.jackpot-amount {
    font-size: 36px;
    font-weight: 800;
    color: #fbbf24;
}

.jackpot-provider {
    color: var(--color-accent);
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-jackpot {
    display: inline-block;
    padding: 12px 30px;
    background: var(--color-secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-jackpot:hover {
    background: #d90820;
}

.jackpots-note {
    text-align: center;
    color: var(--color-accent);
    font-size: 13px;
    margin-top: 30px;
    font-style: italic;
}

.video-section {
    padding: 60px 0;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto 30px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.video-info {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
}

.video-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.video-info-list {
    list-style: none;
    padding: 0;
}

.video-info-item {
    color: var(--color-accent);
    font-size: 15px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.video-info-item:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

.slotgame-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.slot-machine-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.slot-machine {
    background: linear-gradient(135deg, rgba(69, 11, 23, 0.6) 0%, rgba(17, 13, 14, 0.8) 100%);
    border-radius: 16px;
    padding: 30px;
    border: 3px solid var(--color-secondary);
    box-shadow: 0 10px 40px rgba(199, 5, 29, 0.3);
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.slot-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

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

.balance-label {
    color: var(--color-accent);
    font-size: 14px;
}

.balance-amount {
    color: #fbbf24;
    font-size: 18px;
    font-weight: 700;
}

.balance-currency {
    color: var(--color-accent);
    font-size: 14px;
}

.slot-reels-container {
    margin-bottom: 25px;
}

.slot-reels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.slot-reel {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.reel-symbol {
    font-size: 72px;
    animation: none;
}

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

.slot-reel.spinning .reel-symbol {
    animation: spin 0.1s linear infinite;
}

.slot-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn-spin {
    background: var(--color-secondary);
    color: #fff;
    border: none;
    padding: 15px 50px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

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

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

.bet-amount {
    display: flex;
    gap: 8px;
    align-items: center;
}

.bet-label {
    color: var(--color-accent);
    font-size: 14px;
}

.bet-value {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.slot-result {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
}

.result-content {
}

.result-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.result-text {
    color: var(--color-accent);
    font-size: 15px;
    margin-bottom: 15px;
}

.btn-claim {
    display: inline-block;
    padding: 12px 30px;
    background: #4ade80;
    color: var(--color-text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-claim:hover {
    background: #22c55e;
}

.btn-try-again {
    background: var(--color-secondary);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-try-again:hover {
    background: #d90820;
}

.slot-info {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.slot-info-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.slot-info-list {
    list-style: none;
    padding: 0;
}

.slot-info-item {
    color: var(--color-accent);
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.slot-info-item:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-size: 20px;
}

.author-section {
    padding: 60px 0;
}

.author-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(69, 11, 23, 0.3) 0%, rgba(17, 13, 14, 0.5) 100%);
    border-radius: 16px;
    padding: 40px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.author-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.author-image-wrap {
}

.author-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--color-secondary);
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.author-role {
    color: var(--color-secondary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.author-bio {
    color: var(--color-accent);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.author-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.linkedin-link:hover {
    background: #0077b5;
}

.twitter-link:hover {
    background: #000;
}

.telegram-link:hover {
    background: #0088cc;
}

.social-icon {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.social-text {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

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

.footer-content {
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
}

.footer-brand {
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

.footer-description {
    color: var(--color-accent);
    font-size: 14px;
    line-height: 1.6;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

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

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

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

.footer-link:hover {
    color: #fff;
}

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

.footer-middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-providers, .game-providers {
}

.providers-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.provider-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
}

.provider-logo {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.provider-name {
    color: var(--color-accent);
    font-size: 11px;
}

.footer-bottom {
}

.footer-legal {
    text-align: center;
}

.copyright-text {
    color: var(--color-accent);
    font-size: 14px;
    margin-bottom: 10px;
}

.legal-text {
    color: var(--color-accent);
    font-size: 12px;
    line-height: 1.6;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease;
}

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

.widget-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    position: relative;
}

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

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

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

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

.widget-highlight {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.widget-subtext {
    color: var(--color-accent);
    font-size: 14px;
}

.widget-btn {
    padding: 12px 30px;
    background: #fff;
    color: var(--color-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

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

.widget-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    transition: all 0.3s;
}

.widget-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
    .burger-menu {
        display: block;
    }

    .header-actions-mobile {
        display: flex;
    }

    .nav-wrapper {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-primary);
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-wrapper.active {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .online-counter {
        width: 100%;
        justify-content: center;
    }

    .btn-header {
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-highlight {
        font-size: 48px;
    }

    .bonuses-grid {
        display: none;
    }

    .bonuses-slider {
        display: block;
    }

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

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

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

    .footer-middle {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 767px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .review-content {
        padding: 25px;
    }

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

    .widget-btn {
        width: 100%;
    }

    .slot-header {
        flex-direction: column;
        gap: 10px;
    }
}

.x7m9k3p {
    display: none;
}

.q2n8k5m {
    visibility: hidden;
}

.t9k4m7x {
    opacity: 0;
}

.unused-grid {
    display: grid;
}

.unused-flex {
    display: flex;
}

.wp-legacy-class {
    color: transparent;
}

.bfjf {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    background: linear-gradient(135deg, rgba(69, 11, 23, .25) 0%, rgba(17, 13, 14, .9) 60%, rgba(199, 5, 29, .12) 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bfjf p {
    font-size: 16px;
    line-height: 1.85;
    color: #d6d6d6;
    margin: 0 0 16px;
}

.bfjf h2 {
    margin: 32px 0 14px;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -.5px;
    color: #ffffff;
}

.bfjf h3 {
    margin: 22px 0 10px;
    font-size: 22px;
    font-weight: 800;
    color: #ff4b5f;
}

.bfjf h2:first-of-type {
    margin-top: 22px;
}

.bfjf a {
    color: #ff4b5f;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 75, 95, .35);
    transition: all .25s ease;
}

.bfjf a:hover {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, .6);
}

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

.bfjf li {
    margin-bottom: 10px;
    color: #d8d8d8;
    line-height: 1.7;
    font-size: 15px;
}

.bfjf ul li::marker {
    color: #ff4b5f;
    font-size: 16px;
}

.bfjf ol li::marker {
    color: #ff4b5f;
    font-weight: 800;
}

.bfjf strong {
    color: #ffffff;
    font-weight: 800;
}

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

.bfjf table th {
    background: rgba(69, 11, 23, .85);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.bfjf table td {
    padding: 14px 16px;
    color: #d8d8d8;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

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

.bfjf blockquote {
    margin: 22px 0;
    padding: 18px 18px 18px 20px;
    border-left: 4px solid #c7051d;
    background: rgba(0, 0, 0, .25);
    border-radius: 14px;
    color: #eaeaea;
    font-size: 15px;
    line-height: 1.8;
}

.bfjf hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 28px 0;
}

.bfjf img {
    max-width: 100%;
    border-radius: 16px;
    display: block;
    margin: 18px auto;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .55);
}

.bfjf p:first-child {
    font-size: 17px;
    color: #eeeeee;
}

.bfjf p:first-child::first-letter {
    font-size: 28px;
    font-weight: 900;
    color: #ff4b5f;
    margin-right: 4px;
}

/* Mobile адаптація */
@media (max-width: 1024px) {
    .bfjf {
        padding: 50px 20px;
        border-radius: 18px;
    }

    .bfjf h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .bfjf {
        padding: 40px 16px;
        border-radius: 16px;
    }

    .bfjf h2 {
        font-size: 24px;
        line-height: 1.25;
    }

    .bfjf h3 {
        font-size: 19px;
    }

    .bfjf p {
        font-size: 15px;
    }

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

    .bfjf table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .bfjf {
        padding: 32px 14px;
    }

    .bfjf h2 {
        font-size: 22px;
    }

    .bfjf p:first-child {
        font-size: 15px;
    }
}

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

.k9d3x7m {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(69, 11, 23, .88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .55);
}

.k9d3x7m .p5t8j2n {
    padding: 12px 0;
}

.k9d3x7m .w4h9k6x {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
}

.k9d3x7m .r7m3p9k {
    display: flex;
    align-items: center;
}

.k9d3x7m .x3k8m2d {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.k9d3x7m .n6j4t8p {
    height: 44px;
    width: auto;
    display: block;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .35));
}

.k9d3x7m .q8x2n5k {
    display: none;
}

.k9d3x7m .m4p7j3x {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.k9d3x7m .m4p7j3x:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-1px);
}

.k9d3x7m .t9k3m6x {
    width: 22px;
    height: 2px;
    background: #e0e0e0;
    margin: 0 auto;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}

.k9d3x7m .m4p7j3x.active .t9k3m6x:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.k9d3x7m .m4p7j3x.active .t9k3m6x:nth-child(2) {
    opacity: 0;
}

.k9d3x7m .m4p7j3x.active .t9k3m6x:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.k9d3x7m .x7k2p9m {
    display: none;
    gap: 8px;
    align-items: center;
}

.k9d3x7m .btn-mobile {
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.k9d3x7m .btn-login-mob {
    background: #e0e0e0;
    color: #1a1a1a;
}

.k9d3x7m .btn-reg-mob {
    background: #c7051d;
    color: #fff;
}

.k9d3x7m .btn-mobile:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .35);
}

.k9d3x7m .h3m9x6k {
    display: flex;
    align-items: center;
    gap: 18px;
}

.k9d3x7m .d8k5n2x {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.k9d3x7m .m6k3j8p {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    color: #f2f2f2;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .1px;
    transition: background .2s ease, transform .2s ease, color .2s ease;
}

.k9d3x7m .m6k3j8p:hover {
    background: rgba(255, 255, 255, .10);
    transform: translateY(-1px);
    color: #ffffff;
}

.k9d3x7m .r9x5k2p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.k9d3x7m .t3m8j6k {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .10);
    white-space: nowrap;
}

.k9d3x7m .p2m6k8x {
    color: #e7e7e7;
    font-size: 13px;
    font-weight: 700;
}

.k9d3x7m .j9x3n5k {
    color: #4ade80;
    font-weight: 900;
}

.k9d3x7m .btn-header {
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.k9d3x7m .btn-login {
    background: #e0e0e0;
    color: #1a1a1a;
}

.k9d3x7m .btn-signup {
    background: #c7051d;
    color: #fff;
}

.k9d3x7m .btn-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .38);
}

@media (max-width: 991px) {

    .k9d3x7m .q8x2n5k {
        display: block;
    }

    .k9d3x7m .x7k2p9m {
        display: flex;
    }

    .k9d3x7m .r9x5k2p {
        display: none;
    }

    .k9d3x7m .h3m9x6k {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px;
        border-radius: 18px;
        background: rgba(69, 11, 23, .96);
        border: 1px solid rgba(255, 255, 255, .10);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .55);
    }

    .k9d3x7m .h3m9x6k.active {
        display: flex;
    }

    .k9d3x7m .d8k5n2x {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .k9d3x7m .m6k3j8p {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 14px;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .08);
    }

    .k9d3x7m .m6k3j8p:hover {
        background: rgba(255, 255, 255, .10);
        transform: none;
    }
}

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

    .k9d3x7m .n6j4t8p {
        height: 40px;
    }

    .k9d3x7m .btn-mobile {
        padding: 10px 10px;
        font-size: 12px;
        border-radius: 10px;
    }

    .k9d3x7m .m4p7j3x {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }
}

.p7k3m9x {
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.p7k3m9x::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle, rgba(199, 5, 29, .18) 0%, transparent 55%);
    filter: blur(2px);
    transform: rotate(18deg);
    pointer-events: none;
}

.p7k3m9x .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.p7k3m9x .k9x4m7p {
    font-size: 40px;
    line-height: 1.15;
    text-align: center;
    margin: 0 0 10px;
    font-weight: 900;
    letter-spacing: .2px;
}

.p7k3m9x .n6j8k3x {
    text-align: center;
    margin: 0 auto 34px;
    max-width: 780px;
    font-size: 16px;
    opacity: .9;
}

.p7k3m9x .m8k4x7p {
    display: grid;
    grid-template-columns:minmax(0, 720px) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    justify-content: center;
}

.p7k3m9x .n5j9k3x {
    position: relative;
    border-radius: 18px;
    padding: 22px;
    background: linear-gradient(135deg, rgba(26, 15, 17, .85) 0%, rgba(17, 13, 14, .92) 60%, rgba(69, 11, 23, .55) 100%);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
    overflow: hidden;
}

.p7k3m9x .n5j9k3x::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, .10), transparent 45%),
    radial-gradient(circle at 90% 30%, rgba(199, 5, 29, .18), transparent 55%);
    pointer-events: none;
}

.p7k3m9x .x7k2m9p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 4px 2px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    position: relative;
    z-index: 1;
}

.p7k3m9x .p4k8m6x {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .3px;
}

.p7k3m9x .k9m3x7p {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, .10);
    white-space: nowrap;
}

.p7k3m9x .n6k4j8x {
    opacity: .9;
    font-size: 13px;
    font-weight: 700;
}

.p7k3m9x .t8k2m5x {
    font-size: 16px;
    font-weight: 900;
    color: #4ade80;
    letter-spacing: .3px;
}

.p7k3m9x .p3k9m7x {
    opacity: .9;
    font-weight: 800;
}

.p7k3m9x .j7k3m9x {
    padding: 18px 0 12px;
    position: relative;
    z-index: 1;
}

.p7k3m9x .m9k2x6p {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 12px;
}

.p7k3m9x .x4k7n9p {
    height: 170px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(17, 13, 14, .88) 100%);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 18px 34px rgba(0, 0, 0, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.p7k3m9x .x4k7n9p::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .10) 0%, transparent 45%);
    opacity: .6;
    pointer-events: none;
}

.p7k3m9x .n5k8m3x {
    font-size: 62px;
    line-height: 1;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .55));
    transform: translateZ(0);
}

.p7k3m9x .x4k7n9p.spinning .n5k8m3x {
    animation: p7k3m9x_spin .08s linear infinite;
}

@keyframes p7k3m9x_spin {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-14px);
        opacity: .6;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.p7k3m9x .k8m4x9p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    position: relative;
    z-index: 1;
}

.p7k3m9x .p9k3m7x {
    border: none;
    cursor: pointer;
    width: min(360px, 100%);
    padding: 14px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #c7051d 0%, #8b0415 100%);
    color: #fff;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 18px 40px rgba(199, 5, 29, .25);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.p7k3m9x .p9k3m7x:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 55px rgba(199, 5, 29, .32);
    filter: saturate(1.05);
}

.p7k3m9x .p9k3m7x:active {
    transform: translateY(0);
    box-shadow: 0 14px 32px rgba(199, 5, 29, .22);
}

.p7k3m9x .p9k3m7x:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.p7k3m9x .n7k2m9x {
    display: inline-block;
    font-size: 16px;
}

.p7k3m9x .x5k9m3p {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
}

.p7k3m9x .t4k7m9x {
    opacity: .9;
    font-size: 13px;
    font-weight: 700;
}

.p7k3m9x .j8k2m6x {
    font-weight: 900;
    font-size: 13px;
}

.p7k3m9x .k7m3x9p {
    margin-top: 14px;
    border-radius: 16px;
    background: rgba(0, 0, 0, .28);
    border: 1px solid rgba(255, 255, 255, .10);
    padding: 18px;
    position: relative;
    z-index: 1;
}

.p7k3m9x .p8k2m6x {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 900;
}

.p7k3m9x .m5k9x3p {
    margin: 0 0 14px;
    opacity: .92;
}

.p7k3m9x .x7k4m9p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    background: #4ade80;
    color: #111;
    box-shadow: 0 16px 36px rgba(74, 222, 128, .20);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.p7k3m9x .x7k4m9p:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 52px rgba(74, 222, 128, .26);
    filter: saturate(1.05);
}

.p7k3m9x .k9m2x7p {
    margin-left: 10px;
    border: none;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 900;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff;
    transition: transform .18s ease, background .18s ease;
}

.p7k3m9x .k9m2x7p:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .14);
}

.p7k3m9x .n6k8m3x {
    border-radius: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .35);
    position: sticky;
    top: 86px;
}

.p7k3m9x .t7k3m9x {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 900;
}

.p7k3m9x .p4k9m7x {
    margin: 0;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.p7k3m9x .m8k2x6p {
    opacity: .92;
    line-height: 1.55;
}

@media (max-width: 991px) {
    .p7k3m9x {
        padding: 56px 0;
    }

    .p7k3m9x .m8k4x7p {
        grid-template-columns:1fr;
    }

    .p7k3m9x .n6k8m3x {
        position: relative;
        top: auto;
    }

    .p7k3m9x .k9x4m7p {
        font-size: 34px;
    }
}

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

    .p7k3m9x .k9x4m7p {
        font-size: 28px;
    }

    .p7k3m9x .n6j8k3x {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .p7k3m9x .n5j9k3x {
        padding: 16px;
        border-radius: 16px;
    }

    .p7k3m9x .x7k2m9p {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .p7k3m9x .m9k2x6p {
        gap: 10px;
    }

    .p7k3m9x .x4k7n9p {
        height: 132px;
        border-radius: 14px;
    }

    .p7k3m9x .n5k8m3x {
        font-size: 52px;
    }

    .p7k3m9x .p9k3m7x {
        width: 100%;
        padding: 14px 16px;
        border-radius: 12px;
    }

    .p7k3m9x .k7m3x9p {
        padding: 14px;
        border-radius: 14px;
    }

    .p7k3m9x .x7k4m9p, .p7k3m9x .k9m2x7p {
        width: 100%;
    }

    .p7k3m9x .k9m2x7p {
        margin-left: 0;
        margin-top: 10px;
    }
}
