/* 1Win Official Site - Main Styles v1.9 */
/* wp-content/themes/1win-theme/style.css */

:root {
    --clr-bg: #1C1C1C;
    --clr-bg2: #141414;
    --clr-header: #000000;
    --clr-accent: #FFDD00;
    --clr-accent-hover: #e6c700;
    --clr-text: #e8e8e8;
    --clr-text-muted: #999;
    --clr-border: #2e2e2e;
    --clr-card: #242424;
    --clr-card2: #1a1a1a;
    --radius: 10px;
    --radius-sm: 6px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-family: 'Open Sans', 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

/* === UNUSED STYLES FOR UNIQUENESS === */
.wp-block-group {
}

.entry-content {
}

.elementor-widget-container {
}

.wp-post-image {
}

.wp-caption {
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

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

.xb3k2 {
}

.m7q9p {
}

.r4z1w {
}

/* === HEADER === */
.x-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--clr-accent);
    box-shadow: 0 2px 20px rgba(255, 221, 0, 0.15);
}

.x-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 64px;
    max-width: 1280px;
    margin: 0 auto;
    gap: 12px;
}

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

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

.x-nav a {
    color: var(--clr-text);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.x-nav a:hover {
    color: var(--clr-accent);
    background: rgba(255, 221, 0, 0.08);
}

.x-online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--clr-text-muted);
    white-space: nowrap;
}

.x-online-dot {
    width: 8px;
    height: 8px;
    background: #00e676;
    border-radius: 50%;
    animation: pulse-green 1.5s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.5);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(0, 230, 118, 0);
    }
}

.x-online-count {
    color: #00e676;
    font-weight: 700;
}

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

.btn-login {
    background: transparent;
    color: var(--clr-accent);
    border: 2px solid var(--clr-accent);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

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

.btn-signup {
    background: var(--clr-accent);
    color: #000;
    border: 2px solid var(--clr-accent);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn-signup:hover {
    background: var(--clr-accent-hover);
    border-color: var(--clr-accent-hover);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 221, 0, 0.4);
}

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

.x-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-accent);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

.x-mobile-nav {
    display: none;
    flex-direction: column;
    background: #0a0a0a;
    border-top: 1px solid var(--clr-border);
    padding: 12px 20px 16px;
    gap: 4px;
}

.x-mobile-nav.is-open {
    display: flex;
}

.x-mobile-nav a {
    color: var(--clr-text);
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--clr-border);
    transition: color var(--transition);
}

.x-mobile-nav a:hover {
    color: var(--clr-accent);
}

.x-mobile-nav a:last-child {
    border-bottom: none;
}

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

.x-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/banner.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.55);
    z-index: 0;
    transition: transform 8s ease;
}

.x-hero:hover .x-hero-bg {
    transform: scale(1.03);
}

.x-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.x-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
    width: 100%;
}

.x-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 221, 0, 0.15);
    border: 1px solid var(--clr-accent);
    color: var(--clr-accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.x-hero h1 {
    font-size: clamp(28px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 14px;
    max-width: 620px;
}

.x-hero h1 span {
    color: var(--clr-accent);
}

.x-hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.6;
}

.x-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--clr-accent);
    color: #000;
    font-size: 15px;
    font-weight: 800;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(255, 221, 0, 0.4);
    display: inline-block;
}

.btn-hero-primary:hover {
    background: var(--clr-accent-hover);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 221, 0, 0.55);
}

.btn-hero-secondary {
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all var(--transition);
    display: inline-block;
}

.btn-hero-secondary:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

.x-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.x-section-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--clr-accent);
    display: inline-block;
}

/* === SECTION SPACING === */
.x-section {
    padding: 48px 0;
}

/* === INFO TABLE === */
.x-info-section {
    padding: 48px 0 32px;
}

.x-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
}

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

.x-info-table tr {
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--transition);
}

.x-info-table tr:hover {
    background: rgba(255, 221, 0, 0.04);
}

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

.x-info-table td {
    padding: 13px 18px;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}

.x-info-table td:first-child {
    font-weight: 600;
    color: var(--clr-text-muted);
    white-space: nowrap;
    width: 220px;
    background: rgba(255, 255, 255, 0.02);
}

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

.x-info-table td .tag {
    display: inline-block;
    background: rgba(255, 221, 0, 0.12);
    color: var(--clr-accent);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin: 2px 3px 2px 0;
}

/* === SCREENSHOTS === */
.x-screenshots-grid {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.x-screenshots-grid img {
    flex: 0 0 calc(33.333% - 11px);
    min-width: 260px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 2px solid var(--clr-border);
    cursor: pointer;
    transition: all var(--transition);
}

.x-screenshots-grid img:hover {
    border-color: var(--clr-accent);
    transform: scale(1.02);
    box-shadow: 0 8px 28px rgba(255, 221, 0, 0.2);
}

/* === WINNERS === */
.x-winners-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.x-winner-item {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition);
}

.x-winner-item:hover {
    border-color: var(--clr-accent);
    background: rgba(255, 221, 0, 0.06);
    transform: translateX(3px);
}

.x-winner-rank {
    font-size: 11px;
    font-weight: 700;
    color: var(--clr-text-muted);
    min-width: 22px;
}

.x-winner-rank.gold {
    color: #ffd700;
}

.x-winner-rank.silver {
    color: #c0c0c0;
}

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

.x-winner-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-accent) 0%, #ff8c00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #000;
    flex-shrink: 0;
}

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

.x-winner-nick {
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.x-winner-amount {
    font-size: 12px;
    color: #00e676;
    font-weight: 700;
}

.x-bonuses-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.x-bonus-card {
    flex: 0 0 calc(33.333% - 11px);
    min-width: 280px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.x-bonus-card:hover {
    transform: translateY(-4px);
    border-color: var(--clr-accent);
    box-shadow: 0 12px 36px rgba(255, 221, 0, 0.15);
}

.x-bonus-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.x-bonus-card-body {
    padding: 18px 16px 20px;
}

.x-bonus-label {
    display: inline-block;
    background: var(--clr-accent);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.x-bonus-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.x-bonus-desc {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.btn-bonus-get {
    display: block;
    width: 100%;
    background: var(--clr-accent);
    color: #000;
    font-size: 13px;
    font-weight: 800;
    padding: 10px;
    border-radius: var(--radius-sm);
    text-align: center;
    text-decoration: none;
    transition: all var(--transition);
}

.btn-bonus-get:hover {
    background: var(--clr-accent-hover);
    color: #000;
    transform: translateY(-1px);
}

.x-slot-section {
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
}

.x-slot-machine {
    display: inline-flex;
    gap: 12px;
    background: #0d0d0d;
    border: 3px solid var(--clr-accent);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px auto;
    box-shadow: 0 0 30px rgba(255, 221, 0, 0.2);
}

.x-slot-reel {
    width: 80px;
    height: 80px;
    background: var(--clr-bg2);
    border: 2px solid #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    overflow: hidden;
    position: relative;
    user-select: none;
}

.x-slot-reel.spinning {
    animation: reel-spin 0.1s linear infinite;
}

@keyframes reel-spin {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-8px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(8px);
    }
    100% {
        transform: translateY(0);
    }
}

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

.btn-spin {
    background: var(--clr-accent);
    color: #000;
    font-size: 16px;
    font-weight: 800;
    padding: 14px 48px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(255, 221, 0, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-spin:hover:not(:disabled) {
    background: var(--clr-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 221, 0, 0.5);
}

.btn-spin:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.x-slot-result {
    font-size: 15px;
    min-height: 24px;
    font-weight: 600;
}

.x-slot-result.win {
    color: #00e676;
    animation: fadeInUp 0.4s ease;
}

.x-slot-result.lose {
    color: #ff5252;
    animation: fadeInUp 0.4s ease;
}

.x-slot-win-box {
    display: none;
    background: rgba(0, 230, 118, 0.1);
    border: 2px solid #00e676;
    border-radius: var(--radius);
    padding: 20px 28px;
    margin-top: 16px;
    animation: fadeInUp 0.5s ease;
}

.x-slot-win-box.show {
    display: block;
}

.x-slot-win-box p {
    color: #00e676;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.btn-claim {
    background: #00e676;
    color: #000;
    font-size: 14px;
    font-weight: 800;
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition);
}

.btn-claim:hover {
    background: #00c853;
    color: #000;
    transform: translateY(-2px);
}

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

/* === REVIEW CONTENT BLOCK === */
.x-review-block {
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 32px 28px;
}

.x-author-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--clr-border);
}

.x-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-accent) 0%, #ff8c00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #000;
    flex-shrink: 0;
}

.x-author-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.x-author-desc {
    font-size: 12px;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin-top: 2px;
}

.x-author-link {
    font-size: 12px;
    color: var(--clr-accent);
    text-decoration: none;
}

.x-author-link:hover {
    text-decoration: underline;
}

/* Review content - bare tags styling */
.x-review-content h2,
.x-review-content h3,
.x-review-content h4 {
    color: #fff;
    font-weight: 700;
    margin: 24px 0 12px;
    line-height: 1.3;
}

.x-review-content h2 {
    font-size: 22px;
    border-left: 3px solid var(--clr-accent);
    padding-left: 12px;
}

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

.x-review-content h4 {
    font-size: 16px;
    color: var(--clr-accent);
}

.x-review-content p {
    color: var(--clr-text);
    margin-bottom: 14px;
    line-height: 1.7;
    font-size: 15px;
}

.x-review-content ul,
.x-review-content ol {
    margin: 12px 0 16px 22px;
    color: var(--clr-text);
}

.x-review-content li {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.6;
}

.x-review-content ul li::marker {
    color: var(--clr-accent);
}

.x-review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    overflow-x: auto;
    display: block;
}

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

.x-review-content table th {
    background: rgba(255, 221, 0, 0.08);
    color: var(--clr-accent);
    font-weight: 700;
}

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

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

.x-review-content blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 12px 18px;
    margin: 18px 0;
    background: rgba(255, 221, 0, 0.05);
    color: var(--clr-text-muted);
    font-style: italic;
}

.x-review-content strong {
    color: #fff;
}

.x-review-content em {
    color: var(--clr-accent);
}

/* === FAQ === */
.x-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.x-faq-item {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}

.x-faq-item.is-open {
    border-color: rgba(255, 221, 0, 0.4);
}

.x-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    user-select: none;
    transition: color var(--transition);
}

.x-faq-q:hover {
    color: var(--clr-accent);
}

.x-faq-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-accent);
    flex-shrink: 0;
    transition: transform var(--transition);
}

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

.x-faq-a {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.x-faq-item.is-open .x-faq-a {
    max-height: 400px;
    padding: 0 18px 16px;
}

/* === FOOTER === */
.x-footer {
    background: var(--clr-header);
    border-top: 2px solid #1e1e1e;
    padding: 48px 0 24px;
    margin-top: 32px;
}

.x-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.x-footer-top {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid #1e1e1e;
}

.x-footer-logo {
    flex: 0 0 auto;
}

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

.x-footer-nav-group {
    flex: 1;
    min-width: 160px;
}

.x-footer-nav-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
}

.x-footer-nav-group a {
    display: block;
    font-size: 13px;
    color: #888;
    padding: 4px 0;
    transition: color var(--transition);
}

.x-footer-nav-group a:hover {
    color: var(--clr-accent);
}

.x-footer-badges-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #1e1e1e;
}

.x-footer-badge-group {
    flex: 1;
    min-width: 200px;
}

.x-footer-badge-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
}

.x-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.x-badge-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #aaa;
    transition: all var(--transition);
}

.x-badge-pill:hover {
    background: rgba(255, 221, 0, 0.1);
    border-color: rgba(255, 221, 0, 0.3);
    color: var(--clr-accent);
}

.x-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
}

.x-copyright {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
}

.x-legal {
    font-size: 11px;
    color: #444;
    max-width: 580px;
    line-height: 1.6;
    text-align: right;
}

/* === STICKY WIDGET === */
.x-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(90deg, #000 0%, #111 100%);
    border-top: 2px solid var(--clr-accent);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.6);
    animation: slideUp 0.5s ease 1s both;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.x-widget-text {
    font-size: 13px;
    color: var(--clr-text);
    line-height: 1.4;
}

.x-widget-text strong {
    color: var(--clr-accent);
}

.x-widget-close {
    background: none;
    border: none;
    color: #555;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    transition: color var(--transition);
    line-height: 1;
}

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

.btn-widget {
    background: var(--clr-accent);
    color: #000;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition);
    flex-shrink: 0;
}

.btn-widget:hover {
    background: var(--clr-accent-hover);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 221, 0, 0.4);
}

/* === LIGHTBOX === */
.x-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.x-lightbox.show {
    display: flex;
}

.x-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
}

.x-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .x-nav {
        display: none;
    }

    .x-online-badge {
        display: none;
    }

    .x-burger {
        display: flex;
    }

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

    .x-hero-content {
        padding: 60px 16px;
    }

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

    .x-bonus-card {
        flex: 0 0 280px;
    }

    .x-footer-top {
        flex-direction: column;
        gap: 24px;
    }

    .x-footer-bottom {
        flex-direction: column;
    }

    .x-legal {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .x-hero {
        min-height: 360px;
    }

    .x-hero h1 {
        font-size: 26px;
    }

    .x-screenshots-grid img {
        min-width: 260px;
        height: 170px;
    }

    .x-winners-list {
        grid-template-columns: 1fr;
    }

    .x-slot-reel {
        width: 66px;
        height: 66px;
        font-size: 34px;
    }

    .x-slot-machine {
        gap: 8px;
        padding: 16px 14px;
    }

    .x-review-block {
        padding: 20px 16px;
    }

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

    .x-widget-text {
        flex: 1 1 100%;
    }
}

.post-3847 {
}

.page-id-9921 {
}

.wp-singular {
}

.logged-in {
}

.home {
}

#wpadminbar {
    display: none;
}

.elementor-section-boxed {
}

.e-con-inner {
}

.eael-tabs-nav {
}

.qx7b3m {
    opacity: 1;
}

.lp9r4j {
    display: none;
}

.mz2k8w {
    pointer-events: none;
}

.lpfo {
    width: 100%;
    max-width: 980px;
    margin: 40px auto 80px;
    padding: 40px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    color: var(--c-text);
    line-height: 1.75;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .28);
}

.lpfo h1,
.lpfo h2,
.lpfo h3,
.lpfo h4,
.lpfo h5,
.lpfo h6 {
    color: var(--c-text);
    line-height: 1.3;
    letter-spacing: -.02em;
}

.lpfo h1 {
    font-size: clamp(30px, 4vw, 44px);
    margin: 0 0 22px;
}

.lpfo h2 {
    font-size: clamp(22px, 3vw, 31px);
    margin: 38px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 221, 0, .18);
    color: var(--c-accent);
}

.lpfo h3 {
    font-size: clamp(18px, 2.2vw, 24px);
    margin: 26px 0 12px;
    color: #fff;
}

.lpfo h4,
.lpfo h5,
.lpfo h6 {
    font-size: 18px;
    margin: 22px 0 12px;
}

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

.lpfo p:last-child {
    margin-bottom: 0;
}

.lpfo a {
    color: var(--c-accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    word-break: break-word;
    transition: color var(--transition), opacity var(--transition);
}

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

.lpfo strong,
.lpfo b {
    color: #fff;
    font-weight: 700;
}

.lpfo em {
    color: var(--c-text-muted);
}

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

.lpfo ul {
    list-style: none;
    padding-left: 0;
}

.lpfo ol {
    padding-left: 22px;
}

.lpfo ul li {
    position: relative;
    padding-left: 22px;
}

.lpfo ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-accent);
    box-shadow: 0 0 0 4px rgba(255, 221, 0, .12);
}

.lpfo ol li::marker {
    color: var(--c-accent);
    font-weight: 700;
}

.lpfo li {
    margin-bottom: 12px;
    color: var(--c-text);
    font-size: 15px;
}

.lpfo li:last-child {
    margin-bottom: 0;
}

.lpfo li p {
    margin-bottom: 0;
}

.lpfo table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.lpfo thead {
    background: #181818;
}

.lpfo th,
.lpfo td {
    padding: 13px 15px;
    border: 1px solid var(--c-border);
    text-align: left;
    vertical-align: top;
    font-size: 14px;
}

.lpfo th {
    color: var(--c-accent);
    font-weight: 700;
    white-space: nowrap;
}

.lpfo td {
    color: var(--c-text);
}

.lpfo tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02);
}

.lpfo blockquote {
    margin: 22px 0;
    padding: 16px 18px;
    border-left: 4px solid var(--c-accent);
    background: rgba(255, 221, 0, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #d9d9d9;
}

.lpfo hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 26px 0;
}

.lpfo img,
.lpfo iframe {
    display: block;
    max-width: 100%;
    border-radius: var(--radius-sm);
}

.lpfo > *:first-child {
    margin-top: 0;
}

.lpfo > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .lpfo {
        margin: 28px auto 64px;
        padding: 30px 24px;
    }

    .lpfo h2 {
        margin-top: 32px;
    }
}

@media (max-width: 600px) {
    .lpfo {
        margin: 20px auto 56px;
        padding: 22px 16px;
        border-radius: 10px;
        line-height: 1.68;
    }

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

    .lpfo h2 {
        font-size: 22px;
        margin: 28px 0 14px;
        padding-bottom: 10px;
    }

    .lpfo h3 {
        font-size: 18px;
        margin: 22px 0 10px;
    }

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

    .lpfo li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .lpfo ol {
        padding-left: 18px;
    }

    .lpfo ul li {
        padding-left: 18px;
    }

    .lpfo table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .lpfo th,
    .lpfo td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .lpfo {
        padding: 18px 14px;
    }

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

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

.lpfo {
    width: 100%;
    max-width: 980px;
    margin: 32px auto 64px;
    padding: 40px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    color: var(--c-text);
    line-height: 1.75;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .28);
}

.lpfo h1,
.lpfo h2,
.lpfo h3,
.lpfo h4,
.lpfo h5,
.lpfo h6 {
    color: var(--c-text);
    line-height: 1.3;
    letter-spacing: -.02em;
}

.lpfo h1 {
    font-size: clamp(28px, 4vw, 44px);
    margin: 0 0 20px;
}

.lpfo h2 {
    font-size: clamp(22px, 3vw, 30px);
    margin: 34px 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 221, 0, .18);
    color: var(--c-accent);
}

.lpfo h3 {
    font-size: clamp(18px, 2.2vw, 24px);
    margin: 24px 0 10px;
    color: #fff;
}

.lpfo p {
    margin: 0 0 15px;
    font-size: 16px;
    color: var(--c-text);
    word-break: normal;
    overflow-wrap: break-word;
}

.lpfo a {
    color: var(--c-accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
}

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

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

.lpfo em {
    color: var(--c-text-muted);
}

.lpfo ul,
.lpfo ol {
    margin: 16px 0 20px;
}

.lpfo ul {
    list-style: none;
    padding-left: 0;
}

.lpfo ol {
    padding-left: 22px;
}

.lpfo ul li {
    position: relative;
    padding-left: 20px;
}

.lpfo ul li::before {
    content: "";
    position: absolute;
    top: .72em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-accent);
    box-shadow: 0 0 0 4px rgba(255, 221, 0, .12);
}

.lpfo ol li::marker {
    color: var(--c-accent);
    font-weight: 700;
}

.lpfo li {
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--c-text);
}

.lpfo li p {
    margin-bottom: 0;
}

.lpfo table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0;
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.lpfo th,
.lpfo td {
    padding: 12px 14px;
    border: 1px solid var(--c-border);
    text-align: left;
    vertical-align: top;
    font-size: 14px;
}

.lpfo th {
    color: var(--c-accent);
    font-weight: 700;
    background: #181818;
}

.lpfo blockquote {
    margin: 20px 0;
    padding: 16px 18px;
    border-left: 4px solid var(--c-accent);
    background: rgba(255, 221, 0, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #d9d9d9;
}

.lpfo img,
.lpfo iframe {
    display: block;
    max-width: 100%;
    border-radius: var(--radius-sm);
}

.lpfo > *:first-child {
    margin-top: 0;
}

.lpfo > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .lpfo {
        margin: 20px auto 48px;
        padding: 24px 18px;
        border-radius: 10px;
        line-height: 1.68;
    }

    .lpfo h1 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .lpfo h2 {
        font-size: 21px;
        margin: 26px 0 12px;
        padding-bottom: 8px;
    }

    .lpfo h3 {
        font-size: 17px;
        margin: 20px 0 10px;
    }

    .lpfo p {
        font-size: 15px;
        margin-bottom: 13px;
    }

    .lpfo li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .lpfo ol {
        padding-left: 18px;
    }

    .lpfo ul li {
        padding-left: 18px;
    }

    .lpfo table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .lpfo th,
    .lpfo td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .lpfo {
        width: calc(100% - 24px);
        margin: 16px auto 40px;
        padding: 18px 14px;
        border-radius: 8px;
        box-shadow: none;
    }

    .lpfo h1 {
        font-size: 23px;
        line-height: 1.28;
    }

    .lpfo h2 {
        font-size: 19px;
        line-height: 1.3;
    }

    .lpfo h3 {
        font-size: 16px;
    }

    .lpfo p {
        font-size: 14px;
        line-height: 1.65;
    }

    .lpfo li {
        font-size: 14px;
        line-height: 1.6;
    }

    .lpfo blockquote {
        padding: 14px 14px 14px 16px;
    }
}