:root {
    --col-bg: #0f0c08;
    --col-nav: #1b1a15;
    --col-nav-border: #2a2820;
    --col-accent-red: #ff5722;
    --col-accent-yellow: #ffc107;
    --col-text: #e8dcc8;
    --col-text-muted: #9e9380;
    --col-text-light: #f5efe3;
    --col-gold: #d4a843;
    --col-gold-light: #f0c84a;
    --col-card: #18160f;
    --col-card-border: #2e2b1f;
    --col-green: #4caf50;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-btn: 0 2px 12px rgba(255, 87, 34, 0.35);
    --transition: 0.22s ease;
    --font-main: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    color: var(--col-accent-red);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--col-accent-yellow);
}

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

.xw9k2-wrap {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.xw9k2-grid {
    display: grid;
}

/* ====== HEADER ====== */
.qp7r1-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--col-nav);
    border-bottom: 1px solid var(--col-nav-border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.qp7r1-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    height: 68px;
}

.qp7r1-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.qp7r1-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.qp7r1-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--col-gold-light);
    line-height: 1.2;
}

.qp7r1-logo-text span {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--col-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.n3b8m-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--col-text);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

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

.n3b8m-nav a:hover {
    background: rgba(255, 193, 7, 0.1);
    color: var(--col-accent-yellow);
}

.n3b8m-nav a:hover svg {
    opacity: 1;
}

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

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

.xm4n1-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--col-green);
    animation: pulse-dot 1.8s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.5);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(76, 175, 80, 0);
    }
}

.xm4n1-count {
    color: var(--col-green);
    font-weight: 700;
}

.lq5v2-lang {
    position: relative;
}

.lq5v2-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--col-nav-border);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    cursor: pointer;
    color: var(--col-text);
    font-size: 0.8rem;
    font-weight: 600;
    transition: background var(--transition);
}

.lq5v2-lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lq5v2-lang-btn .arrow {
    transition: transform var(--transition);
}

.lq5v2-lang.open .arrow {
    transform: rotate(180deg);
}

.lq5v2-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--col-nav);
    border: 1px solid var(--col-nav-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 200;
    box-shadow: var(--shadow-card);
}

.lq5v2-lang.open .lq5v2-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lq5v2-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--col-text);
    transition: background var(--transition);
}

.lq5v2-dropdown a:hover {
    background: rgba(255, 193, 7, 0.08);
    color: var(--col-accent-yellow);
}

.lq5v2-flag {
    font-size: 1.1rem;
    line-height: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

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

.btn-demo {
    background: transparent;
    border: 1.5px solid var(--col-accent-red);
    color: var(--col-accent-red);
}

.btn-demo:hover {
    background: rgba(255, 87, 34, 0.12);
    color: var(--col-accent-red);
}

.btn-play {
    background: linear-gradient(135deg, #ff7043 0%, #ff5722 100%);
    color: #fff;
    box-shadow: var(--shadow-btn);
}

.btn-reg {
    background: linear-gradient(135deg, #ffd740 0%, #ffc107 100%);
    color: #1a1200;
    box-shadow: 0 2px 12px rgba(255, 193, 7, 0.35);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.btn-xl {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

/* Burger */
.n3b8m-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--col-nav-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.n3b8m-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--col-text);
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

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

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

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

.n3b8m-mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--col-nav);
    z-index: 999;
    overflow-y: auto;
    padding: 20px;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.n3b8m-mobile-menu.open {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.n3b8m-mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--col-nav-border);
    color: var(--col-text);
    font-size: 0.95rem;
    font-weight: 600;
}

.n3b8m-mobile-menu a svg {
    width: 18px;
    height: 18px;
}

.n3b8m-mobile-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.n3b8m-mobile-btns .btn {
    justify-content: center;
    width: 100%;
}

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

.zf8q3-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/aztec-fire-2-banner.png');
    background-size: cover;
    background-position: center top;
    z-index: 0;
    transform: scale(1.04);
    animation: hero-zoom 12s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
    from {
        transform: scale(1.04);
    }
    to {
        transform: scale(1.09);
    }
}

.zf8q3-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(15, 12, 8, 0.92) 30%, rgba(15, 12, 8, 0.55) 70%, rgba(15, 12, 8, 0.2) 100%);
    z-index: 1;
}

.zf8q3-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    max-width: 620px;
}

.zf8q3-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 193, 7, 0.12);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--col-accent-yellow);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.zf8q3-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--col-text-light);
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.zf8q3-hero-title em {
    font-style: normal;
    color: var(--col-accent-yellow);
}

.zf8q3-hero-sub {
    font-size: 1.05rem;
    color: var(--col-text);
    margin-bottom: 32px;
    line-height: 1.65;
    opacity: 0.9;
}

.zf8q3-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.zf8q3-stats {
    display: flex;
    gap: 28px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.zf8q3-stat {
}

.zf8q3-stat-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--col-accent-yellow);
    line-height: 1;
}

.zf8q3-stat-lbl {
    font-size: 0.72rem;
    color: var(--col-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

.zf8q3-hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--col-bg));
    z-index: 2;
}

.ty2p9-section {
    padding: 60px 0;
}

.ty2p9-section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--col-text-light);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.ty2p9-section-title::after {
    content: '';
    display: block;
    height: 3px;
    width: 48px;
    background: linear-gradient(90deg, var(--col-accent-red), var(--col-accent-yellow));
    border-radius: 2px;
    margin-top: 8px;
}

.ty2p9-section-sub {
    font-size: 0.9rem;
    color: var(--col-text-muted);
    margin-top: 6px;
    margin-bottom: 36px;
}

.ty2p9-section-head {
    margin-bottom: 32px;
}

.ty2p9-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--col-card-border), transparent);
    margin: 0;
}

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

.rv6h4-table {
    width: 100%;
    min-width: 540px;
    border-collapse: collapse;
    background: var(--col-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.rv6h4-table tr {
    border-bottom: 1px solid var(--col-card-border);
}

.rv6h4-table tr:last-child {
    border-bottom: none;
}

.rv6h4-table td {
    padding: 13px 20px;
    font-size: 0.88rem;
    line-height: 1.5;
    text-align: left;
    vertical-align: middle;
}

.rv6h4-table td:first-child {
    width: 42%;
    color: var(--col-text-muted);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-right: 1px solid var(--col-card-border);
    background: rgba(255, 255, 255, 0.02);
}

.rv6h4-table td:last-child {
    color: var(--col-text-light);
    font-weight: 500;
}

.rv6h4-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.015);
}

.rv6h4-rtp {
    color: var(--col-accent-yellow) !important;
    font-weight: 700 !important;
}

.rv6h4-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(255, 193, 7, 0.12);
    color: var(--col-accent-yellow);
    margin: 2px 3px 2px 0;
}

.jp9f5-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.jp9f5-card {
    border-radius: var(--radius-xl);
    padding: 28px 20px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1.5px solid;
    transition: transform var(--transition), box-shadow var(--transition);
}

.jp9f5-card:hover {
    transform: translateY(-4px);
}

.jp9f5-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.07;
    z-index: 0;
}

.jp9f5-card > * {
    position: relative;
    z-index: 1;
}

.jp9f5-mini {
    background: linear-gradient(145deg, #1a1a10, #131208);
    border-color: #5a5a30;
}

.jp9f5-mini::before {
    background: linear-gradient(135deg, #e0e000, #b0b000);
}

.jp9f5-mini .jp9f5-icon-wrap {
    background: rgba(220, 220, 0, 0.12);
}

.jp9f5-mini .jp9f5-name {
    color: #d4d438;
}

.jp9f5-mini .jp9f5-amount {
    color: #e8e840;
}

.jp9f5-major {
    background: linear-gradient(145deg, #1a1208, #120c04);
    border-color: #8a5a1a;
}

.jp9f5-major::before {
    background: linear-gradient(135deg, #ffd740, #ff8f00);
}

.jp9f5-major .jp9f5-icon-wrap {
    background: rgba(255, 160, 0, 0.12);
}

.jp9f5-major .jp9f5-name {
    color: var(--col-accent-yellow);
}

.jp9f5-major .jp9f5-amount {
    color: var(--col-gold-light);
}

.jp9f5-grand {
    background: linear-gradient(145deg, #1a0e08, #110806);
    border-color: #8a3a1a;
}

.jp9f5-grand::before {
    background: linear-gradient(135deg, #ff7043, #b71c1c);
}

.jp9f5-grand .jp9f5-icon-wrap {
    background: rgba(255, 87, 34, 0.12);
}

.jp9f5-grand .jp9f5-name {
    color: var(--col-accent-red);
}

.jp9f5-grand .jp9f5-amount {
    color: #ff8a65;
}

.jp9f5-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.6rem;
}

.jp9f5-name {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.jp9f5-level-badge {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--col-text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jp9f5-amount {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.jp9f5-currency {
    font-size: 0.75rem;
    color: var(--col-text-muted);
    margin-bottom: 18px;
}

.jp9f5-winners {
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 14px;
}

.jp9f5-winners-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--col-text-muted);
    margin-bottom: 10px;
}

.jp9f5-winner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.jp9f5-winner:last-child {
    border-bottom: none;
}

.jp9f5-winner-nick {
    color: var(--col-text);
    font-weight: 600;
}

.jp9f5-winner-win {
    color: var(--col-text-muted);
    font-size: 0.72rem;
}

.ma3x1-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.ma3x1-app-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--col-text-light);
    margin-bottom: 12px;
}

.ma3x1-app-info p {
    color: var(--col-text);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.65;
}

.ma3x1-app-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ma3x1-app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--col-card);
    border: 1.5px solid var(--col-card-border);
    border-radius: var(--radius-md);
    color: var(--col-text-light);
    font-weight: 600;
    font-size: 0.88rem;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.ma3x1-app-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--col-accent-yellow);
    color: var(--col-text-light);
    transform: translateY(-1px);
}

.ma3x1-app-btn svg {
    flex-shrink: 0;
}

.ma3x1-app-btn-sub {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--col-text-muted);
    display: block;
}

.gm7r2-demo-wrap {
    background: var(--col-card);
    border: 1.5px solid var(--col-card-border);
    border-radius: var(--radius-xl);
}

.gm7r2-demo-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px;
    background: var(--col-nav);
    border-bottom: 1px solid var(--col-card-border);
    flex-wrap: wrap;
    gap: 10px;
}

.gm7r2-demo-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--col-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.gm7r2-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--col-accent-red);
    animation: pulse-dot 1.5s infinite;
    flex-shrink: 0;
}

.gm7r2-iframe-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 560px;
}

.gm7r2-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.gm7r2-demo-footer {
    padding: 16px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.gm7r2-demo-footer p {
    font-size: 0.78rem;
    color: var(--col-text-muted);
    max-width: 500px;
}

.fq5c8-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fq5c8-item {
    background: var(--col-card);
    border: 1.5px solid var(--col-card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.fq5c8-item.open {
    border-color: rgba(255, 193, 7, 0.3);
}

.fq5c8-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 22px;
    cursor: pointer;
    gap: 12px;
    user-select: none;
}

.fq5c8-q-text {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--col-text-light);
    line-height: 1.4;
}

.fq5c8-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition);
}

.fq5c8-item.open .fq5c8-icon {
    background: rgba(255, 193, 7, 0.2);
    transform: rotate(45deg);
}

.fq5c8-icon svg {
    width: 14px;
    height: 14px;
    color: var(--col-accent-yellow);
}

.fq5c8-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.fq5c8-item.open .fq5c8-a {
    max-height: 400px;
}

.fq5c8-a-inner {
    padding: 0 22px 18px;
    font-size: 0.88rem;
    color: var(--col-text);
    line-height: 1.7;
    border-top: 1px solid var(--col-card-border);
    padding-top: 14px;
}

.ft1n7-footer {
    background: var(--col-nav);
    border-top: 1px solid var(--col-nav-border);
    margin-top: 60px;
}

.ft1n7-top {
    padding: 48px 0 36px;
}

.ft1n7-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 32px;
}

.ft1n7-brand img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;
}

.ft1n7-brand p {
    font-size: 0.8rem;
    color: var(--col-text-muted);
    line-height: 1.65;
    max-width: 280px;
}

.ft1n7-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--col-text-muted);
    margin-bottom: 14px;
}

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

.ft1n7-col ul li a {
    font-size: 0.84rem;
    color: var(--col-text);
    transition: color var(--transition);
}

.ft1n7-col ul li a:hover {
    color: var(--col-accent-yellow);
}

.ft1n7-divider {
    border: none;
    height: 1px;
    background: var(--col-nav-border);
}

.ft1n7-bottom {
    padding: 24px 0;
}

.ft1n7-bottom-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ft1n7-payments-row, .ft1n7-trust-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ft1n7-row-label {
    font-size: 0.7rem;
    color: var(--col-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 70px;
}

.ft1n7-pay-badge, .ft1n7-trust-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--col-card-border);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--col-text-muted);
    letter-spacing: 0.5px;
}

.ft1n7-legal {
    font-size: 0.73rem;
    color: var(--col-text-muted);
    line-height: 1.65;
    padding-top: 16px;
    border-top: 1px solid var(--col-nav-border);
}

.ft1n7-legal a {
    color: var(--col-accent-red);
}

.cn4r9-content {
    background: var(--col-card);
    border: 1.5px solid var(--col-card-border);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
}

.cn4r9-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 32px;
}

.cn4r9-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--col-accent-red), var(--col-accent-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.cn4r9-author-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--col-text-light);
}

.cn4r9-author-bio {
    font-size: 0.78rem;
    color: var(--col-text-muted);
    margin-top: 3px;
    line-height: 1.5;
}

.cn4r9-author a {
    font-size: 0.75rem;
    color: var(--col-accent-red);
    margin-top: 4px;
    display: inline-block;
}

.cn4r9-content h2, .cn4r9-content h3, .cn4r9-content h4 {
    color: var(--col-text-light);
    font-weight: 700;
    margin: 28px 0 12px;
    line-height: 1.3;
}

.cn4r9-content h2 {
    font-size: 1.4rem;
}

.cn4r9-content h3 {
    font-size: 1.15rem;
}

.cn4r9-content h4 {
    font-size: 0.98rem;
    color: var(--col-accent-yellow);
}

.cn4r9-content p {
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--col-text);
    line-height: 1.75;
}

.cn4r9-content ul, .cn4r9-content ol {
    margin: 12px 0 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cn4r9-content ul li, .cn4r9-content ol li {
    font-size: 0.88rem;
    color: var(--col-text);
    line-height: 1.6;
}

.cn4r9-content ul li::marker {
    color: var(--col-accent-yellow);
}

.cn4r9-content ol li::marker {
    color: var(--col-accent-red);
    font-weight: 700;
}

.cn4r9-content a {
    color: var(--col-accent-red);
    text-decoration: underline;
}

.cn4r9-content a:hover {
    color: var(--col-accent-yellow);
}

.cn4r9-content strong {
    color: var(--col-text-light);
    font-weight: 700;
}

.cn4r9-content em {
    color: var(--col-accent-yellow);
    font-style: italic;
}

.cn4r9-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.85rem;
}

.cn4r9-content th {
    background: rgba(255, 193, 7, 0.08);
    color: var(--col-accent-yellow);
    font-weight: 700;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--col-card-border);
}

.cn4r9-content td {
    padding: 9px 14px;
    border: 1px solid var(--col-card-border);
    color: var(--col-text);
}

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

.cn4r9-content blockquote {
    border-left: 3px solid var(--col-accent-yellow);
    padding: 12px 20px;
    margin: 16px 0;
    background: rgba(255, 193, 7, 0.04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--col-text-muted);
}

.cn4r9-content hr {
    border: none;
    border-top: 1px solid var(--col-card-border);
    margin: 24px 0;
}

.bc2p1-wrap {
    padding: 12px 0;
    font-size: 0.78rem;
    color: var(--col-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.bc2p1-wrap a {
    color: var(--col-text-muted);
}

.bc2p1-wrap a:hover {
    color: var(--col-accent-yellow);
}

.bc2p1-sep {
    opacity: 0.4;
}

.bc2p1-current {
    color: var(--col-text);
}

.kd3n5-card {
    background: var(--col-card);
    border: 1.5px solid var(--col-card-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: border-color var(--transition), transform var(--transition);
}

.kd3n5-card:hover {
    border-color: rgba(255, 193, 7, 0.25);
    transform: translateY(-2px);
}

.pv2q8-block {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--col-card);
    border: 1.5px solid var(--col-card-border);
    border-radius: var(--radius-lg);
    padding: 22px 28px;
}

.pv2q8-block img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.pv2q8-block p {
    font-size: 0.84rem;
    color: var(--col-text-muted);
    line-height: 1.55;
}

.pv2q8-block strong {
    color: var(--col-text-light);
}

.pv2q8-block a {
    color: var(--col-accent-red);
}

.wp-post-id {
    display: none;
}

.entry-meta {
    display: none;
}

.elementor-hidden {
    display: none !important;
}

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

.fade-up {
    animation: fadeInUp 0.5s ease both;
}

.fade-up-d1 {
    animation-delay: 0.1s;
}

.fade-up-d2 {
    animation-delay: 0.2s;
}

.fade-up-d3 {
    animation-delay: 0.3s;
}

@media (max-width: 1024px) {
    .ft1n7-grid {
        grid-template-columns: 1fr 1fr;
    }

    .jp9f5-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

@media (max-width: 820px) {
    .ma3x1-app-grid {
        grid-template-columns: 1fr;
    }

    .jp9f5-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .n3b8m-nav {
        display: none;
    }

    .n3b8m-burger {
        display: flex;
    }

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

    .cn4r9-content {
        padding: 24px 20px;
    }
}

@media (max-width: 600px) {
    .qp7r1-header-inner {
        height: 60px;
    }

    .zf8q3-hero {
        min-height: 420px;
    }

    .zf8q3-hero-content {
        padding: 60px 0;
    }

    .ty2p9-section {
        padding: 40px 0;
    }

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

    .ft1n7-top {
        padding: 32px 0 24px;
    }

    .wg8k3-widget {
        bottom: 12px;
    }

    .pv2q8-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .gm7r2-demo-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 820px) {
    .ty2p9-section#app {
        padding: 36px 0;
    }

    .ty2p9-section#app .xw9k2-wrap {
        padding: 0 14px;
    }

    .ty2p9-section#app .ty2p9-section-head {
        margin-bottom: 20px;
    }

    .ty2p9-section#app .ty2p9-section-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .ty2p9-section#app .ty2p9-section-sub {
        font-size: 0.82rem;
        line-height: 1.55;
        margin-bottom: 0;
    }

    .ty2p9-section#app .ma3x1-app-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ty2p9-section#app .ma3x1-app-info h3 {
        font-size: 1.08rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .ty2p9-section#app .ma3x1-app-info p {
        font-size: 0.84rem;
        line-height: 1.65;
        margin-bottom: 18px;
    }

    .ty2p9-section#app .rv6h4-table-wrap {
        margin-bottom: 18px !important;
        border-radius: 12px;
        overflow: hidden;
    }

    .ty2p9-section#app .rv6h4-table {
        min-width: 100%;
        width: 100%;
        table-layout: fixed;
        display: table;
    }

    .ty2p9-section#app .rv6h4-table tr {
        display: table-row;
    }

    .ty2p9-section#app .rv6h4-table td {
        padding: 10px 12px;
        font-size: 0.78rem;
        line-height: 1.45;
        word-break: break-word;
        white-space: normal;
    }

    .ty2p9-section#app .rv6h4-table td:first-child {
        width: 44%;
        font-size: 0.68rem;
        letter-spacing: 0.3px;
        padding: 10px 10px;
    }

    .ty2p9-section#app .rv6h4-table td:last-child {
        width: 56%;
    }

    .ty2p9-section#app .ma3x1-app-btns {
        gap: 8px;
    }

    .ty2p9-section#app .ma3x1-app-btn {
        padding: 11px 14px;
        border-radius: 10px;
        gap: 10px;
        align-items: center;
        font-size: 0.82rem;
        line-height: 1.35;
    }

    .ty2p9-section#app .ma3x1-app-btn svg {
        width: 24px;
        height: 24px;
    }

    .ty2p9-section#app .ma3x1-app-btn-sub {
        font-size: 0.64rem;
        line-height: 1.2;
        margin-bottom: 2px;
    }

    .ty2p9-section#app p[style*="font-size:0.72rem"] {
        font-size: 0.72rem !important;
        line-height: 1.6 !important;
        margin-top: 12px !important;
    }
}

@media (max-width: 560px) {
    .ty2p9-section#app {
        padding: 30px 0;
    }

    .ty2p9-section#app .xw9k2-wrap {
        padding: 0 10px;
    }

    .ty2p9-section#app .ty2p9-section-head {
        margin-bottom: 16px;
    }

    .ty2p9-section#app .ty2p9-section-title {
        font-size: 1.28rem;
    }

    .ty2p9-section#app .ty2p9-section-title::after {
        width: 38px;
        margin-top: 6px;
    }

    .ty2p9-section#app .ty2p9-section-sub {
        font-size: 0.76rem;
        line-height: 1.5;
    }

    .ty2p9-section#app .ma3x1-app-grid {
        gap: 14px;
    }

    .ty2p9-section#app .ma3x1-app-info h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .ty2p9-section#app .ma3x1-app-info p {
        font-size: 0.78rem;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .ty2p9-section#app .rv6h4-table-wrap {
        border-radius: 10px;
    }

    .ty2p9-section#app .rv6h4-table td {
        padding: 9px 10px;
        font-size: 0.72rem;
        line-height: 1.4;
    }

    .ty2p9-section#app .rv6h4-table td:first-child {
        width: 46%;
        font-size: 0.62rem;
        padding: 9px 8px;
    }

    .ty2p9-section#app .rv6h4-table td:last-child {
        width: 54%;
    }

    .ty2p9-section#app .ma3x1-app-btn {
        padding: 10px 12px;
        gap: 9px;
        font-size: 0.76rem;
        border-radius: 9px;
    }

    .ty2p9-section#app .ma3x1-app-btn svg {
        width: 22px;
        height: 22px;
    }

    .ty2p9-section#app .ma3x1-app-btn-sub {
        font-size: 0.6rem;
    }

    .ty2p9-section#app p[style*="font-size:0.72rem"] {
        font-size: 0.68rem !important;
        line-height: 1.55 !important;
    }
}

@media (max-width: 380px) {
    .ty2p9-section#app .xw9k2-wrap {
        padding: 0 8px;
    }

    .ty2p9-section#app .ty2p9-section-title {
        font-size: 1.15rem;
    }

    .ty2p9-section#app .ty2p9-section-sub {
        font-size: 0.72rem;
    }

    .ty2p9-section#app .rv6h4-table td {
        padding: 8px 8px;
        font-size: 0.68rem;
    }

    .ty2p9-section#app .rv6h4-table td:first-child {
        font-size: 0.58rem;
        width: 47%;
    }

    .ty2p9-section#app .rv6h4-table td:last-child {
        width: 53%;
    }

    .ty2p9-section#app .ma3x1-app-btn {
        padding: 9px 10px;
        font-size: 0.72rem;
    }

    .ty2p9-section#app .ma3x1-app-btn svg {
        width: 20px;
        height: 20px;
    }
}