:root {
    --clr-bg: #042522;
    --clr-header: #053029;
    --clr-btn-login: #013D33;
    --clr-btn-reg: #B30AD7;
    --clr-btn-reg-hover: #9a09bb;
    --clr-btn-login-hover: #025a4d;
    --clr-text: #e8f5f2;
    --clr-text-muted: #8ab8b0;
    --clr-accent: #B30AD7;
    --clr-accent2: #1db88a;
    --clr-border: #0d4a3d;
    --clr-card: #062e28;
    --clr-card2: #07372f;
    --clr-gold: #f0c040;
    --clr-red: #e03838;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.6);
    --transition: 0.22s ease;
    --font-main: 'Roboto', 'Open Sans', Arial, sans-serif;
}

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

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

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

a {
    color: var(--clr-accent2);
    text-decoration: none;
    transition: color var(--transition);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--clr-text);
    text-wrap: balance;
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
}

h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 0.75rem;
}

.xb7k2-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.xb7k2-section {
    padding: 64px 0;
}

.xb7k2-section-sm {
    padding: 40px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-login {
    background: var(--clr-btn-login);
    color: #c8f0e8;
    border: 1px solid #1a7a62;
}

.btn-login:hover {
    background: var(--clr-btn-login-hover);
    color: #fff;
}

.btn-reg {
    background: var(--clr-btn-reg);
    color: #fff;
    box-shadow: 0 0 18px rgba(179, 10, 215, 0.4);
}

.btn-reg:hover {
    background: var(--clr-btn-reg-hover);
    box-shadow: 0 0 28px rgba(179, 10, 215, 0.65);
}

.btn-dl {
    background: var(--clr-btn-login);
    color: #c8f0e8;
    border: 1px solid #1a7a62;
    padding: 12px 26px;
    font-size: 1rem;
}

.btn-dl:hover {
    background: #025a4d;
    color: #fff;
}

.btn-apk {
    background: linear-gradient(135deg, #4a0f63 0%, var(--clr-btn-reg) 100%);
    color: #fff;
    padding: 12px 26px;
    font-size: 1rem;
    box-shadow: 0 0 18px rgba(179, 10, 215, 0.4);
}

.btn-apk:hover {
    box-shadow: 0 0 28px rgba(179, 10, 215, 0.65);
}

.btn-hero {
    background: var(--clr-btn-reg);
    color: #fff;
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 0 32px rgba(179, 10, 215, 0.5);
    animation: pulse-reg 2.2s infinite;
}

.btn-hero:hover {
    background: var(--clr-btn-reg-hover);
}

@keyframes pulse-reg {
    0%, 100% {
        box-shadow: 0 0 32px rgba(179, 10, 215, 0.5);
    }
    50% {
        box-shadow: 0 0 52px rgba(179, 10, 215, 0.85);
    }
}

.xb7k2-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--clr-border);
}

.xb7k2-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.xb7k2-logo {
    display: flex;
    align-items: center;
}

.xb7k2-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.xb7k2-nav a {
    color: #b8dbd5;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.xb7k2-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

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

.xb7k2-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--clr-border);
}

.xb7k2-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    animation: blink 1.5s infinite;
    flex-shrink: 0;
}

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

.xb7k2-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    background: transparent;
    border: none;
    transition: background var(--transition);
}

.xb7k2-burger:hover {
    background: rgba(255, 255, 255, 0.07);
}

.xb7k2-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.xb7k2-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 8px;
    background: var(--clr-header);
    padding: 16px 20px;
    border-top: 1px solid var(--clr-border);
    animation: slideDown 0.25s ease;
}

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

.xb7k2-mobile-menu a {
    color: #b8dbd5;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: background var(--transition);
}

.xb7k2-mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.xb7k2-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/banner-casino-sp.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.04);
    transition: transform 12s ease;
}

.xb7k2-hero:hover .xb7k2-hero-bg {
    transform: scale(1);
}

.xb7k2-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 37, 34, 0.88) 40%, rgba(4, 37, 34, 0.55) 100%);
    z-index: 1;
}

.xb7k2-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 640px;
}

.xb7k2-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(179, 10, 215, 0.18);
    border: 1px solid rgba(179, 10, 215, 0.5);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.82rem;
    color: #e4aaff;
    width: fit-content;
}

.xb7k2-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
}

.xb7k2-hero-sub {
    font-size: 1.1rem;
    color: #c0e8e0;
    max-width: 520px;
}

.xb7k2-hero-bonus {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(240, 192, 64, 0.12);
    border: 1px solid rgba(240, 192, 64, 0.4);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    color: var(--clr-gold);
    font-weight: 700;
    font-size: 1.15rem;
    width: fit-content;
    margin-top: 4px;
}

.xb7k2-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.xb7k2-sec-title {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 14px;
    color: var(--clr-text);
}

.xb7k2-sec-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 56px;
    height: 3px;
    background: var(--clr-accent);
    border-radius: 2px;
}

.xb7k2-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.xb7k2-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.xb7k2-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.xb7k2-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 420px;
}

.xb7k2-table th, .xb7k2-table td {
    text-align: left;
    padding: 13px 18px;
    border: 1px solid var(--clr-border);
    font-size: 0.93rem;
}

.xb7k2-table th {
    background: var(--clr-header);
    color: var(--clr-text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

.xb7k2-table tr:hover td {
    background: rgba(179, 10, 215, 0.06);
}

.xb7k2-table td:first-child {
    color: var(--clr-text-muted);
    font-weight: 500;
    white-space: nowrap;
}

.xb7k2-table td:last-child {
    color: var(--clr-text);
}

.xb7k2-winners-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.xb7k2-winner-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    transition: background var(--transition), transform var(--transition);
}

.xb7k2-winner-item:hover {
    background: rgba(179, 10, 215, 0.08);
    transform: translateX(4px);
}

.xb7k2-winner-rank {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    min-width: 28px;
    text-align: center;
}

.xb7k2-winner-rank.gold {
    color: #f0c040;
}

.xb7k2-winner-rank.silver {
    color: #c0c8d0;
}

.xb7k2-winner-rank.bronze {
    color: #cd7f32;
}

.xb7k2-winner-nick {
    flex: 1;
    font-weight: 600;
    font-size: 0.95rem;
}

.xb7k2-winner-game {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    flex: 1;
}

.xb7k2-winner-amount {
    font-weight: 700;
    color: var(--clr-gold);
    font-size: 1rem;
    white-space: nowrap;
}

.xb7k2-app-dl {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.xb7k2-video-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--clr-border);
    aspect-ratio: 16 / 9;
}

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

.xb7k2-wheel-section {
    text-align: center;
}

#xb7k2-wheel-canvas {
    max-width: 360px;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(179, 10, 215, 0.35);
    cursor: pointer;
}

.xb7k2-spin-btn-wrap {
    margin-top: 20px;
}

.xb7k2-win-msg {
    display: none;
    margin-top: 24px;
    padding: 20px 28px;
    background: rgba(29, 184, 138, 0.12);
    border: 1px solid var(--clr-accent2);
    border-radius: var(--radius-md);
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.xb7k2-win-msg.show {
    display: block;
}

.xb7k2-win-msg h3 {
    color: var(--clr-accent2);
    margin-bottom: 10px;
}

.xb7k2-lose-msg {
    display: none;
    margin-top: 24px;
    padding: 16px 24px;
    background: rgba(224, 56, 56, 0.1);
    border: 1px solid rgba(224, 56, 56, 0.4);
    border-radius: var(--radius-md);
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.xb7k2-lose-msg.show {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.xb7k2-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.xb7k2-review-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.xb7k2-review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.xb7k2-review-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

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

.xb7k2-review-name {
    font-weight: 700;
    font-size: 0.97rem;
    color: var(--clr-text);
}

.xb7k2-review-date {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
}

.xb7k2-stars {
    color: var(--clr-gold);
    font-size: 1rem;
    letter-spacing: 2px;
    display: flex;
    gap: 2px;
}

.xb7k2-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--clr-gold);
}

.xb7k2-review-text {
    font-size: 0.9rem;
    color: #c8e8e0;
    line-height: 1.6;
}

.xb7k2-review-form {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 30px;
    max-width: 560px;
}

.xb7k2-review-form h3 {
    margin-bottom: 22px;
}

.xb7k2-form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}

.xb7k2-form-group label {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.xb7k2-form-group input, .xb7k2-form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 11px 16px;
    color: var(--clr-text);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: border-color var(--transition);
    outline: none;
    resize: vertical;
}

.xb7k2-form-group input:focus, .xb7k2-form-group textarea:focus {
    border-color: var(--clr-accent2);
}

.xb7k2-form-success {
    display: none;
    padding: 14px 18px;
    background: rgba(29, 184, 138, 0.1);
    border: 1px solid var(--clr-accent2);
    border-radius: var(--radius-sm);
    color: var(--clr-accent2);
    font-size: 0.92rem;
    margin-top: 16px;
    animation: fadeIn 0.3s ease;
}

.xb7k2-form-success.show {
    display: block;
}

.xb7k2-content-block {
    line-height: 1.8;
}

.xb7k2-content-block h2 {
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    color: var(--clr-text);
}

.xb7k2-content-block h3 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.2rem;
    color: var(--clr-text);
}

.xb7k2-content-block p {
    margin-bottom: 1rem;
    color: #c8e0dc;
}

.xb7k2-content-block ul, .xb7k2-content-block ol {
    margin: 0.75rem 0 1rem 1.5rem;
}

.xb7k2-content-block li {
    margin-bottom: 0.4rem;
    color: #c8e0dc;
}

.xb7k2-content-block a {
    color: var(--clr-accent2);
}

.xb7k2-content-block strong {
    color: var(--clr-text);
}

.xb7k2-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.xb7k2-content-block table th {
    background: var(--clr-header);
    padding: 10px 14px;
    text-align: left;
    font-size: 0.88rem;
    color: var(--clr-text-muted);
}

.xb7k2-content-block table td {
    padding: 10px 14px;
    border-top: 1px solid var(--clr-border);
    color: #c8e0dc;
}

.xb7k2-content-block table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.xb7k2-author-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 22px;
    margin-top: 40px;
}

.xb7k2-author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--clr-accent2);
}

.xb7k2-author-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.xb7k2-author-role {
    font-size: 0.82rem;
    color: var(--clr-accent2);
    margin-bottom: 8px;
}

.xb7k2-author-bio {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

.xb7k2-author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--clr-accent2);
}

.xb7k2-footer {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 48px 0 24px;
    margin-top: 64px;
}

.xb7k2-footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 36px;
}

.xb7k2-footer-logo img {
    height: 40px;
}

.xb7k2-footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

.xb7k2-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.xb7k2-footer-nav a {
    font-size: 0.9rem;
    color: #8ab8b0;
}

.xb7k2-footer-nav a:hover {
    color: var(--clr-text);
}

.xb7k2-payment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.xb7k2-payment-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    font-weight: 600;
}

.xb7k2-provider-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.xb7k2-provider-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.xb7k2-footer-bottom {
    border-top: 1px solid var(--clr-border);
    padding-top: 22px;
    text-align: center;
}

.xb7k2-footer-bottom p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.xb7k2-footer-legal {
    font-size: 0.75rem;
    color: rgba(139, 184, 176, 0.55);
    margin-top: 8px;
}

.xb7k2-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(90deg, #3a006d 0%, #6b0097 50%, var(--clr-btn-reg) 100%);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 30px rgba(179, 10, 215, 0.5);
    border-top: 1px solid rgba(179, 10, 215, 0.6);
}

.xb7k2-widget-text {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
}

.xb7k2-widget-text span {
    color: var(--clr-gold);
}

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

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

.xb7k2-widget a {
    text-decoration: none;
}

.xb7k2-breadcrumb {
    padding: 12px 0;
    font-size: 0.83rem;
    color: var(--clr-text-muted);
}

.xb7k2-breadcrumb a {
    color: var(--clr-text-muted);
}

.xb7k2-breadcrumb a:hover {
    color: var(--clr-accent2);
}

.xb7k2-breadcrumb span {
    color: var(--clr-text);
    margin: 0 6px;
}

.xb7k2-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

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

.xb7k2-faq-question {
    padding: 16px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.97rem;
    color: var(--clr-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none;
}

.xb7k2-faq-question::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--clr-accent2);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.xb7k2-faq-item.open .xb7k2-faq-question::after {
    transform: rotate(45deg);
}

.xb7k2-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 22px;
    font-size: 0.9rem;
    color: #c0dcd8;
    line-height: 1.7;
}

.xb7k2-faq-item.open .xb7k2-faq-answer {
    max-height: 400px;
    padding: 0 22px 18px;
}

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

.d5f2-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.d5f2-placeholder {
    min-height: 1px;
}

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

    .xb7k2-burger {
        display: flex;
    }

    .xb7k2-two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .xb7k2-section {
        padding: 40px 0;
    }

    .xb7k2-hero-content {
        padding: 60px 20px;
    }

    .xb7k2-app-dl {
        flex-direction: column;
    }

    .xb7k2-review-grid {
        grid-template-columns: 1fr;
    }

    .xb7k2-winner-game {
        display: none;
    }

    .xb7k2-widget {
        flex-wrap: wrap;
    }

    .xb7k2-author-box {
        flex-direction: column;
    }

    .xb7k2-footer-top {
        flex-direction: column;
    }
}

.wp-block-group {
    display: block;
}

.entry-content {
    display: block;
}

.elementor-element {
    display: block;
}

.has-text-align-center {
    text-align: center;
}

.wp-caption {
    display: inline-block;
}

body.home .xb7k2-sec-title-home {
    color: var(--clr-text);
}

.page-id-1 {
    background: var(--clr-bg);
}

.hretx {
    max-width: 1100px;
    margin: 40px auto;
    padding: 36px;
    background: linear-gradient(180deg, #07372f 0%, #062e28 100%);
    border: 1px solid #0d4a3d;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .45);
    color: #e8f5f2;
    overflow: hidden;
}

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

.hretx h1,
.hretx h2,
.hretx h3 {
    color: #fff;
    line-height: 1.25;
    overflow-wrap: break-word;
}

.hretx h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 0 0 24px;
}

.hretx h2 {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    margin: 34px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #0d4a3d;
}

.hretx p {
    color: #c8e0dc;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 0 18px;
    overflow-wrap: break-word;
}

.hretx a {
    color: #1db88a;
    text-decoration: underline;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hretx a:hover {
    color: #B30AD7;
}

.hretx ul,
.hretx ol {
    margin: 0 0 18px 22px;
    padding: 0;
}

.hretx li {
    color: #c8e0dc;
    line-height: 1.7;
    margin-bottom: 8px;
    overflow-wrap: break-word;
}

.hretx img,
.hretx video,
.hretx iframe {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.hretx table {
    width: 100%;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
    margin: 22px 0;
    border-radius: 12px;
}

.hretx th,
.hretx td {
    padding: 12px 14px;
    border: 1px solid #0d4a3d;
    color: #c8e0dc;
    vertical-align: top;
}

.hretx th {
    color: #fff;
    background: #053029;
}

.hretx blockquote {
    margin: 22px 0;
    padding: 16px 20px;
    background: rgba(179, 10, 215, .08);
    border-left: 4px solid #B30AD7;
    border-radius: 0 14px 14px 0;
    color: #c8e0dc;
}

.hretx code,
.hretx pre {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

.hretx strong,
.hretx b {
    color: #fff;
}

@media (max-width: 768px) {
    .hretx {
        margin: 22px 12px;
        padding: 22px 16px;
        border-radius: 16px;
    }

    .hretx h1 {
        font-size: 1.55rem;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .hretx h2 {
        font-size: 1.25rem;
        margin: 28px 0 14px;
    }

    .hretx p,
    .hretx li {
        font-size: .94rem;
        line-height: 1.75;
    }

    .hretx table {
        font-size: .85rem;
    }

    .hretx th,
    .hretx td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hretx {
        margin: 16px 10px;
        padding: 18px 14px;
        border-radius: 14px;
    }

    .hretx h1 {
        font-size: 1.35rem;
    }

    .hretx h2 {
        font-size: 1.12rem;
    }

    .hretx p,
    .hretx li {
        font-size: .88rem;
        line-height: 1.7;
    }

    .hretx a {
        word-break: break-all;
    }
}

@media (max-width: 768px) {
    #app {
        padding: 32px 0 !important;
    }

    #app .xb7k2-wrap {
        padding: 0 12px;
    }

    #app .xb7k2-two-col {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    #app .xb7k2-card {
        width: 100%;
        padding: 18px 14px;
        border-radius: 14px;
        overflow: hidden;
    }

    #app .xb7k2-sec-title {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 20px;
    }

    #app .xb7k2-table-wrap {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    #app .xb7k2-table {
        min-width: 100%;
    }

    #app .xb7k2-table td,
    #app .xb7k2-table th {
        padding: 10px;
        font-size: .85rem;
        word-break: break-word;
    }

    #app .xb7k2-app-dl {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    #app .xb7k2-app-dl a {
        width: 100%;
        justify-content: center;
        text-align: center;
        min-height: 48px;
    }

    #app ol {
        padding-left: 18px !important;
    }

    #app li {
        font-size: .9rem;
        line-height: 1.6;
    }

    #app code {
        word-break: break-all;
    }
}

@media (max-width: 480px) {
    #app .xb7k2-card {
        padding: 14px 12px;
    }

    #app .xb7k2-sec-title {
        font-size: 1.2rem;
    }

    #app .xb7k2-table td {
        font-size: .78rem;
        padding: 8px;
    }

    #app h3 {
        font-size: 1rem;
    }

    #app .btn-apk,
    #app .btn-dl {
        font-size: .85rem;
        padding: 12px;
    }
}

#app {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: auto !important;
    height: auto !important;
    overflow: visible !important;
}

#app .j4k9-animate,
#app .j4k9-animate-left,
#app .j4k9-animate-right {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

#app .xb7k2-two-col {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

#app .xb7k2-card {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 900px) {
    #app .xb7k2-two-col {
        grid-template-columns: 1fr;
    }
}