/* ===================================================
   Leon Casino — Main Styles
   style.css?ver=1.7
   =================================================== */

/* --- Variables --- */
:root {
    --lc-bg: #121212;
    --lc-bg2: #1a1a1a;
    --lc-bg3: #222222;
    --lc-card-bg: #1e1e1e;
    --lc-border: #2e2e2e;
    --lc-gold: #F2C94C;
    --lc-gold-dark: #d4a820;
    --lc-gold-light: #f7dc7e;
    --lc-text: #e8e8e8;
    --lc-text-muted: #999999;
    --lc-text-dark: #111111;
    --lc-white: #ffffff;
    --lc-green: #2ecc71;
    --lc-red: #e74c3c;
    --lc-radius: 12px;
    --lc-radius-sm: 8px;
    --lc-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --lc-shadow-gold: 0 4px 20px rgba(242, 201, 76, 0.25);
    --lc-font: 'Open Sans', Arial, sans-serif;
    --lc-transition: 0.25s ease;
}

/* --- Reset / Base --- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--lc-font);
    background-color: var(--lc-bg);
    color: var(--lc-text);
    font-size: 15px;
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: var(--lc-gold);
    text-decoration: none;
    transition: color var(--lc-transition);
}

a:hover {
    color: var(--lc-gold-light);
}

/* --- Utilities (unused but required for uniqueness) --- */
.u-xq9f-hidden {
    visibility: hidden;
}

.u-br5t-ghost {
    opacity: 0;
    pointer-events: none;
}

.wp-block-cover {
    position: relative;
}

.entry-content-wrap {
    display: block;
}

.elementor-section {
    position: relative;
}

.et_pb_section {
    position: relative;
}

/* ===== BUTTONS ===== */
.btn-lc-gold,
.btn-lc-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: var(--lc-radius-sm);
    font-family: var(--lc-font);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--lc-transition);
    border: 2px solid transparent;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none !important;
}

.btn-lc-gold {
    background: var(--lc-gold);
    color: var(--lc-text-dark) !important;
    border-color: var(--lc-gold);
}

.btn-lc-gold:hover {
    background: var(--lc-gold-light);
    border-color: var(--lc-gold-light);
    color: var(--lc-text-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--lc-shadow-gold);
}

.btn-lc-accent {
    background: var(--lc-gold);
    color: var(--lc-text-dark) !important;
    border-color: var(--lc-gold);
}

.btn-lc-accent:hover {
    background: var(--lc-gold-dark);
    border-color: var(--lc-gold-dark);
    color: var(--lc-text-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--lc-shadow-gold);
}

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

/* ===== HEADER ===== */
.lc-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--lc-bg3);
    border-bottom: 1px solid var(--lc-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.lc-hdr-b73x {
    width: 100%;
}

.lc-hdr-inner {
    height: 64px;
    gap: 12px;
}

.lc-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.lc-nav-link {
    color: var(--lc-text) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 2px;
    position: relative;
    text-decoration: none !important;
    transition: color var(--lc-transition);
}

.lc-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lc-gold);
    transition: width var(--lc-transition);
}

.lc-nav-link:hover {
    color: var(--lc-gold) !important;
}

.lc-nav-link:hover::after {
    width: 100%;
}

/* Online badge */
.lc-online-badge, .lc-online-badge-mobile {
    font-size: 13px;
    color: var(--lc-text-muted);
}

.lc-online-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--lc-green);
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite;
}

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

.lc-online-count {
    color: var(--lc-gold);
    font-weight: 700;
}

/* Burger */
.lc-burger {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    gap: 4px;
}

.lc-burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--lc-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.lc-burger.active .lc-burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.lc-burger.active .lc-burger-line:nth-child(2) {
    opacity: 0;
}

.lc-burger.active .lc-burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile nav */
.lc-mobile-nav {
    background: var(--lc-bg3);
    border-top: 1px solid var(--lc-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 16px;
}

.lc-mobile-nav.open {
    max-height: 400px;
    padding: 16px 16px 20px;
}

.lc-mnav-link {
    display: block;
    color: var(--lc-text) !important;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid var(--lc-border);
    text-decoration: none !important;
    transition: color var(--lc-transition);
}

.lc-mnav-link:last-child {
    border-bottom: none;
}

.lc-mnav-link:hover {
    color: var(--lc-gold) !important;
}

/* ===== HERO ===== */
.lc-hero-section {
    position: relative;
    overflow: hidden;
}

.lc-hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .lc-hero-img {
        height: 300px;
    }
}

.lc-hero-caption {
    bottom: 10% !important;
    text-align: center;
    padding: 0 16px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.lc-hero-title {
    font-size: clamp(22px, 4vw, 42px);
    font-weight: 800;
    color: var(--lc-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
}

.lc-hero-sub {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--lc-white);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
    margin-bottom: 20px;
}

.lc-hero-sub strong {
    color: var(--lc-gold);
}

.lc-btn-hero {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--lc-radius-sm);
}

/* ===== SECTIONS ===== */
.lc-content-container {
    padding-top: 40px;
    padding-bottom: 40px;
}

.lc-section {
    background: var(--lc-card-bg);
    border-radius: var(--lc-radius);
    padding: 36px 28px;
    margin-bottom: 28px;
    border: 1px solid var(--lc-border);
}

.lc-section-label {
    display: inline-block;
    background: rgba(242, 201, 76, .12);
    color: var(--lc-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.lc-section-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: var(--lc-white);
    margin-bottom: 6px;
    line-height: 1.3;
}

.lc-section-title-sm {
    font-size: clamp(18px, 2.5vw, 22px);
}

.lc-section-sub {
    color: var(--lc-text-muted);
    font-size: 14px;
    margin-bottom: 0;
}

.lc-h1-wrap {
    padding: 24px 0;
}

.lc-h1-title {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 800;
    color: var(--lc-white);
    line-height: 1.25;
}

/* ===== ADVANTAGES ===== */
.lc-adv-card {
    background: var(--lc-bg2);
    border: 1px solid var(--lc-border);
    border-radius: var(--lc-radius-sm);
    padding: 24px 20px;
    height: 100%;
    transition: transform var(--lc-transition), border-color var(--lc-transition), box-shadow var(--lc-transition);
}

.lc-adv-card:hover {
    transform: translateY(-4px);
    border-color: var(--lc-gold);
    box-shadow: 0 8px 28px rgba(242, 201, 76, 0.12);
}

.lc-adv-icon {
    margin-bottom: 14px;
}

.lc-adv-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--lc-white);
    margin-bottom: 8px;
}

.lc-adv-desc {
    font-size: 13px;
    color: var(--lc-text-muted);
    line-height: 1.6;
}

/* ===== JACKPOTS ===== */
.lc-jackpots-section {
    background: var(--lc-bg3);
}

.lc-jackpot-card {
    background: var(--lc-bg2);
    border-radius: var(--lc-radius);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--lc-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform var(--lc-transition), box-shadow var(--lc-transition);
}

.lc-jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lc-shadow);
}

.lc-jp-mega {
    border-top: 3px solid #e74c3c;
}

.lc-jp-major {
    border-top: 3px solid #e67e22;
}

.lc-jp-minor {
    border-top: 3px solid var(--lc-gold);
}

.lc-jp-mini {
    border-top: 3px solid #3498db;
}

.lc-jp-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--lc-text-muted);
}

.lc-jp-mega .lc-jp-label {
    color: #e74c3c;
}

.lc-jp-major .lc-jp-label {
    color: #e67e22;
}

.lc-jp-minor .lc-jp-label {
    color: var(--lc-gold);
}

.lc-jp-mini .lc-jp-label {
    color: #3498db;
}

.lc-jp-amount {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: var(--lc-gold);
    font-variant-numeric: tabular-nums;
}

.lc-jp-game {
    font-size: 13px;
    color: var(--lc-text-muted);
}

.lc-jp-btn {
    padding: 8px 20px;
    font-size: 13px;
    border-radius: 6px;
    margin-top: auto;
}

/* ===== APP ===== */
.lc-app-table-wrap {
    border-radius: var(--lc-radius-sm);
    overflow-x: auto;
}

.lc-app-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--lc-bg2);
    border-radius: var(--lc-radius-sm);
    overflow: hidden;
    color: var(--lc-text);
}

.lc-app-table th,
.lc-app-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--lc-border);
    font-size: 14px;
    vertical-align: middle;
}

.lc-app-table tr:last-child th,
.lc-app-table tr:last-child td {
    border-bottom: none;
}

.lc-app-table th {
    width: 38%;
    color: var(--lc-gold);
    font-weight: 600;
    background: rgba(242, 201, 76, 0.05);
    white-space: nowrap;
}

.lc-app-table td {
    color: var(--lc-text);
}

.lc-app-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.lc-app-btn {
    background: var(--lc-bg2);
    border: 1px solid var(--lc-border);
    border-radius: var(--lc-radius-sm);
    color: var(--lc-white) !important;
    padding: 14px 20px;
    min-width: 200px;
    transition: all var(--lc-transition);
    text-decoration: none !important;
}

.lc-app-btn:hover {
    border-color: var(--lc-gold);
    box-shadow: 0 4px 16px rgba(242, 201, 76, 0.2);
    transform: translateX(3px);
}

.lc-app-btn-ios {
    background: #1c1c1e;
}

.lc-app-btn-android {
    background: #0f3d2e;
}

.lc-app-btn-apk {
    background: #1a2540;
}

.lc-app-btn-sub {
    font-size: 11px;
    color: var(--lc-text-muted);
}

.lc-app-btn-name {
    font-size: 16px;
    font-weight: 700;
}

/* ===== VIDEO ===== */
.lc-video-wrap {
    border-radius: var(--lc-radius);
    overflow: hidden;
    background: #000;
}

.lc-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.lc-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--lc-radius);
}

/* ===== CONTENT BLOCK (bare HTML) ===== */
.lc-review-content {
    line-height: 1.75;
}

.lc-review-content h1,
.lc-review-content h2,
.lc-review-content h3,
.lc-review-content h4,
.lc-review-content h5,
.lc-review-content h6 {
    color: var(--lc-white);
    font-weight: 700;
    margin: 24px 0 12px;
    line-height: 1.3;
}

.lc-review-content h2 {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--lc-gold);
}

.lc-review-content h3 {
    font-size: clamp(16px, 2vw, 19px);
}

.lc-review-content p {
    margin-bottom: 14px;
    color: var(--lc-text);
}

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

.lc-review-content a:hover {
    color: var(--lc-gold-light);
}

.lc-review-content ul,
.lc-review-content ol {
    padding-left: 24px;
    margin-bottom: 14px;
    color: var(--lc-text);
}

.lc-review-content li {
    margin-bottom: 6px;
    line-height: 1.65;
}

.lc-review-content ul li::marker {
    color: var(--lc-gold);
}

.lc-review-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
    overflow-x: auto;
    display: block;
}

.lc-review-content table th,
.lc-review-content table td {
    padding: 10px 14px;
    border: 1px solid var(--lc-border);
    text-align: left;
    color: var(--lc-text);
}

.lc-review-content table th {
    background: rgba(242, 201, 76, 0.08);
    color: var(--lc-gold);
    font-weight: 600;
}

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

.lc-review-content blockquote {
    border-left: 3px solid var(--lc-gold);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(242, 201, 76, 0.05);
    border-radius: 0 var(--lc-radius-sm) var(--lc-radius-sm) 0;
    color: var(--lc-text-muted);
    font-style: italic;
}

.lc-review-content strong {
    color: var(--lc-white);
    font-weight: 700;
}

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

.lc-review-content img {
    border-radius: var(--lc-radius-sm);
    margin: 16px auto;
    max-width: 100%;
}

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

/* ===== WHEEL ===== */
.lc-wheel-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
}

.lc-wheel-canvas-wrap {
    position: relative;
    display: inline-block;
}

#xwh-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(242, 201, 76, 0.3);
    max-width: 100%;
}

.lc-wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    color: var(--lc-gold);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    line-height: 1;
}

.lc-btn-wheel {
    padding: 14px 40px;
    font-size: 17px;
    border: none;
    border-radius: var(--lc-radius);
    cursor: pointer;
    transition: all var(--lc-transition);
}

.lc-btn-wheel:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none !important;
}

.lc-wheel-result {
    background: var(--lc-bg2);
    border: 1px solid var(--lc-border);
    border-radius: var(--lc-radius);
    padding: 28px 32px;
    text-align: center;
    min-width: 280px;
    max-width: 380px;
    animation: fadeInUp 0.4s ease;
}

.lc-wheel-result-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.lc-wheel-result-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--lc-white);
    margin-bottom: 16px;
    line-height: 1.4;
}

.lc-wheel-result-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    border-radius: var(--lc-radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none !important;
}

/* ===== REVIEWS ===== */
.lc-review-card {
    background: var(--lc-bg2);
    border: 1px solid var(--lc-border);
    border-radius: var(--lc-radius);
    padding: 20px;
    height: 100%;
    transition: border-color var(--lc-transition), transform var(--lc-transition);
}

.lc-review-card:hover {
    border-color: var(--lc-gold);
    transform: translateY(-3px);
}

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

.lc-review-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--lc-white);
}

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

.lc-review-text {
    font-size: 13px;
    color: var(--lc-text-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

/* Review Form */
.lc-review-form-wrap {
    background: var(--lc-bg2);
    border: 1px solid var(--lc-border);
    border-radius: var(--lc-radius);
    padding: 28px;
    max-width: 560px;
    margin: 0 auto;
}

.lc-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--lc-text);
    margin-bottom: 6px;
}

.lc-required {
    color: var(--lc-gold);
}

.lc-form-input,
.lc-form-textarea {
    width: 100%;
    background: var(--lc-bg3);
    border: 1px solid var(--lc-border);
    border-radius: var(--lc-radius-sm);
    color: var(--lc-text);
    font-family: var(--lc-font);
    font-size: 14px;
    padding: 11px 14px;
    transition: border-color var(--lc-transition), box-shadow var(--lc-transition);
    outline: none;
    resize: vertical;
}

.lc-form-input:focus,
.lc-form-textarea:focus {
    border-color: var(--lc-gold);
    box-shadow: 0 0 0 3px rgba(242, 201, 76, 0.15);
}

.lc-form-input::placeholder,
.lc-form-textarea::placeholder {
    color: var(--lc-text-muted);
}

.lc-form-submit {
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: var(--lc-radius-sm);
    font-family: var(--lc-font);
}

.lc-form-success {
    margin-top: 16px;
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid var(--lc-green);
    border-radius: var(--lc-radius-sm);
    color: var(--lc-green);
    font-size: 14px;
    padding: 12px 16px;
    text-align: center;
}

/* ===== AUTHOR ===== */
.lc-author-section {
    background: var(--lc-bg3);
}

.lc-author-card {
}

.lc-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--lc-gold);
    flex-shrink: 0;
}

.lc-author-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--lc-text-muted);
    margin-bottom: 4px;
}

.lc-author-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--lc-white);
    margin-bottom: 6px;
}

.lc-author-bio {
    font-size: 13px;
    color: var(--lc-text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

.lc-author-link {
    font-size: 13px;
    color: var(--lc-gold);
    font-weight: 600;
    text-decoration: underline !important;
}

.lc-author-link:hover {
    color: var(--lc-gold-light);
}

/* ===== FAQ ===== */
.lc-faq-section {
    background: var(--lc-bg3);
}

.lc-faq-item {
    background: var(--lc-bg2) !important;
    border: 1px solid var(--lc-border) !important;
    border-radius: var(--lc-radius-sm) !important;
    margin-bottom: 8px;
    overflow: hidden;
}

.lc-faq-btn {
    background: var(--lc-bg2) !important;
    color: var(--lc-white) !important;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--lc-font);
    padding: 16px 20px;
    box-shadow: none !important;
}

.lc-faq-btn::after {
    filter: invert(1);
}

.lc-faq-btn:not(.collapsed) {
    color: var(--lc-gold) !important;
}

.lc-faq-body {
    background: var(--lc-bg2);
    color: var(--lc-text-muted);
    font-size: 14px;
    line-height: 1.7;
    padding: 12px 20px 18px;
}

/* ===== FOOTER ===== */
.lc-footer-wrap {
    background: var(--lc-bg3);
    border-top: 1px solid var(--lc-border);
    padding: 48px 0 24px;
}

.lc-footer-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.lc-footer-desc {
    font-size: 13px;
    color: var(--lc-text-muted);
    line-height: 1.6;
    margin: 0;
}

.lc-footer-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--lc-gold);
}

.lc-footer-nav li {
    margin-bottom: 6px;
}

.lc-footer-link {
    font-size: 13px;
    color: var(--lc-text-muted) !important;
    text-decoration: none !important;
    transition: color var(--lc-transition);
}

.lc-footer-link:hover {
    color: var(--lc-gold) !important;
}

.lc-pay-badge {
    background: var(--lc-bg2);
    border: 1px solid var(--lc-border);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--lc-text-muted);
    letter-spacing: .5px;
}

.lc-prov-badge {
    background: rgba(242, 201, 76, 0.06);
    border: 1px solid rgba(242, 201, 76, 0.2);
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 11px;
    color: var(--lc-text-muted);
}

.lc-footer-divider {
    border-color: var(--lc-border);
    margin: 24px 0;
}

.lc-footer-bottom {
}

.lc-legal-text {
    font-size: 11px;
    color: #555;
    line-height: 1.5;
}

.lc-age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--lc-text-muted);
    font-size: 14px;
    font-weight: 800;
    color: var(--lc-text-muted);
}

/* ===== BOTTOM WIDGET ===== */
.lc-widget-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #1b1500;
    border-top: 2px solid var(--lc-gold);
    padding: 12px 16px;
    box-shadow: 0 -4px 24px rgba(242, 201, 76, 0.2);
}

.lc-widget-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

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

.lc-widget-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--lc-gold);
}

.lc-widget-bonus {
    font-size: 12px;
    color: var(--lc-text);
}

.lc-widget-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all var(--lc-transition);
    white-space: nowrap;
}

.lc-widget-btn-login {
    background: transparent;
    border: 1.5px solid var(--lc-gold);
    color: var(--lc-gold) !important;
}

.lc-widget-btn-login:hover {
    background: rgba(242, 201, 76, 0.1);
    color: var(--lc-gold) !important;
}

.lc-widget-btn-reg {
    background: var(--lc-gold);
    border: 1.5px solid var(--lc-gold);
    color: var(--lc-text-dark) !important;
}

.lc-widget-btn-reg:hover {
    background: var(--lc-gold-dark);
    border-color: var(--lc-gold-dark);
    color: var(--lc-text-dark) !important;
    transform: translateY(-1px);
}

.lc-widget-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--lc-text-muted);
    font-size: 18px;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
    transition: color var(--lc-transition);
}

.lc-widget-close:hover {
    color: var(--lc-text);
}

/* Push content above widget */
body {
    padding-bottom: 70px;
}

/* ===== WP unused elements (obfuscation) ===== */
.wp-block-image {
    display: block;
}

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

.yoast-schema-graph {
    display: none;
}

.site-title {
    display: none;
}

.custom-logo-link {
    display: inline-block;
}

.wp-element-caption {
    display: none;
}

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

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

.elementor-widget-wrap {
    display: block;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .lc-section {
        padding: 24px 18px;
    }

    .lc-hero-img {
        height: 360px;
    }
}

@media (max-width: 767px) {
    .lc-section {
        padding: 20px 14px;
        margin-bottom: 16px;
    }

    .lc-hero-img {
        height: 240px;
    }

    .lc-hero-caption {
        bottom: 5% !important;
    }

    .lc-review-form-wrap {
        padding: 20px 14px;
    }

    .lc-widget-bar .d-flex {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .lc-widget-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .lc-hdr-inner {
        height: 56px;
    }

    .lc-logo-img {
        height: 32px;
    }

    .btn-lc-sm {
        padding: 7px 12px;
        font-size: 12px;
    }
}

.cgtysu {
    --cg-bg: #0f1115;
    --cg-surface: #161a22;
    --cg-surface-2: #1c2230;
    --cg-border: #2a3244;
    --cg-text: #e9edf5;
    --cg-muted: #a8b0c0;
    --cg-accent: #f6c453;
    --cg-accent-2: #ffde8a;
    --cg-success: #5fd38d;
    --cg-danger: #ff7676;
    --cg-radius: 20px;
    --cg-radius-sm: 14px;
    --cg-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    max-width: 920px;
    margin: 32px auto;
    padding: 32px;
    color: var(--cg-text);
    background: radial-gradient(circle at top right, rgba(246, 196, 83, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--cg-bg);
    border: 1px solid rgba(246, 196, 83, 0.16);
    border-radius: 28px;
    box-shadow: var(--cg-shadow);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.72;
    overflow: hidden;
}

.cgtysu *,
.cgtysu *::before,
.cgtysu *::after {
    box-sizing: border-box;
}

.cgtysu h1,
.cgtysu h2,
.cgtysu h3,
.cgtysu h4 {
    margin: 0 0 16px;
    line-height: 1.25;
    color: #fff;
}

.cgtysu h1 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: -0.03em;
}

.cgtysu h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    margin-top: 38px;
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(246, 196, 83, 0.12), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(246, 196, 83, 0.18);
    border-radius: var(--cg-radius);
}

.cgtysu h3 {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 750;
    margin-top: 28px;
    color: var(--cg-accent);
}

.cgtysu p {
    margin: 0 0 16px;
    font-size: 16px;
    color: var(--cg-text);
}

.cgtysu strong {
    color: #fff;
    font-weight: 700;
}

.cgtysu a {
    color: var(--cg-accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(246, 196, 83, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.cgtysu a:hover {
    color: var(--cg-accent-2);
    border-color: rgba(255, 222, 138, 0.9);
}

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

.cgtysu ul li,
.cgtysu ol li {
    position: relative;
    margin: 0 0 12px;
    padding: 14px 16px 14px 50px;
    list-style: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--cg-border);
    border-radius: var(--cg-radius-sm);
    color: var(--cg-text);
}

.cgtysu ul li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 19px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cg-accent), var(--cg-accent-2));
    box-shadow: 0 0 0 4px rgba(246, 196, 83, 0.12);
}

.cgtysu ol {
    counter-reset: cg-counter;
}

.cgtysu ol li::before {
    counter-increment: cg-counter;
    content: counter(cg-counter);
    position: absolute;
    left: 14px;
    top: 12px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cg-accent), #ffb84d);
    color: #151515;
    font-size: 13px;
    font-weight: 800;
}

.cgtysu table {
    width: 100%;
    margin: 22px 0;
    border-collapse: collapse;
    overflow: hidden;
    display: block;
    border: 1px solid var(--cg-border);
    border-radius: var(--cg-radius);
    background: var(--cg-surface);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cgtysu thead,
.cgtysu tbody,
.cgtysu tr {
    width: 100%;
}

.cgtysu thead {
    display: table;
    table-layout: fixed;
}

.cgtysu tbody {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.cgtysu tr {
    display: table-row;
}

.cgtysu th,
.cgtysu td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid var(--cg-border);
    vertical-align: top;
    font-size: 15px;
}

.cgtysu th {
    background: linear-gradient(135deg, rgba(246, 196, 83, 0.18), rgba(246, 196, 83, 0.06));
    color: #fff;
    font-weight: 700;
}

.cgtysu td {
    color: var(--cg-text);
    background: rgba(255, 255, 255, 0.01);
}

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

.cgtysu blockquote {
    margin: 24px 0;
    padding: 18px 20px 18px 24px;
    border-left: 4px solid var(--cg-accent);
    border-radius: 0 16px 16px 0;
    background: rgba(246, 196, 83, 0.08);
    color: #fff;
}

.cgtysu hr {
    border: 0;
    height: 1px;
    margin: 32px 0;
    background: linear-gradient(90deg, transparent, rgba(246, 196, 83, 0.45), transparent);
}

.cgtysu > h1 + p {
    font-size: 18px;
    color: #f4f6fb;
}

.cgtysu h2 + p,
.cgtysu h3 + p {
    color: var(--cg-muted);
}

.cgtysu p + table,
.cgtysu p + ul,
.cgtysu p + ol {
    margin-top: 18px;
}

.cgtysu table + p,
.cgtysu ul + p,
.cgtysu ol + p {
    margin-top: 18px;
}

.cgtysu h2:not(:first-child) {
    scroll-margin-top: 90px;
}

.cgtysu p,
.cgtysu li,
.cgtysu td {
    overflow-wrap: anywhere;
}

.cgtysu::-webkit-scrollbar,
.cgtysu table::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}

.cgtysu::-webkit-scrollbar-thumb,
.cgtysu table::-webkit-scrollbar-thumb {
    background: rgba(246, 196, 83, 0.38);
    border-radius: 999px;
}

.cgtysu::-webkit-scrollbar-track,
.cgtysu table::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 991px) {
    .cgtysu {
        margin: 24px 16px;
        padding: 24px;
        border-radius: 24px;
    }

    .cgtysu h2 {
        padding: 16px 18px;
        margin-top: 32px;
    }

    .cgtysu th,
    .cgtysu td {
        padding: 14px 14px;
    }
}

@media (max-width: 767px) {
    .cgtysu {
        margin: 16px 12px;
        padding: 18px 14px;
        border-radius: 20px;
        line-height: 1.64;
    }

    .cgtysu h1 {
        margin-bottom: 18px;
    }

    .cgtysu h2 {
        margin-top: 28px;
        margin-left: -2px;
        margin-right: -2px;
        padding: 14px 14px;
        border-radius: 16px;
    }

    .cgtysu h3 {
        margin-top: 22px;
    }

    .cgtysu p {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .cgtysu ul li,
    .cgtysu ol li {
        padding: 12px 12px 12px 42px;
        margin-bottom: 10px;
        border-radius: 12px;
        font-size: 15px;
    }

    .cgtysu ul li::before {
        left: 16px;
        top: 17px;
        width: 10px;
        height: 10px;
        box-shadow: 0 0 0 3px rgba(246, 196, 83, 0.12);
    }

    .cgtysu ol li::before {
        left: 10px;
        top: 10px;
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .cgtysu table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 16px;
    }

    .cgtysu thead,
    .cgtysu tbody {
        display: table;
        min-width: 640px;
    }

    .cgtysu th,
    .cgtysu td {
        font-size: 14px;
        padding: 12px 12px;
    }
}

@media (max-width: 480px) {
    .cgtysu {
        margin: 12px 8px;
        padding: 16px 12px;
    }

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

    .cgtysu h2 {
        font-size: 21px;
        padding: 12px;
    }

    .cgtysu h3 {
        font-size: 18px;
    }

    .cgtysu > h1 + p {
        font-size: 16px;
    }

    .cgtysu p,
    .cgtysu li,
    .cgtysu td,
    .cgtysu th {
        font-size: 14px;
    }
}

.lc-app-table,
.lc-app-table.table,
.lc-app-table-wrap .table,
.lc-review-content table,
.lc-review-content table th,
.lc-review-content table td {
    background: transparent !important;
}

.lc-app-table th {
    background: rgba(242, 201, 76, 0.08) !important;
}

.lc-app-table td,
.lc-review-content table td {
    background: transparent !important;
}