/* Dragon Money Casino Styles */
:root {
    --color-bg: #0A0A0A;
    --color-header: #1A1A1A;
    --color-primary: #FF9933;
    --color-secondary: #FF9933;
    --color-text: #E0E0E0;
    --color-text-light: #B0B0B0;
    --font-main: 'Open Sans', Arial, sans-serif;
}

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

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

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

/* Header Styles */
.header-main-block {
    background: var(--color-header);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255, 153, 51, 0.1);
}

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

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

.header-nav-menu {
    flex: 1;
}

.nav-list-main {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link-item {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

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

.online-counter-block {
    background: rgba(255, 153, 51, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.counter-number {
    color: var(--color-primary);
}

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

.btn-header {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-login-h {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-login-h:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-signup-h {
    background: var(--color-secondary);
    color: #fff;
    border: 2px solid var(--color-secondary);
}

.btn-signup-h:hover {
    background: transparent;
    color: var(--color-secondary);
}

/* Burger Menu */
.burger-menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

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

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    transition: left 0.3s ease;
}

.mobile-menu-overlay.active {
    left: 0;
}

.mobile-menu-content {
    padding: 60px 30px;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--color-primary);
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    margin: 40px 0;
}

.mobile-nav-item {
    margin: 20px 0;
}

.mobile-nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.mobile-menu-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.btn-mobile {
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn-login-m {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-signup-m {
    background: var(--color-secondary);
    color: #fff;
    border: none;
}

/* Hero Section */
.hero-section-wrapper {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('/hero-money.jpg') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

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

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--color-text-light);
}

.hero-btns-wrap {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

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

.btn-signup-hero {
    background: var(--color-secondary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
}

.btn-signup-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.6);
}

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

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

.online-counter-hero {
    background: rgba(255, 153, 51, 0.15);
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
}

/* Main Content */
.main-container-wr {
    flex: 1;
    padding: 60px 0;
}

/* Promo Block */
.promo-block-section {
    margin-bottom: 60px;
}

.promo-card-main {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.2);
}

.promo-title-h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #fff;
}

.promo-code-display {
    margin: 30px 0;
}

.promo-code-box {
    background: #000;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.promo-code-txt {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 3px;
}

.promo-status-info {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.status-badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.active-badge {
    background: rgba(0, 255, 0, 0.2);
    color: #0f0;
    border: 1px solid #0f0;
}

.status-time-left {
    color: var(--color-text-light);
}

.promo-actions-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-promo {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-copy-promo {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-copy-promo:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-activate-promo {
    background: var(--color-secondary);
    color: #fff;
    border: 2px solid var(--color-secondary);
    display: inline-block;
}

.btn-activate-promo:hover {
    transform: scale(1.05);
}

/* Jackpots Section */
.jackpots-section-wr {
    margin-bottom: 60px;
}

.jackpots-title-main {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.jackpots-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.jackpot-card-item {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.jackpot-card-inner {
    padding: 40px 20px;
    text-align: center;
}

.jackpot-icon-wr {
    font-size: 60px;
    margin-bottom: 20px;
}

.jackpot-name-h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.jackpot-amount-display {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    animation: pulse 2s infinite;
}

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

/* Winners Section */
.winners-section-block {
    margin-bottom: 60px;
}

.winners-title-h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.winners-table-wrapper {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 20px;
    overflow-x: auto;
}

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

.winners-thead {
    background: #2a2a2a;
}

.winners-table-main th {
    padding: 15px;
    text-align: left;
    color: var(--color-primary);
    font-weight: 700;
    border-bottom: 2px solid var(--color-primary);
}

.winners-table-main td {
    padding: 12px 15px;
    border-bottom: 1px solid #333;
}

.winners-table-main tbody tr:hover {
    background: rgba(255, 153, 51, 0.1);
}

/* Video Section */
.video-review-section {
    margin-bottom: 60px;
}

.video-title-h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.video-wrapper-box {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.video-iframe-yt {
    width: 100%;
    border-radius: 10px;
}

/* Mini Game Section */
.minigame-section-wr {
    margin-bottom: 60px;
}

.minigame-title-h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.minigame-container-box {
    max-width: 600px;
    margin: 0 auto;
}

.slot-machine-wr {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.3);
}

.slot-reels-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.slot-reel {
    width: 120px;
    height: 120px;
    background: #000;
    border: 3px solid var(--color-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    transition: all 0.3s ease;
}

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

@keyframes spin {
    0% {
        transform: rotateX(0deg);
    }
    100% {
        transform: rotateX(360deg);
    }
}

.btn-spin-slot {
    background: var(--color-secondary);
    color: #fff;
    border: none;
    padding: 15px 50px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-spin-slot:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.5);
}

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

.slot-result-msg {
    margin-top: 20px;
    font-size: 18px;
    min-height: 60px;
    color: var(--color-primary);
    font-weight: 700;
}

/* Content Text Area */
.content-text-area {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
    line-height: 1.8;
}

.content-text-area h2 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 28px;
}

.content-text-area h3 {
    color: var(--color-primary);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 22px;
}

.content-text-area p {
    margin-bottom: 15px;
    color: var(--color-text);
}

.content-text-area ul,
.content-text-area ol {
    margin: 20px 0;
    padding-left: 30px;
    color: var(--color-text);
}

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

.content-text-area table {
    width: 100%;
    margin: 30px auto;
    border-collapse: collapse;
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
}

.content-text-area table th {
    background: #333;
    color: var(--color-primary);
    padding: 15px;
    text-align: left;
    font-weight: 700;
    border: 1px solid #444;
}

.content-text-area table td {
    padding: 12px 15px;
    border: 1px solid #444;
    color: var(--color-text);
}

.content-text-area table tr:hover {
    background: rgba(255, 153, 51, 0.1);
}

.content-text-area a {
    color: var(--color-primary);
    text-decoration: none;
}

.content-text-area a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section-wr {
    margin-bottom: 60px;
}

.faq-title-h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.faq-accordion-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-block {
    background: #1a1a1a;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question-box {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question-box:hover {
    background: #2a2a2a;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.faq-toggle-icon {
    font-size: 30px;
    color: var(--color-primary);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item-block.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer-box {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-answer-box.faq-open {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-answer-box p {
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Footer */
.footer-main-block {
    background: var(--color-header);
    padding: 60px 0 20px;
    margin-top: auto;
}

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

.footer-col-title {
    color: var(--color-primary);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-desc-text {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-top: 15px;
}

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

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

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

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

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

.footer-contact-item {
    margin-bottom: 10px;
    color: var(--color-text-light);
}

.footer-contact-item a {
    color: var(--color-primary);
    text-decoration: none;
}

/* Providers & Payments */
.providers-title-footer,
.payments-title-footer {
    text-align: center;
    color: var(--color-primary);
    font-size: 20px;
    margin-bottom: 20px;
}

.providers-logos-wr,
.payments-logos-wr {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.provider-logo-item,
.payment-logo-item {
    background: #2a2a2a;
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--color-text);
    font-size: 14px;
    border: 1px solid #333;
}

/* Footer Bottom */
.footer-bottom-section {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-legal-text p {
    color: var(--color-text-light);
    font-size: 14px;
    margin-bottom: 10px;
}

.warning-text {
    color: #ff6b6b;
    font-weight: 600;
}

/* Sticky Widget */
.sticky-widget-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 15px 0;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease;
}

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

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

.widget-bonus-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

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

.widget-btn-signup:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

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

    .desktop-counter-only {
        display: none;
    }

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

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

    .slot-reels-container {
        gap: 10px;
    }

    .slot-reel {
        width: 90px;
        height: 90px;
        font-size: 45px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }

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

    .btn-hero {
        padding: 12px 30px;
        font-size: 16px;
    }

    .promo-title-h2,
    .jackpots-title-main,
    .winners-title-h2,
    .video-title-h2,
    .minigame-title-h2,
    .faq-title-h2 {
        font-size: 28px;
    }

    .promo-code-txt {
        font-size: 28px;
    }

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

    .widget-inner-content {
        justify-content: center;
        text-align: center;
    }

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

@media (max-width: 576px) {
    .mobile-only-burger {
        display: flex;
    }

    .slot-reel {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }

    .btn-spin-slot {
        padding: 12px 30px;
        font-size: 16px;
    }

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

.yvdjd {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 24px 72px;
    background: linear-gradient(180deg, #161616 0%, #101010 100%);
    border: 1px solid #2a2a2a;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    color: #e6e6e6;
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 1.72;
}

.yvdjd * {
    box-sizing: border-box;
}

.yvdjd h1,
.yvdjd h2,
.yvdjd h3,
.yvdjd h4,
.yvdjd h5,
.yvdjd h6 {
    margin: 0 0 18px;
    line-height: 1.24;
    color: #ffffff;
}

.yvdjd h1 {
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    font-weight: 800;
    margin-bottom: 24px;
}

.yvdjd h2 {
    font-size: clamp(1.42rem, 2.7vw, 2rem);
    font-weight: 800;
    margin-top: 42px;
    padding-left: 16px;
    border-left: 4px solid #ff9933;
}

.yvdjd h3 {
    font-size: clamp(1.1rem, 2vw, 1.42rem);
    font-weight: 700;
    margin-top: 28px;
    color: #ffb347;
}

.yvdjd p {
    margin: 0 0 18px;
    font-size: 1rem;
    color: #d5d5d5;
}

.yvdjd a {
    color: #ff9933;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
    word-break: break-word;
}

.yvdjd a:hover {
    color: #ffb347;
}

.yvdjd strong {
    color: #ffffff;
}

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

.yvdjd ul li,
.yvdjd ol li {
    margin-bottom: 12px;
    color: #d9d9d9;
}

.yvdjd ul li {
    list-style: none;
    position: relative;
    padding-left: 20px;
}

.yvdjd ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
    box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.12);
}

.yvdjd ol {
    counter-reset: yvdjd-counter;
}

.yvdjd ol li {
    list-style: none;
    position: relative;
    padding-left: 46px;
    counter-increment: yvdjd-counter;
}

.yvdjd ol li::before {
    content: counter(yvdjd-counter);
    position: absolute;
    left: 0;
    top: -1px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
    color: #111111;
    font-size: 0.88rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yvdjd li p {
    margin-bottom: 0;
}

.yvdjd table {
    width: 100%;
    margin: 24px 0 28px;
    border-collapse: separate;
    border-spacing: 0;
    background: #181818;
    border: 1px solid #2a2a2a;
    border-radius: 18px;
    overflow: hidden;
}

.yvdjd th {
    padding: 16px 18px;
    text-align: left;
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
}

.yvdjd td {
    padding: 15px 18px;
    font-size: 0.96rem;
    color: #d8d8d8;
    border-top: 1px solid #2a2a2a;
    vertical-align: top;
}

.yvdjd tbody tr:nth-child(even) td,
.yvdjd table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.yvdjd blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    background: rgba(255, 153, 51, 0.08);
    border-left: 4px solid #ff9933;
    border-radius: 0 14px 14px 0;
    color: #dedede;
}

.yvdjd hr {
    border: 0;
    border-top: 1px solid #2a2a2a;
    margin: 32px 0;
}

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

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

@media (max-width: 991px) {
    .yvdjd {
        padding: 32px 20px 60px;
        border-radius: 20px;
    }

    .yvdjd h2 {
        margin-top: 34px;
    }

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

@media (max-width: 767px) {
    .yvdjd {
        padding: 24px 16px 48px;
        border-radius: 18px;
        line-height: 1.62;
    }

    .yvdjd h1 {
        margin-bottom: 20px;
    }

    .yvdjd h2 {
        margin-top: 28px;
        padding-left: 12px;
        border-left-width: 3px;
    }

    .yvdjd p,
    .yvdjd li,
    .yvdjd td,
    .yvdjd th {
        font-size: 0.95rem;
    }

    .yvdjd th,
    .yvdjd td {
        padding: 13px 14px;
    }

    .yvdjd ol li {
        padding-left: 40px;
    }

    .yvdjd ol li::before {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .yvdjd {
        padding: 20px 12px 40px;
        border-radius: 16px;
    }

    .yvdjd h1 {
        font-size: 1.72rem;
    }

    .yvdjd h2 {
        font-size: 1.22rem;
    }

    .yvdjd h3 {
        font-size: 1.02rem;
    }

    .yvdjd p {
        font-size: 0.93rem;
        margin-bottom: 16px;
    }

    .yvdjd ul li {
        padding-left: 18px;
    }

    .yvdjd ul li::before {
        width: 7px;
        height: 7px;
        top: 10px;
    }

    .yvdjd table {
        border-radius: 14px;
    }

    .yvdjd th,
    .yvdjd td {
        padding: 12px;
        font-size: 0.9rem;
    }
}

.x9z2k4, .m3v7n8, .p6q4r2, .b8t5y1, .c9w3x7 {
    display: none;
}

.elementor-widget-container, .wp-block-group, .entry-content, .site-header {
}

.ast-container, .astra-builder-menu, .wp-custom-logo {
}
