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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background: #0A1E00;
    color: #e0e0e0;
    line-height: 1.7;
}

.bdy8x2k {
    overflow-x: hidden;
}

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

.hdr8x3k {
    background: #012B00;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.lg9x2d {
    display: inline-block;
    transition: transform 0.3s ease;
}

.lg9x2d:hover {
    transform: scale(1.05);
}

.nv7k2s {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 15px;
}

.nv7k2s:hover {
    color: #00B300;
}

.btn5x2a {
    background: #FFFFFF;
    color: #012B00;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn5x2a:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn6x3b {
    background: #00B300;
    color: #FFFFFF;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn6x3b:hover {
    background: #009900;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 179, 0, 0.4);
    color: #FFFFFF;
}

.onl8x2k {
    color: #e0e0e0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pulse3x {
    width: 8px;
    height: 8px;
    background: #00B300;
    border-radius: 50%;
    animation: pulse 2s infinite;
    display: inline-block;
}

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

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

.brg9x2k span {
    display: block;
    width: 100%;
    height: 3px;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

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

.brg9x2k.active span:nth-child(2) {
    opacity: 0;
}

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

.mbmenu8x {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: #012B00;
    transition: right 0.3s ease;
    z-index: 999;
    padding: 30px;
    overflow-y: auto;
}

.mbmenu8x.active {
    right: 0;
}

.mblink5x {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mblink5x:hover {
    color: #00B300;
}

.hero9x3k {
    background-image: url('/1-banner.png');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #FFFFFF;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 43, 0, 0.9) 0%, rgba(10, 30, 0, 0.7) 100%);
}

.hero9x3k .row {
    position: relative;
    z-index: 1;
}

.hero-ttl {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-txt {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

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

.main9x2k {
    flex: 1;
}

.sec-ttl {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 30px;
    text-align: center;
}

.jckpt8x2k {
    animation: fadeIn 1s ease;
}

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

.jck-card9x {
    background: linear-gradient(135deg, #1a3a00 0%, #012B00 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 2px solid #00B300;
}

.jck-card9x:hover {
    transform: translateY(-10px);
}

.jck-name {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.jck-amount {
    color: #00B300;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
}

.jck-desc {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.wnnrs8x3k {
    animation: fadeIn 1.2s ease;
}

.tbl-responsive {
    overflow-x: auto;
}

.tbl9x2k {
    background: #1a3a00;
    color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    border: 2px solid #012B00;
}

.tbl9x2k thead {
    background: #012B00;
    color: #FFFFFF;
}

.tbl9x2k th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #00B300;
}

.tbl9x2k td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tbl9x2k tbody tr {
    transition: background 0.3s ease;
}

.tbl9x2k tbody tr:hover {
    background: rgba(0, 179, 0, 0.1);
}

.app8x2k {
    animation: fadeIn 1.4s ease;
}

.btn-app9x {
    display: block;
    transition: transform 0.3s ease;
}

.btn-app9x img {
    max-width: 50px;
    width: 100%;
}

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

.wheel8x2k {
    text-align: center;
    padding: 40px 0;
    animation: fadeIn 1.6s ease;
}

.wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wheel9x3 {
    position: relative;
    margin: 20px 0;
}

#wheelCanvas {
    max-width: 100%;
    height: auto;
}

.wheel-result {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00B300;
    min-height: 60px;
}

.author8x2k {
    animation: fadeIn 1.8s ease;
}

.author-card9x {
    background: #1a3a00;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid #012B00;
}

.author-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #00B300;
}

.author-name {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.author-bio {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-link9x {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00B300;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-link9x:hover {
    color: #FFFFFF;
}

.social-link9x img {
    width: 24px;
    height: 24px;
}

.content9x2k {
    margin-top: 40px;
    background: #1a3a00;
    border-radius: 15px;
    padding: 40px;
    color: #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.content9x2k h1, .content9x2k h2, .content9x2k h3 {
    color: #FFFFFF;
    margin-bottom: 20px;
    margin-top: 30px;
}

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

.content9x2k ul, .content9x2k ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content9x2k li {
    margin-bottom: 8px;
}

.content9x2k table {
    width: 100%;
    margin: 20px auto;
    background: #012B00;
    border-radius: 8px;
    overflow: hidden;
}

.content9x2k table th {
    background: #00B300;
    color: #FFFFFF;
    padding: 12px;
    text-align: left;
}

.content9x2k table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content9x2k a {
    color: #00B300;
    text-decoration: underline;
}

.content9x2k a:hover {
    color: #FFFFFF;
}

.ftr9x2k {
    background: #012B00;
    color: #e0e0e0;
    margin-top: 80px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.ttl7x3 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.txt5x2 {
    color: #d0d0d0;
    line-height: 1.6;
}

.flink8x {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 8px;
}

.flink8x:hover {
    color: #00B300;
}

.pmnt9x2 img {
    height: 30px;
    filter: grayscale(50%);
    transition: filter 0.3s ease;
}

.pmnt9x2 img:hover {
    filter: grayscale(0%);
}

.prvd8x3 .badge {
    margin: 3px;
    padding: 8px 15px;
}

.cprt5x2 {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.widget9x2k {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #012B00 0%, #00B300 100%);
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.5s ease;
}

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

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

.widget-text {
    color: #FFFFFF;
    font-size: 1.1rem;
}

.widget-sub {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-ttl {
        font-size: 2rem;
    }

    .hero-txt {
        font-size: 1rem;
    }

    .sec-ttl {
        font-size: 1.5rem;
    }

    .jck-amount {
        font-size: 2rem;
    }

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

    .author-card9x {
        padding: 20px;
    }

    .content9x2k {
        padding: 20px;
    }
}

.unused-class-x8k2 {
    display: none;
}

.elementor-section {
    padding: 0;
}

.wp-block-group {
    margin: 0;
}

.site-main {
    padding: 0;
}

.bsjd {
    max-width: 1120px;
    margin: 0 auto;
    padding: 42px 28px 72px;
    background: linear-gradient(180deg, rgba(1, 43, 0, 0.58) 0%, rgba(10, 30, 0, 0.9) 100%);
    border: 1px solid rgba(0, 179, 0, 0.24);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    color: #f1ffe9;
}

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

.bsjd h1,
.bsjd h2,
.bsjd h3,
.bsjd h4,
.bsjd h5,
.bsjd h6 {
    margin: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.24;
    color: #ffffff;
}

.bsjd h1 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.bsjd h2 {
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    font-weight: 800;
    margin: 36px 0 18px;
    padding: 18px 20px;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(0, 179, 0, 0.14), rgba(0, 179, 0, 0.04));
    border: 1px solid rgba(0, 179, 0, 0.24);
    border-radius: 18px;
}

.bsjd h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    font-weight: 700;
    margin: 28px 0 14px;
    color: #baff8e;
}

.bsjd p,
.bsjd li,
.bsjd td,
.bsjd th,
.bsjd blockquote,
.bsjd dt,
.bsjd dd {
    font-size: 1rem;
    line-height: 1.78;
}

.bsjd p {
    margin: 0 0 16px;
    color: #e9f7df;
}

.bsjd a {
    color: #8cff69;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.25s ease, opacity 0.25s ease;
    word-break: break-word;
}

.bsjd a:hover {
    color: #ffffff;
    opacity: 1;
}

.bsjd strong {
    color: #ffffff;
    font-weight: 700;
}

.bsjd em {
    color: #d7ffc5;
}

.bsjd ul,
.bsjd ol {
    margin: 0 0 20px;
    padding-left: 0;
}

.bsjd ul li,
.bsjd ol li {
    margin: 0 0 12px;
    list-style: none;
    position: relative;
    padding: 14px 16px 14px 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 179, 0, 0.16);
    border-radius: 16px;
    color: #e9f7df;
}

.bsjd ul li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00b300;
    box-shadow: 0 0 0 6px rgba(0, 179, 0, 0.14);
}

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

.bsjd ol li {
    counter-increment: bsjd-counter;
}

.bsjd ol li::before {
    content: counter(bsjd-counter);
    position: absolute;
    left: 14px;
    top: 12px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #00b300;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bsjd blockquote {
    margin: 22px 0;
    padding: 20px 22px;
    background: linear-gradient(135deg, rgba(0, 179, 0, 0.14), rgba(255, 255, 255, 0.03));
    border-left: 4px solid #00b300;
    border-radius: 0 18px 18px 0;
    color: #f4ffee;
}

.bsjd table {
    width: 100%;
    margin: 24px 0;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(1, 43, 0, 0.72);
    border: 1px solid rgba(0, 179, 0, 0.22);
    border-radius: 18px;
    overflow: hidden;
    display: block;
    overflow-x: auto;
}

.bsjd table tbody,
.bsjd table thead {
    width: 100%;
}

.bsjd table tr {
    background: transparent;
}

.bsjd th,
.bsjd td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border-right: 1px solid rgba(0, 179, 0, 0.14);
    border-bottom: 1px solid rgba(0, 179, 0, 0.14);
    min-width: 180px;
}

.bsjd th:last-child,
.bsjd td:last-child {
    border-right: 0;
}

.bsjd tr:last-child td {
    border-bottom: 0;
}

.bsjd thead th,
.bsjd table tr:first-child th {
    background: linear-gradient(135deg, rgba(0, 179, 0, 0.28), rgba(0, 179, 0, 0.14));
    color: #ffffff;
    font-weight: 700;
}

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

.bsjd tbody tr:hover td {
    background: rgba(0, 179, 0, 0.08);
}

.bsjd dl {
    margin: 20px 0;
}

.bsjd dt {
    margin: 0;
    padding: 16px 18px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(0, 179, 0, 0.12);
    border: 1px solid rgba(0, 179, 0, 0.18);
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
}

.bsjd dd {
    margin: 0 0 14px;
    padding: 16px 18px;
    color: #e9f7df;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 179, 0, 0.18);
    border-radius: 0 0 16px 16px;
}

.bsjd hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 179, 0, 0.5), transparent);
    margin: 28px 0;
}

.bsjd img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
}

@media (max-width: 991px) {
    .bsjd {
        padding: 34px 22px 60px;
        border-radius: 20px;
    }

    .bsjd h2 {
        padding: 16px 18px;
        margin-top: 30px;
    }

    .bsjd th,
    .bsjd td {
        min-width: 150px;
    }
}

@media (max-width: 767px) {
    .bsjd {
        padding: 24px 16px 44px;
        border-radius: 18px;
    }

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

    .bsjd h2 {
        margin: 24px 0 14px;
        padding: 14px 14px;
        border-radius: 14px;
    }

    .bsjd h3 {
        margin: 22px 0 12px;
    }

    .bsjd p,
    .bsjd li,
    .bsjd td,
    .bsjd th,
    .bsjd blockquote,
    .bsjd dt,
    .bsjd dd {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .bsjd ul li,
    .bsjd ol li {
        padding: 12px 12px 12px 42px;
        border-radius: 14px;
    }

    .bsjd ul li::before {
        left: 16px;
        top: 18px;
        width: 8px;
        height: 8px;
        box-shadow: 0 0 0 5px rgba(0, 179, 0, 0.14);
    }

    .bsjd ol li::before {
        left: 10px;
        top: 10px;
        width: 24px;
        height: 24px;
        font-size: 0.82rem;
    }

    .bsjd blockquote {
        padding: 16px 16px;
        border-radius: 0 14px 14px 0;
    }

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

    .bsjd th,
    .bsjd td {
        padding: 12px 12px;
        min-width: 135px;
    }

    .bsjd dt,
    .bsjd dd {
        padding: 14px 14px;
    }
}

@media (max-width: 480px) {
    .bsjd {
        padding: 20px 12px 36px;
    }

    .bsjd h2 {
        font-size: 1.2rem;
    }

    .bsjd table {
        font-size: 0.9rem;
    }

    .bsjd th,
    .bsjd td {
        min-width: 120px;
        padding: 10px 10px;
    }
}

.app-download-box9x {
    background: linear-gradient(135deg, #1a3a00 0%, #012B00 100%);
    border: 2px solid rgba(0, 179, 0, 0.35);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    height: 100%;
}

.app-download-title9x {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.app-download-link9x {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 179, 0, 0.2);
    transition: all 0.3s ease;
}

.app-download-link9x:hover {
    background: rgba(0, 179, 0, 0.12);
    border-color: #00B300;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 179, 0, 0.18);
}

.app-download-icon9x {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.app-download-icon9x img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.app-download-text9x {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.app-download-text9x strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.app-download-text9x small {
    color: #b9d8b0;
    font-size: 0.87rem;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .app-download-box9x {
        padding: 18px;
        border-radius: 14px;
    }

    .app-download-title9x {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }

    .app-download-link9x {
        padding: 14px;
        gap: 12px;
        border-radius: 12px;
    }

    .app-download-icon9x {
        width: 54px;
        height: 54px;
        min-width: 54px;
    }

    .app-download-icon9x img {
        width: 42px;
        height: 42px;
    }

    .app-download-text9x strong {
        font-size: 0.95rem;
    }

    .app-download-text9x small {
        font-size: 0.8rem;
    }
}

table,
.table,
.table > :not(caption) > * > *,
.table tbody,
.table thead,
.table tfoot,
.table tr,
.table td,
.table th {
    background-color: transparent !important;
    color: #e0e0e0;
}

.tbl9x2k,
.tbl9x2k.table {
    background: #1a3a00 !important;
    border: 2px solid #00B300;
    border-radius: 10px;
    overflow: hidden;
}

.tbl9x2k thead,
.tbl9x2k thead tr,
.tbl9x2k thead th {
    background: #012B00 !important;
    color: #ffffff !important;
}

.tbl9x2k tbody tr {
    background: transparent !important;
}

.tbl9x2k tbody tr:nth-child(even) {
    background: rgba(0, 179, 0, 0.05) !important;
}

.tbl9x2k tbody tr:hover {
    background: rgba(0, 179, 0, 0.12) !important;
}

.tbl9x2k td,
.tbl9x2k th {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.content9x2k table,
.content9x2k table tr,
.content9x2k table td,
.content9x2k table th {
    background-color: transparent !important;
}

.content9x2k table {
    background: #012B00 !important;
    border: 1px solid rgba(0, 179, 0, 0.35);
}

.content9x2k table th {
    background: rgba(0, 179, 0, 0.2) !important;
    color: #ffffff !important;
}

.content9x2k table td {
    color: #e0e0e0 !important;
}

.table-responsive {
    background: transparent !important;
}