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

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

.z7k4m2n {
    min-height: 100vh;
}

.r3x9p5w {
    position: relative;
}

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

.x4m9k2p {
    background-color: #000000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

.logo-block img {
    height: 50px;
    width: auto;
}

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

.menu-nav a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.menu-nav a:hover {
    color: #00fbc8;
}

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

.online-count {
    color: #00fbc8;
    font-size: 14px;
    padding: 5px 15px;
    background: rgba(0,251,200,0.1);
    border-radius: 20px;
}

.btn {
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-login {
    background-color: #00fbc8;
    color: #000000;
}

.btn-login:hover {
    background-color: #00d4aa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,251,200,0.3);
}

.btn-signup {
    background-color: #ff2e09;
    color: #ffffff;
}

.btn-signup:hover {
    background-color: #e02808;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,46,9,0.4);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.burger-line {
    width: 30px;
    height: 3px;
    background-color: #e8e8e8;
    transition: all 0.3s;
}

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

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

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

.m7p3k9x {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 50px;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

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

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    margin-bottom: 20px;
}

.hero-text {
    font-size: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
    margin-bottom: 30px;
}

.hero-btn {
    padding: 15px 40px;
    font-size: 18px;
}

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

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

.slider-dot.active {
    background-color: #00fbc8;
    transform: scale(1.3);
}

.q8m3n7t {
    padding: 40px 0;
}

.content-wrapper {
    animation: fadeIn 0.6s ease-in;
}

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

.main-title {
    font-size: 36px;
    color: #00fbc8;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.n8k4p2x {
    background: linear-gradient(135deg, #1a1a1c 0%, #2a2a2c 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.section-title {
    font-size: 28px;
    color: #00fbc8;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 10px;
}

.info-table th,
.info-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #404042;
}

.info-table th {
    background-color: #000000;
    color: #00fbc8;
    font-weight: 700;
}

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

.info-table tr:nth-child(even) {
    background-color: rgba(0,0,0,0.2);
}

.t5w9k3m {
    background: linear-gradient(135deg, #ff2e09 0%, #ff6b09 100%);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255,46,9,0.4);
}

.t5w9k3m .section-title {
    color: #ffffff;
}

.jackpot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.jackpot-card {
    background-color: rgba(0,0,0,0.3);
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.jackpot-name {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.jackpot-amount {
    font-size: 32px;
    color: #00fbc8;
    font-weight: 700;
}

.p2n7x4k {
    background: linear-gradient(135deg, #1a1a1c 0%, #2a2a2c 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.winners-table-wrapper {
    overflow-x: auto;
}

.winners-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 10px;
}

.winners-table th,
.winners-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #404042;
}

.winners-table th {
    background-color: #000000;
    color: #00fbc8;
    font-weight: 700;
    position: sticky;
    top: 0;
}

.winners-table tr:nth-child(even) {
    background-color: rgba(0,0,0,0.2);
}

.winner-amount {
    color: #00fbc8;
    font-weight: 700;
}

.k9m4x2p {
    background: linear-gradient(135deg, #00fbc8 0%, #00d4aa 100%);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0,251,200,0.3);
}

.k9m4x2p .section-title {
    color: #000000;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.app-table {
    width: 100%;
    background-color: rgba(255,255,255,0.9);
    border-radius: 10px;
    overflow: hidden;
}

.app-table th,
.app-table td {
    padding: 12px;
    text-align: left;
    color: #000000;
    border-bottom: 1px solid #e0e0e0;
}

.app-table th {
    background-color: #000000;
    color: #00fbc8;
    font-weight: 700;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s;
}

.download-btn:hover {
    background-color: #ff2e09;
    transform: translateX(5px);
}

.text-content {
    background-color: rgba(26,26,28,0.5);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.text-content h2 {
    color: #00fbc8;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.text-content h2:first-child {
    margin-top: 0;
}

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

.text-content ul,
.text-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

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

.text-content table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    background-color: rgba(0,0,0,0.3);
    border-radius: 10px;
    overflow: hidden;
}

.text-content table th,
.text-content table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #404042;
}

.text-content table th {
    background-color: #000000;
    color: #00fbc8;
    font-weight: 700;
}

.w3x8m2k {
    background: linear-gradient(135deg, #2a2a2c 0%, #1a1a1c 100%);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.slot-machine {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.slot-reel {
    width: 100px;
    height: 120px;
    background-color: #000000;
    border: 3px solid #00fbc8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    transition: all 0.1s;
}

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

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

.spin-btn {
    padding: 15px 50px;
    font-size: 20px;
    background: linear-gradient(135deg, #ff2e09 0%, #ff6b09 100%);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
}

.spin-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255,46,9,0.5);
}

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

.slot-result {
    margin-top: 20px;
    font-size: 20px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.win-message {
    color: #00fbc8;
    font-weight: 700;
    font-size: 24px;
}

.claim-btn {
    padding: 12px 30px;
    background-color: #00fbc8;
    color: #000000;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.claim-btn:hover {
    background-color: #00d4aa;
    transform: translateY(-2px);
}

.y7k3n2p {
    background-color: rgba(26,26,28,0.5);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.review-card {
    background: linear-gradient(135deg, #1a1a1c 0%, #2a2a2c 100%);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00fbc8 0%, #00d4aa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

.review-author {
    flex: 1;
}

.review-name {
    font-weight: 700;
    color: #00fbc8;
    margin-bottom: 5px;
}

.review-rating {
    display: flex;
    gap: 3px;
}

.star {
    color: #ffd700;
}

.review-text {
    line-height: 1.7;
}

.review-form {
    background-color: rgba(0,0,0,0.3);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.form-title {
    font-size: 22px;
    color: #00fbc8;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e8e8e8;
    font-weight: 700;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #404042;
    border-radius: 8px;
    background-color: rgba(0,0,0,0.5);
    color: #e8e8e8;
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #00fbc8;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    padding: 12px 40px;
    background-color: #ff2e09;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: #e02808;
    transform: translateY(-2px);
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
}

.form-message.success {
    background-color: rgba(0,251,200,0.2);
    color: #00fbc8;
}

.q4m8x2n {
    background-color: rgba(26,26,28,0.5);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #404042;
    padding-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 18px;
    color: #00fbc8;
    font-weight: 700;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Footer */
.x9n2k7m {
    background-color: #000000;
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

.footer-section h3 {
    color: #00fbc8;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

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

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

.footer-menu a {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #00fbc8;
}

.payment-logos,
.provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.payment-logo,
.provider-logo {
    width: 50px;
    height: 30px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #e8e8e8;
}

.footer-bottom {
    border-top: 1px solid #404042;
    padding-top: 20px;
    text-align: center;
}

.copyright {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.legal-info {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

.author-info {
    background-color: rgba(0,251,200,0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.author-info h4 {
    color: #00fbc8;
    margin-bottom: 10px;
}

.author-info p {
    font-size: 14px;
    line-height: 1.6;
}

.author-link {
    color: #00fbc8;
    text-decoration: none;
}

.author-link:hover {
    text-decoration: underline;
}

.p9k3m7x {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff2e09 0%, #ff6b09 100%);
    padding: 15px;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.5);
    z-index: 999;
    transform: translateY(100%);
    animation: slideUp 0.5s forwards 1s;
}

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

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

.widget-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.widget-bonus {
    color: #00fbc8;
    font-size: 22px;
    font-weight: 700;
}

.widget-btn {
    padding: 12px 35px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s;
}

.widget-btn:hover {
    background-color: #00fbc8;
    color: #000000;
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .header-content {
        grid-template-columns: auto 1fr;
    }
    
    .menu-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: #000000;
        padding: 30px;
        transition: left 0.3s;
    }
    
    .menu-nav.active {
        left: 0;
    }
    
    .menu-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .app-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .header-actions {
        gap: 10px;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .online-count {
        display: none;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .slot-machine {
        gap: 10px;
    }
    
    .slot-reel {
        width: 80px;
        height: 100px;
        font-size: 48px;
    }
    
    .widget-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .widget-text {
        font-size: 16px;
    }
    
    .widget-bonus {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .jackpot-grid {
        grid-template-columns: 1fr;
    }
}


:root{
    --app-accent:#00fbc8;
    --app-accent-red:#ff2e09;
    --app-border:rgba(255,255,255,.10);
    --app-card:rgba(0,0,0,.28);
    --app-text:rgba(255,255,255,.92);
}

.container.adrwf{
    max-width:980px;
    margin:0 auto;
    padding:2.75rem 2rem;
    background:linear-gradient(135deg,rgba(0,251,200,.06),rgba(255,46,9,.04));
    border:1px solid var(--app-border);
    border-radius:18px;
    box-shadow:0 14px 44px rgba(0,0,0,.45);
    scroll-margin-top:90px;
}

.container.adrwf p{
    color:var(--app-text);
    margin:0 0 1.05rem;
    line-height:1.85;
    font-size:1.05rem;
}

.container.adrwf p + p{margin-top:.65rem;}

.container.adrwf h2,
.container.adrwf h3{
    text-wrap:balance;
    line-height:1.15;
    margin:2rem 0 1rem;
}

.container.adrwf h2{
    font-size:2rem;
    font-weight:900;
    color:var(--app-accent);
    position:relative;
    padding-left:1rem;
    letter-spacing:.2px;
}

.container.adrwf h2::before{
    content:"";
    position:absolute;
    left:0;
    top:.15em;
    bottom:.15em;
    width:4px;
    border-radius:999px;
    background:linear-gradient(180deg,var(--app-accent),rgba(0,251,200,.15));
}

.container.adrwf h3{
    font-size:1.25rem;
    font-weight:850;
    color:rgba(255,255,255,.96);
    margin-top:1.5rem;
}

.container.adrwf ul,
.container.adrwf ol{
    margin:0 0 1.25rem;
    padding-left:1.25rem;
    color:var(--app-text);
    background:var(--app-card);
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    padding:1.15rem 1.15rem 1.15rem 2.25rem;
}

.container.adrwf ol{padding-left:2.35rem;}

.container.adrwf li{
    margin:.5rem 0;
    line-height:1.75;
    color:rgba(255,255,255,.90);
}

.container.adrwf ul li::marker{color:var(--app-accent);}
.container.adrwf ol li::marker{color:var(--app-accent-red);font-weight:800;}

.container.adrwf a{
    color:var(--app-accent);
    text-decoration:underline;
    text-decoration-thickness:2px;
    text-underline-offset:3px;
    transition:color .25s ease,opacity .25s ease;
    word-break:break-word;
}

.container.adrwf a:hover{color:var(--app-accent-red);}

.container.adrwf a:focus-visible{
    outline:2px solid var(--app-accent);
    outline-offset:4px;
    border-radius:8px;
}

.container.adrwf table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    margin:1.25rem 0 2rem;
    background:linear-gradient(135deg,rgba(10,10,12,.92),rgba(26,26,28,.85));
    border:1px solid rgba(255,255,255,.10);
    border-radius:14px;
    overflow:hidden;
}

.container.adrwf table th,
.container.adrwf table td{
    padding:.9rem 1rem;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:rgba(255,255,255,.9);
}

.container.adrwf table th{
    background:linear-gradient(90deg,rgba(0,251,200,.20),rgba(255,46,9,.14));
    color:#fff;
    font-weight:900;
    letter-spacing:.2px;
}

.container.adrwf table tr:last-child td{border-bottom:0;}
.container.adrwf table tr:nth-child(even) td{background:rgba(255,255,255,.03);}

@media (max-width:992px){
    .container.adrwf{max-width:920px;padding:2.25rem 1.5rem;border-radius:16px;}
    .container.adrwf h2{font-size:1.75rem;}
    .container.adrwf p{font-size:1.02rem;}
}

@media (max-width:768px){
    .container.adrwf{padding:1.65rem 1.05rem;border-radius:14px;}
    .container.adrwf h2{font-size:1.45rem;margin:1.55rem 0 .85rem;padding-left:.9rem;}
    .container.adrwf h2::before{width:3px;}
    .container.adrwf h3{font-size:1.1rem;margin:1.25rem 0 .75rem;}
    .container.adrwf p{font-size:1rem;line-height:1.8;}
    .container.adrwf ul,.container.adrwf ol{padding:1rem 1rem 1rem 2.05rem;border-radius:12px;}
}

@media (max-width:480px){
    .container.adrwf{padding:1.25rem .95rem;border-radius:12px;}
    .container.adrwf h2{font-size:1.3rem;}
    .container.adrwf h3{font-size:1.02rem;}
}

.z9k4x2m { display: none; }
.p3n7w2x { visibility: hidden; }
.k8m5q2p { opacity: 0; }
.x4t9n2k { position: absolute; left: -9999px; }
.m2w7k5p { display: none !important; }
.elementor-section { padding: 0; }
.wp-block-columns { margin: 0; }
.site-content { padding: 0; }
.entry-content { margin: 0; }
