@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --c-bg: #323234;
    --c-black: #000000;
    --c-teal: #00fbc8;
    --c-red: #ff2e09;
    --c-text: #e8e8ea;
    --c-text-muted: #a0a0a6;
    --c-card: #1e1e20;
    --c-card-alt: #28282b;
    --c-border: #3f3f43;
    --c-teal-dark: #00d4aa;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    --transition: 0.25s ease;
}

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

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

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

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

a {
    color: var(--c-teal);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--c-teal-dark);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    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(-2px);
    filter: brightness(1.1);
}

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

.btn-login {
    background: var(--c-teal);
    color: #000;
}

.btn-signup {
    background: var(--c-red);
    color: #fff;
}

.btn-bonus {
    background: var(--c-red);
    color: #fff;
    box-shadow: 0 0 18px rgba(255, 46, 9, 0.5);
}

.btn-teal {
    background: var(--c-teal);
    color: #000;
}

.btn-teal:hover {
    color: #000;
}

.btn-outline {
    background: transparent;
    color: var(--c-teal);
    border: 2px solid var(--c-teal);
}

.btn-outline:hover {
    background: var(--c-teal);
    color: #000;
}

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

.btn-sm {
    padding: 7px 16px;
    font-size: 13px;
}

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

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

.f7x2-heading {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 8px;
    text-balance: balance;
}

.f7x2-heading span {
    color: var(--c-teal);
}

.f7x2-sub {
    color: var(--c-text-muted);
    font-size: 15px;
    margin-bottom: 32px;
}

.f7x2-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--c-teal), var(--c-red));
    border-radius: 2px;
    margin-bottom: 28px;
}

/* ======= HEADER ======= */
#k9m3-header {
    background: var(--c-black);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.k9m3-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.k9m3-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

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

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

.k9m3-nav a {
    color: var(--c-text);
    font-size: 14px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.k9m3-nav a:hover {
    color: var(--c-teal);
    background: rgba(0, 251, 200, 0.07);
}

.k9m3-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.k9m3-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--c-text-muted);
    background: rgba(0, 251, 200, 0.08);
    border: 1px solid rgba(0, 251, 200, 0.18);
    border-radius: 20px;
    padding: 4px 10px;
    white-space: nowrap;
}

.k9m3-online-dot {
    width: 7px;
    height: 7px;
    background: var(--c-teal);
    border-radius: 50%;
    animation: p1a-pulse 2s infinite;
}

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

.k9m3-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.k9m3-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

.k9m3-mob-menu {
    display: none;
    background: var(--c-black);
    border-top: 1px solid var(--c-border);
    padding: 16px 20px;
    flex-direction: column;
    gap: 6px;
}

.k9m3-mob-menu a {
    color: var(--c-text);
    padding: 10px 0;
    border-bottom: 1px solid var(--c-border);
    font-size: 15px;
}

.k9m3-mob-menu a:last-child {
    border-bottom: none;
}

.k9m3-mob-menu.open {
    display: flex;
}

#r2v5-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--c-black);
}

.r2v5-bg {
    position: absolute;
    inset: 0;
    background-image: url('/uppin-hero.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.38);
    z-index: 0;
}

.r2v5-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(50, 50, 52, 0.6) 100%);
}

.r2v5-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    padding: 60px 0;
}

.r2v5-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 251, 200, 0.12);
    border: 1px solid var(--c-teal);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 13px;
    color: var(--c-teal);
    margin-bottom: 20px;
    font-weight: 700;
}

.r2v5-title {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    text-balance: balance;
}

.r2v5-title em {
    color: var(--c-teal);
    font-style: normal;
}

.r2v5-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.r2v5-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.r2v5-stat {
    text-align: center;
}

.r2v5-stat-num {
    font-size: 26px;
    font-weight: 700;
    color: var(--c-teal);
}

.r2v5-stat-label {
    font-size: 12px;
    color: var(--c-text-muted);
    margin-top: 2px;
}

/* ======= JACKPOTS ======= */
#t3q8-jackpots {
    background: linear-gradient(180deg, #1a1a1c 0%, var(--c-bg) 100%);
}

.t3q8-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.t3q8-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.t3q8-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 251, 200, 0.15);
}

.t3q8-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-teal), #00a8ff);
}

.t3q8-card-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.t3q8-card-name {
    font-size: 13px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.t3q8-card-amount {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--c-teal);
    font-variant-numeric: tabular-nums;
}

.t3q8-card-currency {
    font-size: 14px;
    color: var(--c-text-muted);
    margin-top: 4px;
}

.t3q8-card-tag {
    display: inline-block;
    margin-top: 12px;
    background: rgba(0, 251, 200, 0.1);
    color: var(--c-teal);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

/* ======= MIRRORS ======= */
#w6n1-mirrors {
    background: var(--c-bg);
}

.w6n1-datetime {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--c-text-muted);
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    width: fit-content;
}

.w6n1-datetime-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
}

.w6n1-datetime strong {
    color: var(--c-teal);
}

.w6n1-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -4px;
    border-radius: var(--radius-md);
}

.w6n1-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: var(--c-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--c-border);
}

.w6n1-table thead tr {
    background: #111113;
}

.w6n1-table th {
    padding: 14px 18px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-muted);
    border-bottom: 2px solid var(--c-border);
    white-space: nowrap;
}

.w6n1-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--c-border);
    font-size: 14px;
    color: var(--c-text);
    vertical-align: middle;
}

.w6n1-table tbody tr:last-child td {
    border-bottom: none;
}

.w6n1-table tbody tr:hover {
    background: rgba(0, 251, 200, 0.04);
}

.w6n1-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    color: #22c55e;
}

.w6n1-status::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
}

.w6n1-mirror-link {
    color: var(--c-teal);
    font-weight: 700;
}

/* ======= TOURNAMENTS ======= */
#h5p7-tournaments {
    background: linear-gradient(180deg, var(--c-bg) 0%, #1c1c1e 100%);
}

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

.h5p7-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.h5p7-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.h5p7-card-top {
    padding: 24px;
    background: linear-gradient(135deg, #1a1a1c, #0d0d0e);
    border-bottom: 1px solid var(--c-border);
    position: relative;
}

.h5p7-card-badge {
    display: inline-block;
    background: var(--c-red);
    color: #fff;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.h5p7-card-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.h5p7-card-desc {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.5;
}

.h5p7-card-body {
    padding: 20px 24px;
}

.h5p7-prize {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.h5p7-prize-label {
    font-size: 12px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.h5p7-prize-amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--c-teal);
}

.h5p7-timer-label {
    font-size: 12px;
    color: var(--c-text-muted);
    margin-bottom: 8px;
}

.h5p7-timer {
    display: flex;
    gap: 8px;
}

.h5p7-timer-unit {
    background: #111113;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    text-align: center;
    min-width: 52px;
    flex: 1;
}

.h5p7-timer-num {
    font-size: 20px;
    font-weight: 700;
    color: var(--c-teal);
    font-variant-numeric: tabular-nums;
}

.h5p7-timer-seg {
    font-size: 10px;
    color: var(--c-text-muted);
    text-transform: uppercase;
}

.h5p7-card-footer {
    padding: 0 24px 24px;
}

/* Mobile slider for tournaments */
.h5p7-slider-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.h5p7-slider-wrap .h5p7-grid {
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    flex-wrap: nowrap;
}

/* ======= WHEEL ======= */
#v9l4-wheel {
    background: #1a1a1c;
}

.v9l4-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.v9l4-canvas-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#v9l4-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 251, 200, 0.25), 0 0 80px rgba(0, 0, 0, 0.6);
}

.v9l4-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 28px solid var(--c-teal);
    filter: drop-shadow(0 2px 6px rgba(0, 251, 200, 0.6));
    z-index: 10;
}

.v9l4-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.v9l4-result {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.v9l4-result-win {
    border-color: var(--c-teal);
    background: rgba(0, 251, 200, 0.07);
}

.v9l4-result-text {
    font-size: 15px;
    color: var(--c-text-muted);
}

.v9l4-result-bonus {
    font-size: 22px;
    font-weight: 700;
    color: var(--c-teal);
}

/* ======= REVIEW CONTENT ======= */
#q2b6-review {
    background: var(--c-bg);
}

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

.q2b6-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-teal), #00a8ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
}

.q2b6-author-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--c-text);
}

.q2b6-author-title {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-top: 2px;
}

.q2b6-author a {
    color: var(--c-teal);
    font-size: 13px;
}

.q2b6-content {
    max-width: 860px;
}

.q2b6-content h1, .q2b6-content h2, .q2b6-content h3, .q2b6-content h4 {
    color: var(--c-text);
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.q2b6-content h1 {
    font-size: 28px;
    color: var(--c-teal);
}

.q2b6-content h2 {
    font-size: 22px;
}

.q2b6-content h3 {
    font-size: 18px;
}

.q2b6-content p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--c-text);
}

.q2b6-content ul, .q2b6-content ol {
    margin: 0 0 16px 24px;
}

.q2b6-content li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--c-text);
}

.q2b6-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px auto;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: table;
}

.q2b6-content th, .q2b6-content td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
    font-size: 14px;
}

.q2b6-content th {
    background: #111113;
    color: var(--c-text-muted);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.q2b6-content tr:last-child td {
    border-bottom: none;
}

.q2b6-content a {
    color: var(--c-teal);
}

.q2b6-content strong {
    color: var(--c-text);
    font-weight: 700;
}

.q2b6-content blockquote {
    border-left: 4px solid var(--c-teal);
    background: var(--c-card);
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--c-text-muted);
    font-style: italic;
}

/* ======= REVIEWS ======= */
#u8s3-reviews {
    background: #1c1c1e;
}

.u8s3-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 40px;
}

.u8s3-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 22px;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.u8s3-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.u8s3-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.u8s3-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--c-text);
}

.u8s3-stars {
    display: flex;
    gap: 2px;
    margin-top: 3px;
}

.u8s3-star {
    color: #fbbf24;
}

.u8s3-text {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.u8s3-date {
    font-size: 12px;
    color: #555560;
    margin-top: 10px;
}

.u8s3-form-wrap {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 560px;
    margin-top: 8px;
}

.u8s3-form-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 24px;
}

.u8s3-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.u8s3-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.u8s3-label {
    font-size: 13px;
    color: var(--c-text-muted);
    font-weight: 700;
}

.u8s3-input, .u8s3-textarea {
    background: #111113;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--c-text);
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    transition: border-color var(--transition);
    outline: none;
    width: 100%;
}

.u8s3-input:focus, .u8s3-textarea:focus {
    border-color: var(--c-teal);
}

.u8s3-textarea {
    min-height: 110px;
    resize: vertical;
}

.u8s3-success {
    display: none;
    background: rgba(0, 251, 200, 0.1);
    border: 1px solid var(--c-teal);
    border-radius: var(--radius-sm);
    padding: 14px;
    color: var(--c-teal);
    font-size: 14px;
    text-align: center;
    margin-top: 12px;
}

/* ======= FOOTER ======= */
#e4m2-footer {
    background: var(--c-black);
    padding: 48px 0 24px;
}

.e4m2-top {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 32px;
}

.e4m2-logo img {
    height: 44px;
    margin-bottom: 16px;
}

.e4m2-tagline {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.e4m2-col-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

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

.e4m2-nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.e4m2-nav a:hover {
    color: var(--c-teal);
}

.e4m2-payments {
    margin-bottom: 28px;
}

.e4m2-payments-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

.e4m2-payments-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.e4m2-payment-badge {
    background: var(--c-card-alt);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-text-muted);
}

.e4m2-providers {
    margin-bottom: 28px;
}

.e4m2-providers-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

.e4m2-providers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.e4m2-provider-badge {
    background: var(--c-card-alt);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 12px;
    color: var(--c-text-muted);
}

.e4m2-license {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    color: var(--c-text-muted);
    background: rgba(0, 251, 200, 0.05);
    border: 1px solid rgba(0, 251, 200, 0.12);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
}

.e4m2-license-icon {
    color: var(--c-teal);
    font-size: 18px;
    flex-shrink: 0;
}

.e4m2-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.e4m2-copyright {
    font-size: 12px;
    color: #444450;
}

.e4m2-legal {
    font-size: 12px;
    color: #444450;
    max-width: 560px;
    line-height: 1.5;
}

/* ======= STICKY WIDGET ======= */
#j7k2-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #0d0d0e, #111113);
    border-top: 2px solid var(--c-teal);
    z-index: 999;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.j7k2-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.j7k2-text-main {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.j7k2-text-sub {
    font-size: 12px;
    color: var(--c-teal);
}

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

.j7k2-close {
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    font-size: 20px;
    padding: 4px;
    line-height: 1;
    transition: color var(--transition);
}

.j7k2-close:hover {
    color: var(--c-text);
}

/* ======= FAQ ======= */
#z5c1-faq {
    background: var(--c-bg);
}

.z5c1-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    overflow: hidden;
}

.z5c1-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    color: var(--c-text);
    gap: 12px;
    transition: background var(--transition);
}

.z5c1-question:hover {
    background: rgba(0, 251, 200, 0.04);
}

.z5c1-arrow {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--c-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), border-color var(--transition);
    font-size: 12px;
    color: var(--c-text-muted);
}

.z5c1-item.open .z5c1-arrow {
    transform: rotate(180deg);
    border-color: var(--c-teal);
    color: var(--c-teal);
}

.z5c1-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding var(--transition);
    padding: 0 22px;
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.7;
}

.z5c1-item.open .z5c1-answer {
    max-height: 300px;
    padding: 0 22px 18px;
}

/* ======= SECTION TRANSITIONS ======= */
.fade-section {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======= WP DECOY ======= */
.wp-block-group {
    display: block;
}

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

.elementor-widget-container {
    display: contents;
}

.wp-post-image {
    max-width: 100%;
}

.entry-content {
    display: block;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 960px) {
    .h5p7-grid {
        grid-template-columns: 1fr 1fr;
    }

    .e4m2-top {
        grid-template-columns: 1fr 1fr;
    }

    .v9l4-inner {
        grid-template-columns: 1fr;
    }

    .v9l4-canvas-wrap {
        order: -1;
    }

    #v9l4-canvas {
        max-width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .k9m3-inner {
        grid-template-columns: auto auto 1fr;
    }

    .k9m3-nav {
        display: none;
    }

    .k9m3-burger {
        display: flex;
    }

    .k9m3-right {
        gap: 6px;
    }

    .k9m3-online {
        display: none;
    }

    .btn-login, .btn-signup {
        padding: 8px 14px;
        font-size: 13px;
    }

    .h5p7-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 8px;
    }

    .h5p7-card {
        min-width: 280px;
        scroll-snap-align: start;
    }

    .e4m2-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .e4m2-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .j7k2-text-main {
        font-size: 12px;
    }

    .j7k2-text-sub {
        font-size: 11px;
    }

    .r2v5-stats {
        gap: 20px;
    }
}

@media (max-width: 540px) {
    .mb4j-section {
        padding: 44px 0;
    }

    .t3q8-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .r2v5-btns {
        flex-direction: column;
    }

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

    .u8s3-form-wrap {
        padding: 20px;
    }

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

/* unused styles for uniqueness */
.xr4f-unused-block {
    display: none;
    background: #0a0a0b;
    border: 1px dashed #333;
}

.qb7n-placeholder {
    visibility: hidden;
    pointer-events: none;
}

.zt2m-ghost {
    opacity: 0;
    position: absolute;
    top: -9999px;
}

.wp-caption {
    display: none;
}

.aligncenter {
    margin-left: auto;
    margin-right: auto;
}

.wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

.htresdw {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    padding: 42px;
    background: #1f1f22;
    border: 1px solid rgba(0, 251, 200, .16);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
    overflow: hidden;
}

.htresdw h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
    word-break: break-word;
}

.htresdw h2 {
    font-size: 30px;
    line-height: 1.3;
    color: #00fbc8;
    margin: 40px 0 18px;
    word-break: break-word;
}

.htresdw h3 {
    font-size: 24px;
    line-height: 1.35;
    color: #fff;
    margin: 28px 0 14px;
    word-break: break-word;
}

.htresdw p {
    font-size: 17px;
    line-height: 1.9;
    color: #d9d9de;
    margin-bottom: 18px;
    overflow-wrap: anywhere;
}

.htresdw a {
    color: #00fbc8;
    text-decoration: none;
    word-break: break-word;
    overflow-wrap: anywhere;
    transition: .25s ease;
}

.htresdw a:hover {
    color: #fff;
}

.htresdw ul,
.htresdw ol {
    margin: 18px 0;
    padding-left: 22px;
}

.htresdw li {
    font-size: 16px;
    line-height: 1.75;
    color: #d9d9de;
    margin-bottom: 10px;
    overflow-wrap: anywhere;
}

.htresdw img {
    width: 100%;
    border-radius: 14px;
    margin: 20px 0;
}

.htresdw table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
}

.htresdw table::-webkit-scrollbar {
    height: 6px;
}

.htresdw table::-webkit-scrollbar-thumb {
    background: #00fbc8;
    border-radius: 20px;
}

.htresdw th {
    background: #111214;
    color: #00fbc8;
    padding: 14px 16px;
    font-size: 14px;
    text-align: left;
    white-space: nowrap;
}

.htresdw td {
    padding: 14px 16px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #d9d9de;
    font-size: 15px;
    white-space: nowrap;
}

.htresdw blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    background: rgba(0, 251, 200, .06);
    border-left: 4px solid #00fbc8;
    border-radius: 0 12px 12px 0;
    color: #f1f1f1;
}

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

@media (max-width: 768px) {

    .htresdw {
        margin: 20px auto;
        padding: 22px 16px;
        border-radius: 14px;
    }

    .htresdw h1 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .htresdw h2 {
        font-size: 22px;
        margin: 28px 0 14px;
    }

    .htresdw h3 {
        font-size: 19px;
        margin: 22px 0 12px;
    }

    .htresdw p {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .htresdw li {
        font-size: 15px;
    }

    .htresdw th,
    .htresdw td {
        padding: 11px 12px;
    }

    .htresdw blockquote {
        padding: 14px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .htresdw {
        padding: 18px 14px;
    }

    .htresdw h1 {
        font-size: 24px;
    }

    .htresdw h2 {
        font-size: 20px;
    }

    .htresdw h3 {
        font-size: 17px;
    }

    .htresdw p,
    .htresdw li {
        font-size: 14px;
        line-height: 1.7;
    }

    .htresdw ul,
    .htresdw ol {
        padding-left: 18px;
    }
}