/* Pin Up Casino - style.css?ver=1.7 */
/* Generated layout unique: x4f2a9b1c */

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

:root {
    --clr-bg: #323234;
    --clr-header: #000000;
    --clr-footer: #000000;
    --clr-btn-login: #00fbc8;
    --clr-btn-reg: #ff2e09;
    --clr-text: #f0f0f0;
    --clr-text-muted: #aaaaaa;
    --clr-card-bg: #2a2a2c;
    --clr-card-border: #3e3e40;
    --clr-success: #00fbc8;
    --clr-warning: #ffcc00;
    --clr-error: #ff2e09;
    --clr-plus: #00e6a0;
    --clr-minus: #ff5533;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --sp-1: 8px;
    --sp-2: 16px;
    --sp-3: 24px;
    --sp-4: 32px;
    --sp-5: 40px;
    --sp-6: 48px;
    --transition: 0.25s ease;
}

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

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

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

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

a:hover {
    color: #00e0b0;
}

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

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: var(--sp-2);
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.35rem;
}

p {
    margin-bottom: var(--sp-2);
}

/* ===================== UTILITIES ===================== */
.x4f2a-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--sp-3);
}

.x4f2a-section {
    padding: var(--sp-6) 0;
}

.x4f2a-section-title {
    text-align: center;
    margin-bottom: var(--sp-4);
    font-size: 1.8rem;
    position: relative;
    padding-bottom: var(--sp-2);
}

.x4f2a-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-btn-login), var(--clr-btn-reg));
    margin: var(--sp-1) auto 0;
    border-radius: 2px;
}

/* ===================== BUTTONS ===================== */
.btn-xu9f, .btn-xr3d {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-family: 'PT Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    text-decoration: none !important;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.btn-xu9f {
    background: var(--clr-btn-login);
    color: #000000 !important;
}

.btn-xu9f:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 251, 200, 0.35);
    color: #000000 !important;
}

.btn-xr3d {
    background: var(--clr-btn-reg);
    color: #ffffff !important;
}

.btn-xr3d:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 46, 9, 0.4);
    color: #ffffff !important;
}

/* ===================== HEADER ===================== */
#x9a-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
    padding: 0;
}

.xh-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: var(--sp-2);
    padding: 12px var(--sp-3);
    max-width: 1200px;
    margin: 0 auto;
}

.xh-logo img {
    height: 48px;
    width: auto;
}

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

.xh-nav ul {
    display: flex;
    list-style: none;
    gap: var(--sp-3);
    align-items: center;
}

.xh-nav ul li a {
    color: #cccccc;
    font-size: 0.92rem;
    font-weight: 400;
    transition: color var(--transition);
}

.xh-nav ul li a:hover {
    color: var(--clr-btn-login);
}

.xh-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #aaa;
    white-space: nowrap;
}

.xh-online-dot {
    width: 8px;
    height: 8px;
    background: #00fbc8;
    border-radius: 50%;
    animation: xPulse 1.6s infinite;
    display: inline-block;
}

@keyframes xPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.xh-buttons {
    display: flex;
    gap: var(--sp-1);
    align-items: center;
}

/* Burger */
.xh-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: transparent;
    border: none;
}

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

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

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

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

.xh-mobile-menu {
    display: none;
    flex-direction: column;
    background: #111;
    padding: var(--sp-2) var(--sp-3);
    border-top: 1px solid #222;
}

.xh-mobile-menu.open {
    display: flex;
}

.xh-mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
    margin-bottom: var(--sp-2);
}

.xh-mobile-menu ul li a {
    color: #ccc;
    font-size: 1rem;
    display: block;
    padding: 6px 0;
}

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

.xhero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-pin.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.04);
    animation: xHeroBgZoom 8s ease-in-out infinite alternate;
}

@keyframes xHeroBgZoom {
    from {
        transform: scale(1.0);
    }
    to {
        transform: scale(1.06);
    }
}

.xhero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.78) 40%, rgba(50, 50, 52, 0.45));
    z-index: 1;
}

.xhero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--sp-6) var(--sp-3);
    width: 100%;
}

.xhero-content h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: var(--sp-2);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.xhero-content p {
    font-size: 1.15rem;
    color: #e0e0e0;
    max-width: 540px;
    margin-bottom: var(--sp-3);
}

.xhero-badge {
    display: inline-block;
    background: linear-gradient(90deg, #00fbc8, #00c49a);
    color: #000;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 6px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--sp-3);
    letter-spacing: 0.04em;
}

/* ===================== PROS / CONS ===================== */
#x9c-proscons {
    background: #2b2b2d;
}

.xpc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3);
}

.xpc-col {
    background: var(--clr-card-bg);
    border-radius: var(--radius-md);
    padding: var(--sp-3);
    border: 1px solid var(--clr-card-border);
}

.xpc-col-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: var(--sp-2);
}

.xpc-col--plus .xpc-col-title {
    color: var(--clr-plus);
}

.xpc-col--minus .xpc-col-title {
    color: var(--clr-minus);
}

.xpc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.xpc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.5;
}

.xpc-list li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-top: 2px;
}

.xpc-col--plus .xpc-list li::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%2300e6a0'/%3E%3Cpath d='M5 10l4 4 6-7' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.xpc-col--minus .xpc-list li::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23ff5533'/%3E%3Cpath d='M6 6l8 8M14 6l-8 8' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ===================== JACKPOTS ===================== */
#x9d-jackpots {
    background: var(--clr-bg);
}

.xjp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-3);
}

.xjp-card {
    background: linear-gradient(135deg, #1a1a1c 0%, #2e2e30 100%);
    border-radius: var(--radius-md);
    padding: var(--sp-3) var(--sp-2);
    text-align: center;
    border: 1px solid #444;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.xjp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 251, 200, 0.18);
}

.xjp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00fbc8, #ff2e09);
}

.xjp-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.xjp-name {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.xjp-amount {
    font-size: 1.9rem;
    font-weight: 700;
    color: #ffcc00;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 12px rgba(255, 204, 0, 0.4);
}

/* ===================== TOURNAMENTS ===================== */
#x9e-tournaments {
    background: #282828;
}

.xt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-3);
}

.xt-card {
    background: var(--clr-card-bg);
    border-radius: var(--radius-md);
    padding: var(--sp-3);
    border: 1px solid var(--clr-card-border);
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
    transition: box-shadow var(--transition);
}

.xt-card:hover {
    box-shadow: 0 8px 28px rgba(255, 46, 9, 0.2);
}

.xt-card-tag {
    display: inline-block;
    background: rgba(255, 46, 9, 0.15);
    color: var(--clr-btn-reg);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    width: fit-content;
}

.xt-card h3 {
    font-size: 1.05rem;
    color: #fff;
}

.xt-card p {
    font-size: 0.88rem;
    color: #bbb;
    line-height: 1.5;
    flex: 1;
}

.xt-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--sp-1);
    border-top: 1px solid #3a3a3c;
    gap: var(--sp-1);
}

.xt-timer {
    font-size: 0.82rem;
    color: var(--clr-btn-login);
    display: flex;
    align-items: center;
    gap: 5px;
}

.xt-timer-val {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.xt-prize {
    font-size: 1rem;
    font-weight: 700;
    color: #ffcc00;
}

/* ===================== VIDEO ===================== */
#x9f-video {
    background: var(--clr-bg);
}

.xvid-wrap {
    max-width: 860px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}

.xvid-wrap iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
}

/* ===================== SLOT MINI-GAME ===================== */
#xa0-slot {
    background: #1e1e20;
}

.xslot-container {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(160deg, #141416, #202022);
    border-radius: var(--radius-lg);
    padding: var(--sp-4);
    border: 2px solid #3a3a3c;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-align: center;
}

.xslot-title {
    font-size: 1.2rem;
    color: #ffcc00;
    margin-bottom: var(--sp-3);
    letter-spacing: 0.06em;
}

.xslot-reels {
    display: flex;
    gap: var(--sp-2);
    justify-content: center;
    margin-bottom: var(--sp-3);
}

.xslot-reel {
    width: 90px;
    height: 90px;
    background: #111;
    border-radius: var(--radius-sm);
    border: 2px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    transition: transform 0.1s;
    overflow: hidden;
}

.xslot-reel.spinning {
    animation: xSlotSpin 0.12s linear infinite;
}

@keyframes xSlotSpin {
    0% {
        transform: translateY(-4px);
    }
    50% {
        transform: translateY(4px);
    }
    100% {
        transform: translateY(-4px);
    }
}

.xslot-btn-row {
    margin-bottom: var(--sp-3);
}

.xslot-result {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-1);
}

.xslot-win-text {
    font-size: 1.1rem;
    color: #00fbc8;
    font-weight: 700;
}

.xslot-lose-text {
    font-size: 1rem;
    color: #ff5533;
}

.xslot-balance {
    margin-top: var(--sp-1);
    font-size: 0.85rem;
    color: #888;
}

/* ===================== REVIEWS ===================== */
#xa1-reviews {
    background: #2b2b2d;
}

.xrev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--sp-3);
    margin-bottom: var(--sp-5);
}

.xrev-card {
    background: var(--clr-card-bg);
    border-radius: var(--radius-md);
    padding: var(--sp-3);
    border: 1px solid var(--clr-card-border);
    transition: transform var(--transition);
}

.xrev-card:hover {
    transform: translateY(-3px);
}

.xrev-card-top {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    margin-bottom: var(--sp-2);
}

.xrev-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #444;
    flex-shrink: 0;
}

.xrev-name {
    font-weight: 700;
    font-size: 0.97rem;
    color: #fff;
}

.xrev-date {
    font-size: 0.78rem;
    color: #777;
}

.xrev-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.xrev-stars svg {
    width: 16px;
    height: 16px;
    fill: #ffcc00;
}

.xrev-text {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

/* Review Form */
.xrev-form-wrap {
    max-width: 580px;
    margin: 0 auto;
    background: var(--clr-card-bg);
    border-radius: var(--radius-md);
    padding: var(--sp-4);
    border: 1px solid var(--clr-card-border);
}

.xrev-form-title {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: var(--sp-3);
    text-align: center;
}

.xrev-form {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.xrev-form label {
    font-size: 0.88rem;
    color: #aaa;
    margin-bottom: 4px;
    display: block;
}

.xrev-form input,
.xrev-form textarea {
    width: 100%;
    background: #1a1a1c;
    border: 1px solid #444;
    border-radius: var(--radius-sm);
    color: #f0f0f0;
    font-family: 'PT Sans', sans-serif;
    font-size: 0.95rem;
    padding: 10px 14px;
    transition: border-color var(--transition);
    outline: none;
}

.xrev-form input:focus,
.xrev-form textarea:focus {
    border-color: var(--clr-btn-login);
}

.xrev-form textarea {
    min-height: 100px;
    resize: vertical;
}

.xrev-form-success {
    display: none;
    text-align: center;
    color: var(--clr-btn-login);
    padding: var(--sp-3);
    font-size: 1rem;
    border: 1px solid rgba(0, 251, 200, 0.3);
    border-radius: var(--radius-sm);
    background: rgba(0, 251, 200, 0.06);
}

/* ===================== CONTENT BLOCK ===================== */
#xa2-content {
    background: #2a2a2c;
}

.xcontent-inner {
    max-width: 900px;
    margin: 0 auto;
}

.xcontent-inner h1, .xcontent-inner h2, .xcontent-inner h3,
.xcontent-inner h4, .xcontent-inner h5, .xcontent-inner h6 {
    margin-top: var(--sp-4);
    margin-bottom: var(--sp-2);
    color: #fff;
}

.xcontent-inner p {
    color: #ccc;
    margin-bottom: var(--sp-2);
    line-height: 1.7;
}

.xcontent-inner a {
    color: var(--clr-btn-login);
}

.xcontent-inner ul, .xcontent-inner ol {
    margin: var(--sp-2) 0 var(--sp-2) var(--sp-3);
    color: #ccc;
}

.xcontent-inner li {
    margin-bottom: 6px;
    line-height: 1.6;
}

.xcontent-inner table {
    width: auto;
    margin: var(--sp-3) auto;
    border-collapse: collapse;
    font-size: 0.93rem;
}

.xcontent-inner table th,
.xcontent-inner table td {
    border: 1px solid #444;
    padding: 10px 16px;
    text-align: left;
    color: #ddd;
}

.xcontent-inner table th {
    background: #1e1e20;
    color: #fff;
    font-weight: 700;
}

.xcontent-inner table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

.xcontent-inner blockquote {
    border-left: 3px solid var(--clr-btn-login);
    padding: var(--sp-2) var(--sp-3);
    background: rgba(0, 251, 200, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: var(--sp-3) 0;
    color: #ccc;
    font-style: italic;
}

.xcontent-inner img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: var(--sp-2) 0;
}

.xcontent-inner hr {
    border: none;
    border-top: 1px solid #3a3a3c;
    margin: var(--sp-4) 0;
}

.xcontent-inner code {
    background: #111;
    color: #00fbc8;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.88em;
}

.xcontent-inner pre {
    background: #111;
    padding: var(--sp-2);
    border-radius: var(--radius-sm);
    overflow-x: auto;
}

/* Author block */
.xcontent-author {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    background: #1e1e20;
    border-radius: var(--radius-md);
    padding: var(--sp-3);
    margin-bottom: var(--sp-4);
    border: 1px solid #3a3a3c;
}

.xcontent-author-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--clr-btn-login);
}

.xcontent-author-name {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

.xcontent-author-role {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 4px;
}

.xcontent-author-bio {
    font-size: 0.85rem;
    color: #bbb;
    line-height: 1.5;
}

.xcontent-author-link {
    font-size: 0.82rem;
    color: var(--clr-btn-login);
}

/* ===================== FOOTER ===================== */
#xaf-footer {
    background: var(--clr-footer);
    padding: var(--sp-5) 0 var(--sp-3);
    border-top: 1px solid #222;
}

.xft-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: var(--sp-4);
    margin-bottom: var(--sp-4);
}

.xft-logo img {
    height: 44px;
}

.xft-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-1) var(--sp-3);
}

.xft-nav ul li a {
    color: #888;
    font-size: 0.88rem;
}

.xft-nav ul li a:hover {
    color: #ccc;
}

.xft-payments, .xft-providers {
    margin-bottom: var(--sp-3);
}

.xft-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.07em;
    margin-bottom: 8px;
}

.xft-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.xft-badge {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.78rem;
    color: #999;
    white-space: nowrap;
}

.xft-divider {
    border: none;
    border-top: 1px solid #222;
    margin: var(--sp-3) 0;
}

.xft-legal {
    font-size: 0.78rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
}

.xft-legal a {
    color: #666;
}

/* ===================== STICKY WIDGET ===================== */
#xa3-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: linear-gradient(90deg, #0d0d0d 0%, #1a1a1a 100%);
    border-top: 2px solid #ff2e09;
    padding: 10px var(--sp-3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-3);
}

.xwidget-text {
    font-size: 0.92rem;
    color: #f0f0f0;
    font-weight: 400;
}

.xwidget-text strong {
    color: #ffcc00;
}

.xwidget-close {
    position: absolute;
    right: var(--sp-2);
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

.xwidget-close:hover {
    color: #ccc;
}

/* ===================== SCROLL TOP ===================== */
#x-scroll-top {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 251, 200, 0.15);
    border: 1px solid rgba(0, 251, 200, 0.4);
    border-radius: 50%;
    color: #00fbc8;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 9997;
}

#x-scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

#x-scroll-top:hover {
    background: rgba(0, 251, 200, 0.25);
}

/* ===================== MISC WP-LIKE ELEMENTS (unused) ===================== */
.wp-block-group {
}

.wp-block-separator {
    display: none;
}

.entry-content {
}

.post-meta {
}

.wp-caption-text {
}

.widget-area {
}

.sidebar-widget {
}

.elementor-widget-container {
}

.et_pb_text {
}

.yoast-seo-analysis {
    display: none !important;
}

.wpseo-metabox-analysis {
    display: none !important;
}

.wp-embed-responsive {
    display: none !important;
}

.elementor-invisible {
    visibility: hidden !important;
}

/* ===================== BREADCRUMBS ===================== */
.xbread {
    background: #1e1e1e;
    border-bottom: 1px solid #2a2a2a;
    padding: 8px 0;
}

.xbread-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--sp-3);
    list-style: none;
    display: flex;
    gap: 6px;
    align-items: center;
    font-size: 0.82rem;
    color: #666;
}

.xbread-list li::after {
    content: '/';
    margin-left: 6px;
}

.xbread-list li:last-child::after {
    display: none;
}

.xbread-list a {
    color: #888;
}

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

.xfaq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.xfaq-item {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.xfaq-q {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    padding: var(--sp-2) var(--sp-3);
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-2);
    transition: background var(--transition);
}

.xfaq-q:hover {
    background: rgba(255, 255, 255, 0.04);
}

.xfaq-q-icon {
    flex-shrink: 0;
    color: var(--clr-btn-login);
    font-size: 1.1rem;
    transition: transform var(--transition);
}

.xfaq-item.open .xfaq-q-icon {
    transform: rotate(45deg);
}

.xfaq-a {
    display: none;
    padding: 0 var(--sp-3) var(--sp-2);
    font-size: 0.93rem;
    color: #bbb;
    line-height: 1.7;
}

.xfaq-item.open .xfaq-a {
    display: block;
}

/* ===================== SECTION DIVIDER ===================== */
.xsec-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 251, 200, 0.3), transparent);
    margin: 0;
}

/* ===================== ANIMATIONS ===================== */
@keyframes xFadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.xfade-up {
    animation: xFadeInUp 0.6s ease both;
}

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

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

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

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
    .xjp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .xh-nav {
        display: none;
    }

    .xh-burger {
        display: flex;
    }

    .xh-online {
        display: none;
    }

    .xhero-content h1 {
        font-size: 2rem;
    }
}

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

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

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

    .xhero-content h1 {
        font-size: 1.6rem;
    }

    .xhero-content p {
        font-size: 1rem;
    }

    #xa3-widget {
        flex-direction: column;
        gap: 8px;
        padding: 10px var(--sp-2);
        text-align: center;
    }

    .xwidget-text {
        font-size: 0.82rem;
    }

    .xcontent-author {
        flex-direction: column;
        text-align: center;
    }

    .xslot-reel {
        width: 72px;
        height: 72px;
        font-size: 2.2rem;
    }

    .xft-grid {
        gap: var(--sp-2);
    }
}

@media (max-width: 480px) {
    .xhero-content {
        padding: var(--sp-4) var(--sp-2);
    }

    .x4f2a-section {
        padding: var(--sp-4) 0;
    }

    .xslot-reels {
        gap: 10px;
    }

    .xslot-reel {
        width: 60px;
        height: 60px;
        font-size: 1.9rem;
    }
}

.swiper {
    width: 100%;
    padding-bottom: var(--sp-4) !important;
}

.swiper-pagination-bullet {
    background: #666 !important;
}

.swiper-pagination-bullet-active {
    background: var(--clr-btn-login) !important;
}

.zdasa {
    max-width: 920px;
    margin: 48px auto;
    padding: 36px;
    background: linear-gradient(145deg, var(--clr-card-bg), #1f1f21);
    border: 1.5px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .6);
}

.zdasa h1 {
    font-size: clamp(28px, 5vw, 42px);
    color: var(--clr-btn-login);
    margin-bottom: 18px;
    line-height: 1.2;
}

.zdasa h2 {
    font-size: clamp(22px, 4vw, 30px);
    margin: 34px 0 14px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.zdasa h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-btn-login), var(--clr-btn-reg));
    border-radius: 2px;
}

.zdasa p {
    font-size: 16px;
    color: var(--clr-text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.zdasa strong {
    color: #fff;
}

.zdasa a {
    color: var(--clr-btn-login);
    word-break: break-word;
}

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

.zdasa ul,
.zdasa ol {
    margin: 0 0 16px 22px;
    color: var(--clr-text-muted);
}

.zdasa li {
    margin-bottom: 6px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .zdasa {
        margin: 28px 16px;
        padding: 24px 18px;
        border-radius: var(--radius-sm);
    }

    .zdasa p {
        font-size: 15px;
        line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .zdasa {
        margin: 20px 12px;
        padding: 20px 14px;
    }

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

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