
:root {
    --clr-header: #012B00;
    --clr-bg: #0A1E00;
    --clr-btn-green: #00B300;
    --clr-btn-white: #FFFFFF;
    --clr-text: #e8f5e0;
    --clr-text-muted: #9abf88;
    --clr-border: #1a4a00;
    --clr-card: #0d2600;
    --clr-card2: #102900;
    --clr-accent: #00e000;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--clr-accent);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: #fff;
}

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

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--clr-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--clr-btn-green);
    border-radius: 3px;
}

/* ========== BUTTONS ========== */
.btn-green {
    display: inline-block;
    background: var(--clr-btn-green);
    color: #fff !important;
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    text-decoration: none !important;
}

.btn-green:hover {
    background: #00d400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 179, 0, .4);
}

.btn-white {
    display: inline-block;
    background: transparent;
    color: #fff !important;
    border: 2px solid #fff;
    border-radius: var(--radius-sm);
    padding: 8px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, color .2s;
    text-decoration: none !important;
}

.btn-white:hover {
    background: #fff;
    color: var(--clr-header) !important;
}

/* ========== HEADER ========== */
#x-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--clr-header);
    border-bottom: 2px solid var(--clr-btn-green);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.x-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 10px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.x-logo img {
    height: 46px;
    width: auto;
    border-radius: 4px;
}

.x-nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.x-nav a {
    color: var(--clr-text);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: background .2s, color .2s;
    white-space: nowrap;
}

.x-nav a:hover {
    background: var(--clr-btn-green);
    color: #fff;
}

.x-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.x-online-count {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.x-online-dot {
    width: 8px;
    height: 8px;
    background: var(--clr-btn-green);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .5;
        transform: scale(1.3);
    }
}

/* Burger */
.x-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.x-burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.x-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.x-burger.open span:nth-child(2) {
    opacity: 0;
}

.x-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.x-mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 12px 20px;
    gap: 8px;
}

.x-mobile-menu.open {
    display: flex;
}

.x-mobile-menu a {
    color: var(--clr-text);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.x-mobile-menu a:hover {
    background: rgba(0, 179, 0, 0.15);
}

@media (max-width: 900px) {
    .x-nav {
        display: none;
    }

    .x-burger {
        display: flex;
    }

    .x-header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .x-online-count {
        display: none;
    }
}

/* ========== HERO ========== */
#x-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.x-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/1x-banner.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
    z-index: 0;
}

.x-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
}

.x-hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .7);
    max-width: 700px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.x-hero-content p {
    font-size: 1.1rem;
    color: var(--clr-text);
    max-width: 560px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.x-hero-badge {
    display: inline-block;
    background: var(--clr-btn-green);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* ========== SECTION WRAPPER ========== */
.x-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 48px 20px;
}

.x-section-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--clr-btn-green);
    display: inline-block;
}

/* ========== MIRRORS TABLE ========== */
#x-mirrors {
    background: linear-gradient(180deg, #0d2600 0%, var(--clr-bg) 100%);
}

.x-mirror-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.88rem;
    color: var(--clr-text-muted);
}

.x-mirror-meta .x-live-badge {
    background: var(--clr-btn-green);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    animation: fade-in-out 2s infinite;
}

@keyframes fade-in-out {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .6;
    }
}

.x-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
}

.x-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    font-size: 0.9rem;
}

.x-table thead tr {
    background: var(--clr-header);
}

.x-table th {
    padding: 14px 16px;
    text-align: left;
    color: var(--clr-text-muted);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 2px solid var(--clr-btn-green);
}

.x-table td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--clr-border);
    vertical-align: middle;
}

.x-table tbody tr {
    background: var(--clr-card);
    transition: background .15s;
}

.x-table tbody tr:nth-child(even) {
    background: var(--clr-card2);
}

.x-table tbody tr:hover {
    background: #163200;
}

.x-status-ok {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--clr-accent);
    font-weight: 700;
    font-size: 0.85rem;
}

.x-status-ok::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--clr-accent);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

/* ========== ADVANTAGES ========== */
#x-advantages {
    background: var(--clr-bg);
}

.x-adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.x-adv-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: transform .2s, box-shadow .2s;
}

.x-adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 179, 0, .2);
}

.x-adv-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 179, 0, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.4rem;
}

.x-adv-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.x-adv-card p {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

/* ========== WINNERS ========== */
#x-winners {
    background: linear-gradient(180deg, var(--clr-bg) 0%, #0d2600 100%);
}

.x-winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

.x-winner-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: background .15s;
}

.x-winner-card:hover {
    background: #163200;
}

.x-winner-rank {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--clr-btn-green);
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.x-winner-rank.gold {
    background: #c8a400;
}

.x-winner-rank.silver {
    background: #8a8a8a;
}

.x-winner-rank.bronze {
    background: #a05a2c;
}

.x-winner-info {
    flex: 1;
}

.x-winner-nick {
    font-weight: 700;
    font-size: 0.92rem;
    color: #fff;
}

.x-winner-game {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
}

.x-winner-sum {
    font-weight: 800;
    color: var(--clr-accent);
    font-size: 1rem;
    white-space: nowrap;
}

/* ========== VIDEO ========== */
#x-video {
    background: var(--clr-bg);
}

.x-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000;
    border: 2px solid var(--clr-border);
    box-shadow: var(--shadow);
}

.x-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== WHEEL ========== */
#x-wheel {
    background: linear-gradient(180deg, #0d2600 0%, var(--clr-bg) 100%);
}

.x-wheel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.x-wheel-container {
    position: relative;
    width: 320px;
    height: 320px;
}

#x-wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 32px rgba(0, 179, 0, .5);
    display: block;
}

.x-wheel-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    border: 3px solid var(--clr-header);
    z-index: 5;
    pointer-events: none;
}

.x-wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid var(--clr-btn-green);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5));
    z-index: 5;
}

.x-wheel-result {
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.x-wheel-result p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-accent);
}

.x-wheel-result.hidden {
    visibility: hidden;
}

/* ========== AUTHOR ========== */
#x-author {
    background: var(--clr-bg);
}

.x-author-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 28px;
    align-items: start;
    max-width: 760px;
}

.x-author-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--clr-btn-green);
}

.x-author-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.x-author-title {
    font-size: 0.82rem;
    color: var(--clr-btn-green);
    font-weight: 600;
    margin-bottom: 12px;
}

.x-author-bio {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.x-author-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.x-author-socials a {
    background: rgba(0, 179, 0, .15);
    border: 1px solid var(--clr-btn-green);
    color: var(--clr-text) !important;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    transition: background .2s;
}

.x-author-socials a:hover {
    background: var(--clr-btn-green);
    color: #fff !important;
}

@media (max-width: 600px) {
    .x-author-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .x-author-photo img {
        margin: 0 auto;
    }

    .x-author-socials {
        justify-content: center;
    }
}

/* ========== CONTENT BLOCK ========== */
#x-content-block {
    background: var(--clr-bg);
}

.x-content-area {
    max-width: 820px;
}

.x-content-area h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 10px;
}

.x-content-area h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-accent);
    margin: 22px 0 8px;
}

.x-content-area h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text);
    margin: 18px 0 6px;
}

.x-content-area p {
    color: var(--clr-text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

.x-content-area ul, .x-content-area ol {
    padding-left: 24px;
    margin-bottom: 14px;
}

.x-content-area li {
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 6px;
}

.x-content-area a {
    color: var(--clr-accent);
}

.x-content-area strong {
    color: #fff;
}

.x-content-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.x-content-area th {
    background: var(--clr-header);
    color: var(--clr-text-muted);
    text-align: left;
    padding: 10px 14px;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-bottom: 2px solid var(--clr-btn-green);
}

.x-content-area td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text);
}

.x-content-area tr:nth-child(even) td {
    background: var(--clr-card2);
}

.x-content-area blockquote {
    border-left: 4px solid var(--clr-btn-green);
    padding: 12px 18px;
    background: var(--clr-card);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 18px 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

/* ========== FAQ ========== */
#x-faq {
    background: linear-gradient(180deg, var(--clr-bg) 0%, #0d2600 100%);
}

.x-faq-list {
    max-width: 820px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.x-faq-item {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.x-faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 20px;
    color: #fff;
    font-size: 0.97rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background .15s;
    font-family: inherit;
}

.x-faq-q:hover {
    background: rgba(0, 179, 0, .08);
}

.x-faq-q .x-faq-arrow {
    color: var(--clr-btn-green);
    font-size: 1.1rem;
    transition: transform .3s;
    flex-shrink: 0;
}

.x-faq-item.open .x-faq-arrow {
    transform: rotate(180deg);
}

.x-faq-a {
    display: none;
    padding: 0 20px 18px;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.x-faq-item.open .x-faq-a {
    display: block;
}

/* ========== FOOTER ========== */
#x-footer {
    background: var(--clr-header);
    border-top: 2px solid var(--clr-btn-green);
    padding: 40px 20px 24px;
}

.x-footer-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.x-footer-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: start;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--clr-border);
}

.x-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.x-footer-nav a {
    color: var(--clr-text-muted);
    font-size: 0.88rem;
    transition: color .2s;
}

.x-footer-nav a:hover {
    color: var(--clr-accent);
}

.x-footer-logos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.x-pay-badge {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--clr-text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.x-footer-providers {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--clr-border);
}

.x-footer-providers h4 {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.x-providers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.x-provider-tag {
    background: rgba(0, 179, 0, .1);
    border: 1px solid rgba(0, 179, 0, .2);
    color: var(--clr-text-muted);
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 20px;
}

.x-footer-bottom {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.x-footer-legal {
    max-width: 700px;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .x-footer-top {
        grid-template-columns: 1fr;
    }
}

/* ========== STICKY WIDGET ========== */
#x-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #012B00 0%, #014200 100%);
    border-top: 2px solid var(--clr-btn-green);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .5);
    transform: translateY(0);
    transition: transform .3s;
}

#x-widget.hidden {
    transform: translateY(100%);
}

.x-widget-text {
    flex: 1;
    min-width: 0;
}

.x-widget-text strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
}

.x-widget-text span {
    font-size: 0.8rem;
    color: var(--clr-accent);
    font-weight: 600;
}

.x-widget-close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    flex-shrink: 0;
}

.x-widget-close:hover {
    color: #fff;
}

/* ========== SECTION DIVIDERS ========== */
.x-section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--clr-btn-green), transparent);
    margin: 0;
}

/* ========== WP CAMOUFLAGE (unused) ========== */
.wp-block-group, .elementor-section, .wp-site-blocks {
    display: contents;
}

.entry-content, .site-footer, .site-header {
    display: contents;
}

/* ========== ANIMATIONS ========== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.x-animate {
    animation: slideUp .5s ease both;
}

/* unused classes for uniqualization */
.jx92a {
    color: transparent;
}

.kp77w {
    display: none;
}

.m0b4x {
    visibility: hidden;
}

.r3v8z {
    pointer-events: none;
}

.hjd {
    max-width: 980px;
    margin: 0 auto 24px;
    padding: 34px 24px 42px;
    color: #eef8ea;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    #102709;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.hjd h1,
.hjd h2,
.hjd h3,
.hjd h4,
.hjd h5,
.hjd h6 {
    color: #ffffff;
    line-height: 1.24;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hjd h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.hjd h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.95rem);
    margin-top: 46px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hjd h3 {
    font-size: clamp(1.12rem, 1.8vw, 1.36rem);
    margin-top: 28px;
    margin-bottom: 14px;
    color: #8dff8d;
}

.hjd h4 {
    font-size: 1.04rem;
    margin-top: 22px;
    margin-bottom: 12px;
}

.hjd p {
    margin-bottom: 16px;
    color: #c2d0bc;
    font-size: 1rem;
    line-height: 1.76;
}

.hjd > p:first-of-type {
    color: #eef8ea;
    font-size: 1.05rem;
}

.hjd a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.hjd a:hover {
    color: #cffff0;
}

.hjd strong,
.hjd b {
    color: #ffffff;
    font-weight: 800;
}

.hjd em,
.hjd i {
    font-style: italic;
}

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

.hjd ul li,
.hjd ol li {
    margin-bottom: 10px;
    color: #c2d0bc;
    line-height: 1.72;
}

.hjd ul li::marker,
.hjd ol li::marker {
    color: #00b300;
    font-weight: 800;
}

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

.hjd blockquote {
    margin: 28px 0;
    padding: 18px 20px;
    border-left: 4px solid #00b300;
    border-radius: 0 14px 14px 0;
    background: rgba(0, 179, 0, 0.08);
}

.hjd blockquote p {
    margin: 0;
    color: #eef8ea;
}

.hjd table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    border-spacing: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.hjd thead tr {
    background: #012b00;
}

.hjd th,
.hjd td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hjd th {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
}

.hjd td {
    color: #eef8ea;
    font-size: 0.95rem;
}

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

.hjd dl {
    margin: 0 0 20px;
    display: grid;
    gap: 12px;
}

.hjd dt {
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 16px;
    border-radius: 14px 14px 0 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 0;
}

.hjd dd {
    margin: 0;
    padding: 0 16px 14px;
    border-radius: 0 0 14px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 0;
}

.hjd dd p:last-child {
    margin-bottom: 0;
}

.hjd hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 32px 0;
}

.hjd img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
}

.hjd .table-wrap {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 16px;
}

.hjd .table-wrap table {
    margin: 0;
    min-width: 700px;
}

@media (max-width: 767px) {
    .hjd {
        padding: 22px 16px 28px;
        border-radius: 18px;
        margin-bottom: 18px;
    }

    .hjd h1 {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }

    .hjd h2 {
        margin-top: 34px;
        margin-bottom: 14px;
        padding-bottom: 8px;
        font-size: 1.28rem;
    }

    .hjd h3 {
        margin-top: 24px;
        margin-bottom: 12px;
        font-size: 1.06rem;
    }

    .hjd p {
        font-size: 0.95rem;
        line-height: 1.72;
        margin-bottom: 14px;
    }

    .hjd ul,
    .hjd ol {
        padding-left: 20px;
        margin-bottom: 18px;
    }

    .hjd ul li,
    .hjd ol li {
        margin-bottom: 8px;
    }

    .hjd blockquote {
        margin: 22px 0;
        padding: 16px;
    }

    .hjd table,
    .hjd thead,
    .hjd tbody,
    .hjd tr,
    .hjd th,
    .hjd td {
        display: block;
        width: 100%;
    }

    .hjd table {
        border: 0;
        background: transparent;
    }

    .hjd thead {
        display: none;
    }

    .hjd tbody {
        display: grid;
        gap: 12px;
    }

    .hjd tr {
        padding: 12px 14px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hjd td {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

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

    .hjd td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 4px;
        color: #8dff8d;
        font-size: 0.78rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .hjd dl {
        gap: 10px;
    }

    .hjd dt {
        padding: 12px 14px;
        font-size: 0.96rem;
    }

    .hjd dd {
        padding: 0 14px 12px;
    }
}

@media (max-width: 479px) {
    .hjd {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hjd h1 {
        font-size: 1.64rem;
    }

    .hjd h2 {
        font-size: 1.18rem;
    }

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

    .hjd p,
    .hjd td,
    .hjd ul li,
    .hjd ol li,
    .hjd dt,
    .hjd dd {
        font-size: 0.92rem;
    }
}