/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
.site-header {
    background: #000000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.header-left {
}

.site-logo img {
    display: block;
}

.header-nav {
    flex: 1;
}

.nav-menu {
}

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

.menu-item a {
    color: #999999;
    font-weight: 500;
    padding: 8px 0;
    display: block;
}

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

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

.online-counter {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.counter-icon {
    font-size: 18px;
}

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

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

.btn-login {
    background: #999999;
    color: #fff;
}

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

.btn-signup {
    background: #2ecc71;
    color: #fff;
}

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

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

.burger-line {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background: #000;
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

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

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

.mobile-menu-item a {
    color: #999999;
    font-size: 16px;
    display: block;
}

/* Hero Section */
.hero-section {
    margin-bottom: 40px;
    position: relative;
}

.swiper {
    width: 100%;
    height: 500px;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text {
    font-size: 20px;
    margin-bottom: 25px;
}

.btn-hero {
    background: #2ecc71;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #27ae60;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

.swiper-button-next,
.swiper-button-prev {
    color: #2ecc71;
}

.swiper-pagination-bullet-active {
    background: #2ecc71;
}

/* Advantages Section */
.advantages-section {
    padding: 60px 0;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 15px;
}

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

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

.advantage-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: #2ecc71;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.advantage-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.advantage-text {
    color: #666;
    line-height: 1.5;
}

/* Jackpot Section */
.jackpot-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-bottom: 30px;
    border-radius: 15px;
}

.jackpot-section .section-title {
    color: #fff;
}

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

.jackpot-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.jackpot-card:hover {
    transform: scale(1.05);
    border-color: #2ecc71;
}

.jackpot-name {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.jackpot-amount {
    color: #2ecc71;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

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

.jackpot-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* App Section */
.app-section {
    padding: 60px 0;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 15px;
}

.app-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.app-table-wrap {
    overflow-x: auto;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    max-width: 800px;
}

.app-table th,
.app-table td {
    padding: 15px;
    text-align: left;
    border: 2px solid #ddd;
}

.app-table th {
    background: #000;
    color: #fff;
    font-weight: 600;
}

.app-table tr:nth-child(even) {
    background: #f8f9fa;
}

.app-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.app-badge {
    height: 60px;
    transition: all 0.3s ease;
}

.app-badge:hover {
    transform: scale(1.1);
}

.app-btn-apk {
    background: #2ecc71;
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.app-btn-apk:hover {
    background: #27ae60;
    transform: translateY(-3px);
}

.apk-icon {
    font-size: 24px;
}

/* Bonuses Section */
.bonuses-section {
    padding: 60px 0;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 15px;
}

.bonuses-slider-wrap {
    max-width: 100%;
}

.bonuses-swiper {
    padding-bottom: 50px;
}

.bonus-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: 15px;
    height: auto;
    position: relative;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.bonus-badge {
    background: #2ecc71;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

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

.bonus-desc {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.bonus-details {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.bonus-details span {
    background: rgba(255, 255, 255, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.bonus-btn {
    background: #2ecc71;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

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

/* Wheel Section */
.wheel-section {
    padding: 60px 0;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 15px;
}

.wheel-game {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.wheel-canvas {
    max-width: 100%;
    height: auto;
    border: 5px solid #2ecc71;
    border-radius: 50%;
}

.spin-btn {
    background: #2ecc71;
    color: #fff;
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.spin-btn:hover {
    background: #27ae60;
    transform: scale(1.1);
}

.spin-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.wheel-result {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    animation: fadeIn 0.5s ease;
}

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

.result-text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.result-btn {
    background: #2ecc71;
    color: #fff;
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
}

.result-btn:hover {
    background: #27ae60;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 15px;
}

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

.review-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid #2ecc71;
}

.review-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

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

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.stars {
    color: #ffd700;
    font-size: 16px;
}

.review-text {
    color: #555;
    line-height: 1.5;
}

/* Review Form */
.review-form-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.review-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2ecc71;
}

.form-submit-btn {
    background: #2ecc71;
    color: #fff;
    padding: 12px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.form-submit-btn:hover {
    background: #27ae60;
    transform: scale(1.05);
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid #c3e6cb;
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 15px;
}

.main-h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
    line-height: 1.2;
}

.x9d2f4 h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #000;
}

.x9d2f4 h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 25px 0 12px;
    color: #333;
}

.x9d2f4 p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.x9d2f4 ul,
.x9d2f4 ol {
    margin: 15px 0;
    padding-left: 30px;
}

.x9d2f4 li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.x9d2f4 table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    overflow-x: auto;
    display: block;
}

.x9d2f4 table thead {
    background: #f8f9fa;
}

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

.x9d2f4 table th {
    font-weight: 600;
    background: #000;
    color: #fff;
}

.x9d2f4 table tr:nth-child(even) {
    background: #f8f9fa;
}

.x9d2f4 blockquote {
    background: #f8f9fa;
    border-left: 4px solid #2ecc71;
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
}

.x9d2f4 strong {
    font-weight: 600;
}

/* Author Section */
.author-section {
    padding: 40px 0;
    background: #f8f9fa;
    margin-bottom: 30px;
    border-radius: 15px;
}

.author-card {
    display: flex;
    gap: 30px;
    align-items: center;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

.author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.author-bio {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.author-link {
    color: #2ecc71;
    font-weight: 500;
}

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

/* Footer */
.site-footer {
    background: #000;
    color: #fff;
    padding: 60px 0 20px;
}

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

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

.footer-desc {
    color: #999;
    line-height: 1.6;
}

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

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

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

.footer-menu a {
    color: #999;
}

.footer-menu a:hover {
    color: #2ecc71;
}

.payment-methods {
}

.payments-img {
    max-width: 100%;
}

.footer-providers {
    margin-bottom: 40px;
    text-align: center;
}

.providers-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2ecc71;
}

.providers-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.providers-logos img {
    height: 40px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.providers-logos img:hover {
    opacity: 1;
}

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

.footer-copyright {
    color: #999;
}

.footer-copyright p {
    margin-bottom: 10px;
    font-size: 14px;
}

.legal-text {
    font-size: 12px;
    color: #666;
}

.license-info {
    font-size: 12px;
    color: #666;
}

/* Sticky Widget */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.5s ease;
}

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

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

.widget-text {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.widget-btn {
    background: #2ecc71;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.widget-btn:hover {
    background: #27ae60;
    transform: scale(1.05);
}

/* Unused classes for obfuscation */
.elementor-section {
}

.elementor-column {
}

.wp-block-group {
}

.has-text-align-center {
}

.entry-content {
}

.wp-site-blocks {
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .header-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

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

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

    .section-title {
        font-size: 28px;
    }

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

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

    .online-counter {
        display: none;
    }
}

@media (max-width: 768px) {
    .swiper {
        height: 350px;
    }

    .advantages-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

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

    .main-h1 {
        font-size: 28px;
    }

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

    .x9d2f4 table {
        font-size: 14px;
    }
}

.ncbdg {
    --nc-bg: #ffffff;
    --nc-text: #1f2937;
    --nc-muted: #5f6b7a;
    --nc-line: #dbe2ea;
    --nc-accent: #16a34a;
    --nc-accent-dark: #15803d;
    --nc-soft: #f8fafc;
    --nc-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
    --nc-radius: 22px;
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 24px 72px;
    background: var(--nc-bg);
    border: 1px solid var(--nc-line);
    border-radius: var(--nc-radius);
    box-shadow: var(--nc-shadow);
    color: var(--nc-text);
    font-size: 17px;
    line-height: 1.75;
}

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

.ncbdg h1,
.ncbdg h2,
.ncbdg h3,
.ncbdg h4,
.ncbdg h5,
.ncbdg h6 {
    color: #0f172a;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.ncbdg h1 {
    font-size: clamp(32px, 5vw, 50px);
    margin: 0 0 22px;
}

.ncbdg h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin: 42px 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--nc-line);
}

.ncbdg h3 {
    font-size: clamp(20px, 2.4vw, 26px);
    margin: 28px 0 14px;
}

.ncbdg h4,
.ncbdg h5,
.ncbdg h6 {
    font-size: 18px;
    margin: 22px 0 12px;
}

.ncbdg p {
    margin: 0 0 18px;
    color: var(--nc-text);
}

.ncbdg > h1 + p {
    font-size: 19px;
    color: var(--nc-muted);
}

.ncbdg a {
    color: var(--nc-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
    word-break: break-word;
}

.ncbdg a:hover {
    color: var(--nc-accent-dark);
}

.ncbdg ul,
.ncbdg ol {
    margin: 0 0 24px;
}

.ncbdg ul {
    list-style: none;
    padding-left: 0;
}

.ncbdg ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.ncbdg ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--nc-accent);
    box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.12);
}

.ncbdg ol {
    padding-left: 0;
    list-style: none;
    counter-reset: nc-list;
}

.ncbdg ol li {
    position: relative;
    counter-increment: nc-list;
    padding-left: 54px;
    margin-bottom: 14px;
    min-height: 36px;
}

.ncbdg ol li::before {
    content: counter(nc-list);
    position: absolute;
    left: 0;
    top: -1px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ecfdf3;
    color: var(--nc-accent-dark);
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ncbdg strong {
    font-weight: 800;
    color: #111827;
}

.ncbdg em {
    font-style: italic;
}

.ncbdg blockquote {
    margin: 28px 0;
    padding: 20px 22px;
    background: #f0fdf4;
    border-left: 4px solid var(--nc-accent);
    border-radius: 0 16px 16px 0;
    color: var(--nc-muted);
}

.ncbdg table {
    width: 100%;
    border-collapse: collapse;
    margin: 26px 0;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    border: 1px solid var(--nc-line);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    background: #fff;
}

.ncbdg table thead {
    background: #111827;
}

.ncbdg table th,
.ncbdg table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--nc-line);
}

.ncbdg table th {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.ncbdg table td {
    font-size: 15px;
    color: var(--nc-text);
    background: #ffffff;
}

.ncbdg table tr:nth-child(even) td {
    background: var(--nc-soft);
}

.ncbdg hr {
    border: 0;
    border-top: 1px solid var(--nc-line);
    margin: 32px 0;
}

.ncbdg img,
.ncbdg iframe {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.ncbdg > ul:last-child,
.ncbdg > ol:last-child,
.ncbdg > p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .ncbdg {
        padding: 28px 16px 56px;
        font-size: 16px;
        line-height: 1.7;
        border-radius: 18px;
    }

    .ncbdg h1 {
        margin-bottom: 18px;
    }

    .ncbdg h2 {
        margin-top: 34px;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .ncbdg h3 {
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .ncbdg p {
        margin-bottom: 16px;
    }

    .ncbdg > h1 + p {
        font-size: 17px;
    }

    .ncbdg ul li {
        padding-left: 24px;
    }

    .ncbdg ol li {
        padding-left: 48px;
    }

    .ncbdg ol li::before {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .ncbdg table th,
    .ncbdg table td {
        padding: 12px 14px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ncbdg {
        padding: 24px 14px 44px;
        font-size: 15px;
        border-radius: 16px;
    }

    .ncbdg h1 {
        font-size: 30px;
    }

    .ncbdg h2 {
        font-size: 24px;
    }

    .ncbdg h3 {
        font-size: 20px;
    }

    .ncbdg ul li::before {
        top: 9px;
        width: 8px;
        height: 8px;
        box-shadow: 0 0 0 5px rgba(22, 163, 74, 0.12);
    }

    .ncbdg ol li {
        padding-left: 44px;
    }

    .ncbdg ol li::before {
        width: 30px;
        height: 30px;
    }
}