@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700&display=swap');

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

:root {
    --c-bg: #07041C;
    --c-header: #0a0720;
    --c-btn-primary: #A0F8B5;
    --c-btn-secondary: #07041C;
    --c-text: #e8e4ff;
    --c-text-muted: #9e9bc0;
    --c-accent: #A0F8B5;
    --c-accent2: #6be8c8;
    --c-border: #1e1a3a;
    --c-card: #0f0c28;
    --c-card2: #130f2e;
    --radius: 12px;
    --radius-lg: 18px;
    --shadow: 0 4px 32px rgba(0, 0, 0, .45);
}

html {
    scroll-behavior: smooth;
    background: var(--c-bg)
}

body {
    font-family: 'Kanit', sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px
}

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

a:hover {
    color: var(--c-accent2)
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    font-weight: 700;
    color: #fff
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px
}

.box {
    border-radius: var(--radius-lg)
}

.b9x3k {
    display: none
}

.f7m2p {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.q4n1r {
    position: absolute;
    left: -9999px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: 8px;
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    border: none;
    transition: transform .15s, box-shadow .15s, opacity .15s;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.3
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .4);
    opacity: .93
}

.btn:active {
    transform: translateY(0)
}

.btn--primary {
    background: var(--c-btn-primary);
    color: #07041C
}

.btn--secondary {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15)
}

.btn--lg {
    padding: 13px 30px;
    font-size: 1.05rem;
    border-radius: 10px
}

.btn--sm {
    padding: 6px 14px;
    font-size: .8rem
}

.header {
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(8px)
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 12px
}

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

.header-logo {
    flex-shrink: 0
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center
}

.header-nav a {
    color: var(--c-text-muted);
    font-size: .88rem;
    font-weight: 500;
    padding: 6px 11px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background .18s, color .18s
}

.header-nav a svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0
}

.header-nav a:hover, .header-nav a.active {
    background: rgba(160, 248, 181, .1);
    color: var(--c-accent)
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.header-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--c-text-muted);
    white-space: nowrap
}

.header-online span.dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .4
    }
}

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

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: transform .25s, opacity .25s
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 4, 28, .97);
    z-index: 998;
    padding: 24px 20px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto
}

.mobile-menu.open {
    display: flex
}

.mobile-menu a {
    color: var(--c-text);
    font-size: 1.05rem;
    padding: 12px 16px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--c-border)
}

.mobile-menu a:hover {
    background: rgba(160, 248, 181, .08);
    color: var(--c-accent)
}

.mobile-menu-divider {
    height: 1px;
    background: var(--c-border);
    margin: 8px 0
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s;
    display: flex;
    align-items: center
}

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

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.45)
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 60px 0
}

.hero-slide-content h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6)
}

.hero-slide-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 28px;
    line-height: 1.65
}

.hero-slide-content .badge {
    display: inline-block;
    background: rgba(160, 248, 181, .18);
    color: var(--c-accent);
    font-size: .8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(160, 248, 181, .3)
}

.hero-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5
}

.hero-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0
}

.hero-dots button.active {
    background: var(--c-accent);
    transform: scale(1.3)
}

.section {
    padding: 56px 0
}

.section-title {
    font-size: clamp(1.3rem, 2.5vw, 1.85rem);
    margin-bottom: 6px;
    color: #fff
}

.section-subtitle {
    font-size: .95rem;
    color: var(--c-text-muted);
    margin-bottom: 32px
}

.section-header {
    margin-bottom: 30px
}

.info-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius)
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px
}

.info-table th, .info-table td {
    padding: 11px 15px;
    text-align: left;
    border-bottom: 1px solid var(--c-border)
}

.info-table th {
    background: rgba(160, 248, 181, .07);
    color: var(--c-accent);
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .04em
}

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

.info-table tr:hover td {
    background: rgba(255, 255, 255, .025)
}

.info-table td:first-child {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--c-text-muted);
    font-size: .92rem
}

.info-table td:last-child {
    color: #fff;
    font-weight: 500
}

.info-table .ti {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--c-accent);
    opacity: .85
}

.ti svg {
    width: 20px;
    height: 20px
}

.card {
    background: var(--c-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    padding: 28px
}

.card--alt {
    background: var(--c-card2)
}

.pay-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius)
}

.pay-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px
}

.pay-table th, .pay-table td {
    padding: 11px 14px;
    text-align: left;
    border-bottom: 1px solid var(--c-border)
}

.pay-table th {
    background: rgba(160, 248, 181, .07);
    color: var(--c-accent);
    font-weight: 600;
    font-size: .82rem;
    text-transform: uppercase
}

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

.pay-table tr:hover td {
    background: rgba(255, 255, 255, .025)
}

.pay-table td {
    font-size: .9rem;
    color: var(--c-text)
}

.pay-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #fff
}

.pay-logo svg {
    width: 26px;
    height: 16px
}

.pay-badge {
    display: inline-block;
    background: rgba(160, 248, 181, .12);
    color: var(--c-accent);
    font-size: .75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid rgba(160, 248, 181, .25)
}

.mirror-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px
}

.mirror-time {
    font-size: .85rem;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 6px
}

.mirror-time .live-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite
}

.mirror-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius)
}

.mirror-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px
}

.mirror-table th, .mirror-table td {
    padding: 11px 14px;
    text-align: left;
    border-bottom: 1px solid var(--c-border)
}

.mirror-table th {
    background: rgba(160, 248, 181, .07);
    color: var(--c-accent);
    font-weight: 600;
    font-size: .82rem;
    text-transform: uppercase
}

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

.mirror-table tr:hover td {
    background: rgba(255, 255, 255, .025)
}

.mirror-table a {
    color: var(--c-accent);
    font-weight: 600
}

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .82rem
}

.mirror-status.online {
    color: #4ade80
}

.mirror-status.online::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%
}

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

.winner-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border-color .2s, transform .2s
}

.winner-card:hover {
    border-color: rgba(160, 248, 181, .35);
    transform: translateY(-2px)
}

.winner-rank {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(160, 248, 181, .1);
    color: var(--c-accent);
    font-weight: 700;
    font-size: .82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.winner-rank.top3 {
    background: rgba(255, 200, 80, .15);
    color: #ffc850
}

.winner-info {
    flex: 1;
    min-width: 0
}

.winner-name {
    font-weight: 600;
    font-size: .9rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.winner-amount {
    font-size: .82rem;
    color: var(--c-accent);
    font-weight: 600
}

.slot-machine {
    background: var(--c-card2);
    border: 2px solid rgba(160, 248, 181, .2);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    max-width: 460px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(160, 248, 181, .07)
}

.slot-machine h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 6px
}

.slot-machine p {
    font-size: .9rem;
    color: var(--c-text-muted);
    margin-bottom: 24px
}

.slot-reels {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px
}

.reel {
    width: 76px;
    height: 96px;
    background: rgba(7, 4, 28, .7);
    border: 2px solid var(--c-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    overflow: hidden;
    position: relative;
    transition: border-color .3s
}

.reel.spinning {
    animation: reelSpin .12s infinite linear;
    border-color: var(--c-accent)
}

@keyframes reelSpin {
    0% {
        background: rgba(7, 4, 28, .7)
    }
    50% {
        background: rgba(160, 248, 181, .07)
    }
    100% {
        background: rgba(7, 4, 28, .7)
    }
}

.slot-result {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.05rem;
    font-weight: 600
}

.slot-result.win {
    color: var(--c-accent);
    animation: fadeIn .4s
}

.slot-result.lose {
    color: #ff7a7a
}

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

.slot-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.review-block h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    margin-bottom: 16px
}

.review-block .author-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 28px
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--c-accent);
    object-fit: cover;
    flex-shrink: 0
}

.author-info {
    flex: 1
}

.author-name {
    font-weight: 700;
    color: #fff;
    font-size: .98rem
}

.author-title {
    font-size: .82rem;
    color: var(--c-text-muted)
}

.author-links {
    display: flex;
    gap: 8px;
    margin-top: 6px
}

.author-links a {
    font-size: .78rem;
    color: var(--c-accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 3px
}

.author-links a:hover {
    text-decoration: underline
}

.review-content {
    color: var(--c-text);
    line-height: 1.75
}

.review-content h1, .review-content h2, .review-content h3, .review-content h4 {
    color: #fff;
    margin: 1.6em 0 .6em;
    line-height: 1.3
}

.review-content h1 {
    font-size: 1.7rem
}

.review-content h2 {
    font-size: 1.35rem
}

.review-content h3 {
    font-size: 1.15rem
}

.review-content p {
    margin-bottom: 1.1em
}

.review-content ul, .review-content ol {
    margin: 0 0 1.2em 1.5em
}

.review-content li {
    margin-bottom: .45em
}

.review-content a {
    color: var(--c-accent);
    text-decoration: underline
}

.review-content blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 10px 16px;
    margin: 1.2em 0;
    background: rgba(160, 248, 181, .05);
    border-radius: 0 8px 8px 0;
    color: var(--c-text-muted);
    font-style: italic
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0
}

.review-content table th, .review-content table td {
    padding: 9px 13px;
    border: 1px solid var(--c-border);
    text-align: left
}

.review-content table th {
    background: rgba(160, 248, 181, .07);
    color: var(--c-accent);
    font-weight: 600
}

.review-content strong {
    color: #fff;
    font-weight: 600
}

.review-content em {
    color: var(--c-text-muted)
}

.review-content code {
    background: rgba(255, 255, 255, .07);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .88em;
    font-family: monospace
}

.review-content hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 1.8em 0
}

.review-content img {
    border-radius: var(--radius);
    margin: 1em 0
}

.faq-item {
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .2s
}

.faq-item.open {
    border-color: rgba(160, 248, 181, .3)
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: .97rem;
    color: #fff;
    user-select: none;
    gap: 12px
}

.faq-question:hover {
    background: rgba(255, 255, 255, .03)
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform .25s;
    color: var(--c-accent)
}

.faq-item.open .faq-icon {
    transform: rotate(45deg)
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    color: var(--c-text-muted);
    font-size: .93rem;
    line-height: 1.7
}

.faq-item.open .faq-answer {
    display: block
}

.footer {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 48px 0 0
}

.footer-top {
    display: grid;
    grid-template-columns:220px 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px
}

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

.footer-brand p {
    font-size: .85rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 14px
}

.footer-socials {
    display: flex;
    gap: 9px;
    flex-wrap: wrap
}

.footer-socials a {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .07);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s
}

.footer-socials a:hover {
    background: rgba(160, 248, 181, .15)
}

.footer-socials svg {
    width: 17px;
    height: 17px;
    color: #fff
}

.footer-col h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 14px
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px
}

.footer-col ul li a {
    font-size: .87rem;
    color: var(--c-text-muted);
    transition: color .18s
}

.footer-col ul li a:hover {
    color: var(--c-accent)
}

.footer-middle {
    border-top: 1px solid var(--c-border);
    padding: 28px 0
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-bottom: 20px
}

.footer-logos-row span {
    font-size: .78rem;
    color: var(--c-text-muted);
    flex-basis: 100%
}

.logo-pill {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--c-border);
    border-radius: 7px;
    padding: 5px 12px;
    font-size: .78rem;
    color: var(--c-text-muted);
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px
}

.logo-pill svg {
    width: 16px;
    height: 16px;
    opacity: .7
}

.footer-bottom {
    border-top: 1px solid var(--c-border);
    padding: 20px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--c-text-muted)
}

.footer-country .flag {
    font-size: 1.3rem
}

.footer-legal {
    flex: 1;
    font-size: .75rem;
    color: rgba(255, 255, 255, .3);
    line-height: 1.6;
    text-align: center
}

.footer-legal a {
    color: rgba(255, 255, 255, .4);
    text-decoration: underline
}

.footer-email {
    font-size: .82rem;
    color: var(--c-text-muted)
}

.footer-email a {
    color: var(--c-accent)
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 997;
    background: linear-gradient(90deg, #07041C 0%, #0f0c28 100%);
    border-top: 2px solid var(--c-accent);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.sticky-widget-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.sticky-promo-label {
    font-size: .8rem;
    color: var(--c-text-muted)
}

.sticky-promo-code {
    background: rgba(160, 248, 181, .1);
    border: 2px dashed rgba(160, 248, 181, .4);
    color: var(--c-accent);
    font-size: 1rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 8px;
    letter-spacing: .08em;
    cursor: pointer;
    transition: background .2s
}

.sticky-promo-code:hover {
    background: rgba(160, 248, 181, .18)
}

.sticky-widget p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .7);
    flex: 1
}

.sticky-widget p strong {
    color: #fff
}

.sticky-widget-close {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, .4);
    font-size: 1.2rem;
    line-height: 1;
    padding: 4px 8px;
    flex-shrink: 0
}

.sticky-widget-close:hover {
    color: #fff
}

@media (max-width: 1024px) {
    .header-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .footer-top {
        grid-template-columns:1fr 1fr
    }

    .footer-brand {
        grid-column: 1/-1
    }
}

@media (max-width: 768px) {
    .section {
        padding: 36px 0
    }

    .winners-grid {
        grid-template-columns:repeat(auto-fill, minmax(170px, 1fr))
    }

    .hero-slide-content {
        padding: 40px 0 60px
    }

    .footer-top {
        grid-template-columns:1fr
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .sticky-widget {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px
    }

    .winners-grid {
        grid-template-columns:1fr 1fr
    }

    .slot-machine {
        padding: 22px 14px
    }

    .reel {
        width: 66px;
        height: 84px;
        font-size: 2.3rem
    }

    .sticky-widget {
        padding: 10px 14px
    }
}

.g7x2m, .h3k9p, .r1v5n {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    height: 0;
    overflow: hidden;
    width: 0
}

.wc-block-root, .woocommerce-notices-wrapper, .wc-cart-fragment-refresh {
    display: none !important
}

.wp-caption, .wp-caption-text, .sticky {
    display: inline
}

.entry-meta, .entry-footer, .byline, .updated:not(.published) {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    height: 1px
}

.pysew {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    background: var(--c-card);
    padding: 32px;
    box-shadow: var(--shadow);
    word-break: break-word;
}

.pysew * {
    max-width: 100%;
}

.pysew img,
.pysew iframe,
.pysew video,
.pysew svg,
.pysew canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

.pysew table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-collapse: collapse;
}

.pysew pre {
    max-width: 100%;
    overflow: auto;
}

.pysew code {
    word-break: break-word;
}

.pysew ul,
.pysew ol {
    padding-left: 22px;
}

.pysew p,
.pysew li,
.pysew h1,
.pysew h2,
.pysew h3,
.pysew h4,
.pysew h5,
.pysew h6,
.pysew blockquote {
    overflow-wrap: anywhere;
}

@media (max-width: 768px) {
    .pysew {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .pysew table {
        font-size: 14px;
        white-space: nowrap;
    }

    .pysew th,
    .pysew td {
        padding: 10px 12px;
    }

    .pysew iframe {
        min-height: 220px;
    }
}

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

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

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

    .pysew h3 {
        font-size: 19px;
    }

    .pysew table {
        font-size: 13px;
    }

    .pysew th,
    .pysew td {
        padding: 8px 10px;
    }
}

.header {
    overflow: visible;
}

.header .container {
    position: relative;
}

.mobile-menu {
    top: 68px;
    left: 0;
    right: 0;
    bottom: auto;
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    z-index: 9999;
}

.mobile-menu.open,
.mobile-menu.is-open {
    display: flex;
}

@media (max-width: 1024px) {
    .header-actions {
        gap: 6px;
    }


    .header-online {
        display: none;
    }

    .burger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        top: 64px;
        max-height: calc(100dvh - 64px);
        padding: 14px 12px;
    }

    .mobile-menu a {
        width: 100%;
        min-height: 44px;
    }
}