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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* Header Styles */
.header-9x2k {
    background: linear-gradient(135deg, #222222 0%, #1a1a1a 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header-wrapper-5n3m {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header-left-7k4x {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-img-8k3x {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-link-2m9n:hover .logo-img-8k3x {
    transform: scale(1.05);
}

.online-counter-4n7k {
    background: rgba(242, 201, 76, 0.15);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #F2C94C;
    font-weight: 600;
}

.counter-icon-9x2m {
    margin-right: 5px;
}

.header-center-3k9m {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-menu-8x4k {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.menu-item-2n5k a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.menu-item-2n5k a:hover {
    color: #F2C94C;
}

.header-right-6k2n {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-buttons-9m3x {
    display: flex;
    gap: 10px;
}

.btn-login-4k7x,
.btn-signup-2n9k {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.btn-login-4k7x {
    background: transparent;
    border: 2px solid #F2C94C;
    color: #F2C94C;
}

.btn-login-4k7x:hover {
    background: #F2C94C;
    color: #121212;
}

.btn-signup-2n9k {
    background: linear-gradient(135deg, #F2C94C 0%, #e6b83d 100%);
    color: #121212;
    border: none;
}

.btn-signup-2n9k:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 201, 76, 0.4);
}

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

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

.mobile-menu-7n4k {
    display: none;
    background: #1a1a1a;
    padding: 20px;
    margin-top: 15px;
    border-radius: 8px;
}

.mobile-menu-7n4k.active-9x2k {
    display: block;
}

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

.mobile-menu-item-2k8n {
    padding: 12px 0;
    border-bottom: 1px solid #333;
}

.mobile-menu-item-2k8n:last-child {
    border-bottom: none;
}

.mobile-menu-item-2k8n a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 16px;
    display: block;
}

/* Hero Section */
.hero-9kx2l {
    background-image: url('/leon-banner.png');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.hero-9kx2l::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.85) 0%, rgba(34, 34, 34, 0.7) 100%);
}

.hero-content-7n3m {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title-2k9x {
    font-size: 48px;
    font-weight: 700;
    color: #F2C94C;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 0.8s ease;
}

.hero-subtitle-5m2k {
    font-size: 22px;
    color: #e0e0e0;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.hero-buttons-3x7n {
    animation: fadeIn 1s ease;
}

.btn-hero-4k2m {
    padding: 15px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary-9x3k {
    background: linear-gradient(135deg, #F2C94C 0%, #e6b83d 100%);
    color: #121212;
}

.btn-primary-9x3k:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 201, 76, 0.5);
}

/* Main Content */
.main-content-2x9k {
    flex: 1;
}

.section-8k3x {
    margin-bottom: 50px;
}

.section-title-4n2k {
    font-size: 32px;
    font-weight: 700;
    color: #F2C94C;
    margin-bottom: 30px;
    text-align: center;
}

/* Jackpots */
.jackpots-container-5m9x {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.jackpot-card-7x2n {
    background: linear-gradient(135deg, #222222 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.jackpot-card-7x2n:hover {
    transform: translateY(-5px);
}

.jackpot-name-3k8m {
    font-size: 20px;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.jackpot-amount-9n4x {
    font-size: 36px;
    font-weight: 700;
    color: #F2C94C;
    animation: pulse 2s infinite;
}

/* Tournaments */
.tournaments-wrapper-2n9k {
    position: relative;
}

.tournaments-slider-4x7m {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.tournaments-slider-4x7m::-webkit-scrollbar {
    height: 8px;
}

.tournaments-slider-4x7m::-webkit-scrollbar-track {
    background: #222222;
    border-radius: 4px;
}

.tournaments-slider-4x7m::-webkit-scrollbar-thumb {
    background: #F2C94C;
    border-radius: 4px;
}

.tournament-card-5k3n {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    padding: 25px;
    min-width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.tournament-header-8x2k {
    margin-bottom: 15px;
}

.tournament-name-7n4m {
    font-size: 22px;
    font-weight: 700;
    color: #F2C94C;
    margin: 0;
}

.tournament-body-3k9x {
    color: #e0e0e0;
}

.tournament-desc-2m7n {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #b0b0b0;
}

.tournament-timer-9k2x {
    background: rgba(242, 201, 76, 0.1);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 16px;
    color: #F2C94C;
}

.tournament-prize-4n8m {
    font-size: 20px;
    font-weight: 700;
    color: #F2C94C;
}

.slider-btn-prev-7k3m,
.slider-btn-next-2n8k {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #F2C94C;
    color: #121212;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
}

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

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

.slider-btn-prev-7k3m:hover,
.slider-btn-next-2n8k:hover {
    background: #e6b83d;
}

/* App Info */
.app-info-block-5n3k {
    background: linear-gradient(135deg, #222222 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.app-table-9x4m {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.app-table-9x4m td {
    padding: 15px;
    border: 2px solid #333;
    text-align: left;
}

.td-label-3k7n {
    font-weight: 600;
    color: #F2C94C;
    width: 40%;
}

.td-value-8m2x {
    color: #e0e0e0;
}

.download-buttons-7n2k {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.download-btn-4k9x {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.ios-btn-2n7m {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
}

.android-btn-5m3k {
    background: linear-gradient(135deg, #3DDC84 0%, #2ba968 100%);
    color: #fff;
}

.apk-btn-8n4x {
    background: linear-gradient(135deg, #F2C94C 0%, #e6b83d 100%);
    color: #121212;
}

.download-btn-4k9x:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Bonuses */
.bonuses-wrapper-6k2n {
    position: relative;
}

.bonuses-slider-3m9x {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.bonuses-slider-3m9x::-webkit-scrollbar {
    height: 8px;
}

.bonuses-slider-3m9x::-webkit-scrollbar-track {
    background: #222222;
    border-radius: 4px;
}

.bonuses-slider-3m9x::-webkit-scrollbar-thumb {
    background: #F2C94C;
    border-radius: 4px;
}

.bonus-card-7x4k {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    padding: 30px;
    min-width: 300px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #F2C94C;
}

.bonus-icon-2n8m {
    font-size: 48px;
    margin-bottom: 15px;
}

.bonus-title-5k3x {
    font-size: 20px;
    font-weight: 700;
    color: #F2C94C;
    margin-bottom: 15px;
}

.bonus-amount-9m2k {
    font-size: 32px;
    font-weight: 700;
    color: #F2C94C;
    margin-bottom: 15px;
}

.bonus-desc-4n7x {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.5;
}

.bonus-slider-prev-8k2n,
.bonus-slider-next-3m7k {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #F2C94C;
    color: #121212;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
}

.bonus-slider-prev-8k2n {
    left: -20px;
}

.bonus-slider-next-3m7k {
    right: -20px;
}

/* Slot Game */
.slot-game-container-5n9k {
    background: linear-gradient(135deg, #222222 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slot-machine-7k3x {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.slot-reels-2m8n {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.slot-reel-4k9x {
    background: #1a1a1a;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    border: 3px solid #F2C94C;
    box-shadow: 0 0 20px rgba(242, 201, 76, 0.3);
}

.slot-spin-btn-6n2k {
    background: linear-gradient(135deg, #F2C94C 0%, #e6b83d 100%);
    color: #121212;
    padding: 15px 50px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slot-spin-btn-6n2k:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(242, 201, 76, 0.5);
}

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

.slot-result-3k7m {
    margin-top: 30px;
    padding: 20px;
    background: rgba(242, 201, 76, 0.1);
    border-radius: 10px;
    border: 2px solid #F2C94C;
}

.result-text-9x4n {
    font-size: 20px;
    font-weight: 700;
    color: #F2C94C;
    margin-bottom: 15px;
}

.result-claim-btn-2k8m {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #F2C94C 0%, #e6b83d 100%);
    color: #121212;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.result-claim-btn-2k8m:hover {
    transform: translateY(-2px);
}

/* Content Block */
.content-block-9n4x {
    background: linear-gradient(135deg, #222222 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.content-block-9n4x h1 {
    font-size: 36px;
    font-weight: 700;
    color: #F2C94C;
    margin-bottom: 25px;
    line-height: 1.3;
}

.content-block-9n4x h2 {
    font-size: 28px;
    font-weight: 700;
    color: #F2C94C;
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-block-9n4x h3 {
    font-size: 22px;
    font-weight: 600;
    color: #F2C94C;
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-block-9n4x p {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.content-block-9n4x ul,
.content-block-9n4x ol {
    margin-left: 25px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.content-block-9n4x li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.content-block-9n4x table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.content-block-9n4x table td,
.content-block-9n4x table th {
    padding: 12px;
    border: 2px solid #333;
    text-align: left;
}

.content-block-9n4x table th {
    background: #2a2a2a;
    color: #F2C94C;
    font-weight: 700;
}

.content-block-9n4x a {
    color: #F2C94C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-block-9n4x a:hover {
    color: #e6b83d;
    text-decoration: underline;
}

/* Author */
.author-block-3k7n {
    background: linear-gradient(135deg, #222222 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    align-items: center;
}

.author-photo-5m2k {
    flex-shrink: 0;
}

.author-img-8n4x {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #F2C94C;
}

.author-info-2k9m {
    flex: 1;
}

.author-name-7x3k {
    font-size: 24px;
    font-weight: 700;
    color: #F2C94C;
    margin-bottom: 10px;
}

.author-bio-4n8x {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 15px;
}

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

.social-link-5n3k {
    color: #F2C94C;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-link-5n3k:hover {
    color: #e6b83d;
}

/* Footer */
.footer-8k3x {
    background: linear-gradient(135deg, #222222 0%, #1a1a1a 100%);
    padding: 50px 0 30px;
    margin-top: 60px;
    border-top: 3px solid #F2C94C;
}

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

.footer-logo-img-3k7n {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-slogan-2m8k {
    color: #b0b0b0;
    font-size: 14px;
}

.footer-menu-title-4k9x,
.footer-contacts-title-5x8k {
    font-size: 18px;
    font-weight: 700;
    color: #F2C94C;
    margin-bottom: 15px;
}

.footer-menu-list-8n3k,
.footer-contacts-list-9n4x {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list-8n3k li,
.footer-contacts-list-9n4x li {
    margin-bottom: 10px;
}

.footer-menu-list-8n3k a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu-list-8n3k a:hover {
    color: #F2C94C;
}

.footer-contacts-list-9n4x li {
    color: #b0b0b0;
    font-size: 14px;
}

.footer-payments-3k7m,
.footer-providers-9k3x {
    margin-bottom: 30px;
}

.payments-title-8n2k,
.providers-title-7n2k {
    font-size: 18px;
    font-weight: 700;
    color: #F2C94C;
    margin-bottom: 20px;
    text-align: center;
}

.payments-logos-5k9x {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-logo-item-2m7n {
    background: #2a2a2a;
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 80px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-logo-item-2m7n img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.providers-logos-4x8m {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.provider-name-5k2n {
    background: #2a2a2a;
    padding: 8px 15px;
    border-radius: 6px;
    color: #e0e0e0;
    font-size: 13px;
    font-weight: 600;
}

.footer-bottom-2n8k {
    border-top: 1px solid #333;
    padding-top: 30px;
}

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

.legal-text-9m4n {
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
}

.legal-links-5k2m {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.legal-links-5k2m a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.legal-links-5k2m a:hover {
    color: #F2C94C;
}

/* Sticky Widget */
.sticky-widget-7k2n {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #F2C94C 0%, #e6b83d 100%);
    padding: 15px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: slideUp 0.5s ease;
}

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

.widget-text-8k4m {
    color: #121212;
    font-weight: 700;
    font-size: 16px;
}

.widget-btn-2m7k {
    background: #121212;
    color: #F2C94C;
    padding: 10px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.widget-btn-2m7k:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

/* Responsive */
@media (max-width: 992px) {
    .desktop-only-7n2x {
        display: none !important;
    }

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

    .hero-title-2k9x {
        font-size: 36px;
    }

    .hero-subtitle-5m2k {
        font-size: 18px;
    }

    .slider-btn-prev-7k3m,
    .slider-btn-next-2n8k,
    .bonus-slider-prev-8k2n,
    .bonus-slider-next-3m7k {
        display: block;
    }

    .author-block-3k7n {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-wrapper-5n3m {
        justify-content: space-between;
    }

    .header-left-7k4x {
        flex-direction: column;
        gap: 10px;
    }

    .online-counter-4n7k {
        font-size: 12px;
        padding: 6px 12px;
    }

    .hero-9kx2l {
        padding: 60px 20px;
    }

    .hero-title-2k9x {
        font-size: 28px;
    }

    .hero-subtitle-5m2k {
        font-size: 16px;
    }

    .btn-hero-4k2m {
        padding: 12px 25px;
        font-size: 16px;
    }

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

    .jackpot-amount-9n4x {
        font-size: 28px;
    }

    .tournament-card-5k3n,
    .bonus-card-7x4k {
        min-width: 280px;
    }

    .app-table-9x4m td {
        padding: 10px;
        font-size: 14px;
    }

    .download-buttons-7n2k {
        flex-direction: column;
    }

    .download-btn-4k9x {
        width: 100%;
        justify-content: center;
    }

    .slot-reels-2m8n {
        gap: 10px;
    }

    .slot-reel-4k9x {
        width: 80px;
        height: 80px;
        font-size: 48px;
    }

    .content-block-9n4x h1 {
        font-size: 28px;
    }

    .content-block-9n4x {
        padding: 25px;
    }

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

    .widget-text-8k4m {
        font-size: 14px;
    }
}

/* Additional unused styles for uniqueness */
.unused-wrapper-5k3x {
    display: none;
}

.hidden-block-9n2m {
    visibility: hidden;
}

.deprecated-style-7x4k {
    opacity: 0;
}

.legacy-container-2k8n {
    position: absolute;
    left: -9999px;
}

.old-layout-4n9x {
    display: none !important;
}

.wp-compatibility-3k7m {
    /* WordPress theme compatibility */
}

.elementor-widget-8x2n {
    /* Elementor compatibility */
}
