@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --clr-bg: #231336;
    --clr-bg-alt: #1a0d28;
    --clr-header: #000000;
    --clr-primary: #CC297E;
    --clr-primary-hover: #e0338e;
    --clr-secondary: #000000;
    --clr-text: #f0e6f6;
    --clr-text-muted: #b89ec4;
    --clr-text-dark: #1a0d28;
    --clr-card: #2e1a45;
    --clr-card-alt: #3a2057;
    --clr-border: #4a2d6a;
    --clr-gold: #f5c842;
    --clr-success: #2ecc71;
    --clr-danger: #e74c3c;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow: 0 4px 24px rgba(0,0,0,0.45);
    --transition: 0.25s cubic-bezier(.4,0,.2,1);
    --font-main: 'Montserrat', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; background: var(--clr-bg); }

body {
    font-family: var(--font-main);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

p { line-height: 1.7; }

.x7k2m { display: none !important; }
.wp-block-group { display: block; }
.entry-content { display: block; }
.elementor-widget-container { display: block; }
.site-main { display: block; }
.wp-block-column { flex: 1; }

.qp9vz { visibility: hidden; height: 0; overflow: hidden; position: absolute; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.d3kn8 { pointer-events: none; opacity: 0; position: fixed; z-index: -9999; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.03em;
    padding: 0.6rem 1.3rem;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
    background: var(--clr-primary);
    color: #fff;
    box-shadow: 0 2px 16px rgba(204,41,126,0.35);
}
.btn-primary:hover {
    background: var(--clr-primary-hover);
    color: #fff;
    box-shadow: 0 4px 24px rgba(204,41,126,0.55);
    transform: translateY(-2px);
}
.btn-secondary {
    background: var(--clr-secondary);
    color: #fff;
    border: 1.5px solid #333;
}
.btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #555;
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
}
.btn-outline:hover {
    background: var(--clr-primary);
    color: #fff;
    transform: translateY(-2px);
}
.btn-lg { padding: 0.85rem 2.2rem; font-size: 1.05rem; border-radius: var(--radius-md); }
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.8rem; }

/* HEADER */
#r4w-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 20px;
    height: 70px;
    max-width: 1280px;
    margin: 0 auto;
}
.hdr-logo a { display: flex; align-items: center; }
.hdr-logo img { height: 42px; width: auto; object-fit: contain; }
.hdr-nav { display: flex; align-items: center; gap: 6px; flex: 1; justify-content: center; }
.hdr-nav a {
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    letter-spacing: 0.02em;
}
.hdr-nav a:hover { background: rgba(204,41,126,0.15); color: var(--clr-primary); }
.hdr-right { display: flex; align-items: center; gap: 10px; }
.hdr-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 4px 10px;
    white-space: nowrap;
}
.hdr-online-dot {
    width: 8px; height: 8px;
    background: var(--clr-success);
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 0 0 rgba(46,204,113,0.5); }
    50% { box-shadow: 0 0 0 5px rgba(46,204,113,0); }
}
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}
.burger span {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-nav {
    display: none;
    background: #0a0a0a;
    padding: 16px 20px;
    border-top: 1px solid #222;
}
.mob-nav.open { display: flex; flex-direction: column; gap: 6px; }
.mob-nav a {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    border-bottom: 1px solid #1a1a1a;
}
.mob-nav a:last-of-type { border-bottom: none; }
.mob-nav a:hover { background: rgba(204,41,126,0.12); color: var(--clr-primary); }

/* HERO SLIDER */
#r4w-hero { position: relative; overflow: hidden; }
.hero-slider { position: relative; width: 100%; }
.hero-slide {
    display: none;
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    align-items: center;
    justify-content: flex-start;
}
.hero-slide.active { display: flex; animation: fadeIn 0.6s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(35,19,54,0.92) 0%, rgba(35,19,54,0.6) 60%, rgba(35,19,54,0.2) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding: 60px 40px 60px 60px;
}
.hero-badge {
    display: inline-block;
    background: var(--clr-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-content h1 span { color: var(--clr-primary); }
.hero-content p {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-nav {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}
.hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    border: none;
}
.hero-dot.active { background: var(--clr-primary); transform: scale(1.3); }
.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 5;
    pointer-events: none;
}
.hero-arrow {
    pointer-events: all;
    background: rgba(0,0,0,0.45);
    border: 1.5px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition), border-color var(--transition);
}
.hero-arrow:hover { background: var(--clr-primary); border-color: var(--clr-primary); }

/* SECTIONS */
.r4w-section {
    padding: 70px 0;
    position: relative;
}
.r4w-section + .r4w-section {
    border-top: 1px solid rgba(255,255,255,0.05);
}
.section-title {
    text-align: center;
    margin-bottom: 48px;
}
.section-title h2 {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 10px;
}
.section-title h2 span { color: var(--clr-primary); }
.section-title p {
    color: var(--clr-text-muted);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto;
}
.section-label {
    display: inline-block;
    color: var(--clr-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* PROS/CONS */
#r4w-proscons { background: var(--clr-bg-alt); }
.proscons-grid {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.proscons-col {
    flex: 1;
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--clr-border);
}
.proscons-col-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(255,255,255,0.07);
}
.proscons-col-title svg { flex-shrink: 0; }
.pros-title { color: var(--clr-success); }
.cons-title { color: var(--clr-danger); }
.proscons-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.proscons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--clr-text);
    line-height: 1.5;
}
.proscons-list li::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 18px; height: 18px;
    border-radius: 50%;
    margin-top: 2px;
}
.pros-list li::before { background: var(--clr-success); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/contain no-repeat; }
.cons-list li::before { background: var(--clr-danger); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M18.3 5.71a.996.996 0 0 0-1.41 0L12 10.59 7.11 5.7A.996.996 0 1 0 5.7 7.11L10.59 12 5.7 16.89a.996.996 0 1 0 1.41 1.41L12 13.41l4.89 4.89a.996.996 0 1 0 1.41-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M18.3 5.71a.996.996 0 0 0-1.41 0L12 10.59 7.11 5.7A.996.996 0 1 0 5.7 7.11L10.59 12 5.7 16.89a.996.996 0 1 0 1.41 1.41L12 13.41l4.89 4.89a.996.996 0 1 0 1.41-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z'/%3E%3C/svg%3E") center/contain no-repeat; }

/* JACKPOTS */
#r4w-jackpots {
    background: linear-gradient(135deg, #1a0d28 0%, #231336 50%, #2d1040 100%);
    position: relative;
    overflow: hidden;
}
#r4w-jackpots::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204,41,126,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.jackpots-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.jackpot-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    min-width: 200px;
    flex: 1;
    max-width: 260px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.jackpot-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(204,41,126,0.25); }
.jackpot-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-gold));
}
.jackpot-icon { font-size: 2.2rem; margin-bottom: 10px; }
.jackpot-name { font-size: 0.8rem; font-weight: 600; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.jackpot-amount {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--clr-gold);
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 20px rgba(245,200,66,0.4);
}
.jackpot-currency { font-size: 1rem; font-weight: 600; color: var(--clr-text-muted); }
.jackpot-update { font-size: 0.72rem; color: var(--clr-text-muted); margin-top: 8px; }

/* SCREENSHOTS */
#r4w-screenshots { background: var(--clr-bg); }
.screenshots-grid {
    display: flex;
    gap: 20px;
}
.screenshot-item {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.screenshot-item:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 16px 48px rgba(0,0,0,0.6); }
.screenshot-item img { width: 100%; height: 220px; object-fit: cover; display: block; }
.screenshot-caption {
    padding: 12px 16px;
    background: var(--clr-card);
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    font-weight: 600;
}

.screenshots-swiper { display: none; }

/* APP INFO */
#r4w-app { background: var(--clr-bg-alt); }
.app-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.app-table-wrap {
    flex: 1;
    overflow-x: auto;
}
.app-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.app-table th, .app-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border);
    font-size: 0.88rem;
}
.app-table th {
    background: rgba(204,41,126,0.12);
    font-weight: 700;
    color: var(--clr-text);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.app-table td { color: var(--clr-text-muted); }
.app-table td strong { color: var(--clr-text); }
.app-table tr:last-child td, .app-table tr:last-child th { border-bottom: none; }
.app-table tr:hover td { background: rgba(255,255,255,0.03); }
.app-downloads { flex: 1; }
.app-downloads h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 18px; }
.app-dl-btns { display: flex; flex-direction: column; gap: 12px; }
.app-dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    color: var(--clr-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.app-dl-btn:hover {
    background: rgba(204,41,126,0.15);
    border-color: var(--clr-primary);
    color: var(--clr-text);
    transform: translateX(4px);
}
.app-dl-icon {
    width: 40px; height: 40px;
    background: var(--clr-primary);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.app-dl-icon svg { width: 22px; height: 22px; fill: #fff; }
.app-dl-sub { font-size: 0.75rem; color: var(--clr-text-muted); font-weight: 400; display: block; }

/* SLOT MINI-GAME */
#r4w-slotgame { background: var(--clr-bg); }
.slot-wrapper {
    max-width: 540px;
    margin: 0 auto;
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--clr-border);
    box-shadow: 0 8px 48px rgba(0,0,0,0.5);
    text-align: center;
}
.slot-title-inner { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.slot-subtitle { color: var(--clr-text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.slot-reels {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}
.slot-reel {
    width: 96px; height: 96px;
    background: var(--clr-bg);
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.8rem;
    transition: border-color var(--transition);
    overflow: hidden;
    position: relative;
}
.slot-reel.spinning {
    animation: reelSpin 0.5s ease-in-out infinite;
    border-color: var(--clr-primary);
}
@keyframes reelSpin {
    0% { transform: translateY(0); }
    25% { transform: translateY(-8px); }
    50% { transform: translateY(0); }
    75% { transform: translateY(8px); }
    100% { transform: translateY(0); }
}
.slot-btn-wrap { margin-bottom: 20px; }
.slot-spin-btn {
    background: linear-gradient(135deg, var(--clr-primary), #e0338e);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: var(--radius-md);
    cursor: pointer;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 20px rgba(204,41,126,0.4);
}
.slot-spin-btn:hover { transform: scale(1.04); box-shadow: 0 8px 32px rgba(204,41,126,0.55); }
.slot-spin-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.slot-result { min-height: 60px; }
.slot-win {
    background: rgba(46,204,113,0.12);
    border: 1.5px solid var(--clr-success);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.slot-win-text { color: var(--clr-success); font-weight: 700; font-size: 1rem; margin-bottom: 10px; }
.slot-win-amount { color: var(--clr-gold); font-size: 1.5rem; font-weight: 800; margin-bottom: 14px; }
.slot-lose {
    background: rgba(231,76,60,0.1);
    border: 1.5px solid var(--clr-danger);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    color: var(--clr-danger);
    font-weight: 600;
    font-size: 0.9rem;
}
.slot-info { font-size: 0.78rem; color: var(--clr-text-muted); margin-top: 12px; }

/* REVIEW CONTENT */
#r4w-review { background: var(--clr-bg-alt); }
.review-author-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--clr-card);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    border: 1px solid var(--clr-border);
    margin-bottom: 32px;
    box-shadow: var(--shadow);
}
.review-author-avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-primary);
    flex-shrink: 0;
}
.review-author-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 3px; }
.review-author-title { font-size: 0.8rem; color: var(--clr-primary); font-weight: 600; margin-bottom: 4px; }
.review-author-bio { font-size: 0.82rem; color: var(--clr-text-muted); line-height: 1.5; }
.review-author-links { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.review-author-links a { font-size: 0.78rem; color: var(--clr-primary); text-decoration: none; }
.review-author-links a:hover { text-decoration: underline; }

.review-content-block {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow);
    font-size: 0.95rem;
    line-height: 1.8;
}
.review-content-block h2 { font-size: 1.5rem; margin: 28px 0 14px; color: var(--clr-text); }
.review-content-block h3 { font-size: 1.2rem; margin: 22px 0 10px; color: var(--clr-text); }
.review-content-block h4 { font-size: 1.05rem; margin: 18px 0 8px; color: var(--clr-primary); }
.review-content-block h5, .review-content-block h6 { font-size: 0.95rem; margin: 14px 0 6px; color: var(--clr-text-muted); }
.review-content-block p { margin-bottom: 16px; color: var(--clr-text); }
.review-content-block a { color: var(--clr-primary); }
.review-content-block a:hover { text-decoration: underline; }
.review-content-block ul, .review-content-block ol { padding-left: 22px; margin-bottom: 16px; }
.review-content-block ul li, .review-content-block ol li { margin-bottom: 6px; color: var(--clr-text); line-height: 1.7; }
.review-content-block ul { list-style: disc; }
.review-content-block ol { list-style: decimal; }
.review-content-block strong, .review-content-block b { color: #fff; font-weight: 700; }
.review-content-block em, .review-content-block i { color: var(--clr-text-muted); font-style: italic; }
.review-content-block blockquote {
    border-left: 3px solid var(--clr-primary);
    padding: 12px 20px;
    background: rgba(204,41,126,0.07);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
    color: var(--clr-text-muted);
    font-style: italic;
}
.review-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.review-content-block table th, .review-content-block table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    text-align: left;
    font-size: 0.88rem;
}
.review-content-block table th { background: rgba(204,41,126,0.1); font-weight: 700; color: var(--clr-text); }
.review-content-block table td { color: var(--clr-text-muted); }
.review-content-block hr { border: none; border-top: 1px solid var(--clr-border); margin: 24px 0; }
.review-content-block img { border-radius: var(--radius-sm); margin: 16px 0; }
.review-content-block pre {
    background: rgba(0,0,0,0.3);
    border-radius: var(--radius-sm);
    padding: 16px;
    overflow-x: auto;
    font-size: 0.85rem;
    margin: 16px 0;
}
.review-content-block code {
    background: rgba(0,0,0,0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* TESTIMONIALS */
#r4w-reviews { background: var(--clr-bg); }
.reviews-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.review-card {
    flex: 1;
    min-width: 260px;
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.4); }
.review-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), #8b44cc);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
.review-meta-name { font-weight: 700; font-size: 0.92rem; margin-bottom: 2px; }
.review-meta-date { font-size: 0.75rem; color: var(--clr-text-muted); }
.review-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.review-stars svg { width: 16px; height: 16px; fill: var(--clr-gold); }
.review-text { font-size: 0.87rem; color: var(--clr-text-muted); line-height: 1.65; }

.review-form-wrap {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow);
    max-width: 580px;
    margin: 0 auto;
}
.review-form-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--clr-text-muted); }
.form-control {
    background: var(--clr-bg);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--clr-text);
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}
.form-control:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(204,41,126,0.15);
}
.form-control::placeholder { color: rgba(255,255,255,0.25); }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-success {
    display: none;
    background: rgba(46,204,113,0.12);
    border: 1.5px solid var(--clr-success);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    color: var(--clr-success);
    font-weight: 600;
    text-align: center;
    margin-top: 16px;
}
.form-success.show { display: block; animation: popIn 0.4s ease; }

/* FOOTER */
#r4w-footer {
    background: #000;
    padding: 48px 0 24px;
    border-top: 1px solid #1a1a1a;
}
.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 32px;
    border-bottom: 1px solid #1a1a1a;
    margin-bottom: 24px;
}
.footer-brand { flex: 1.5; min-width: 220px; }
.footer-logo img { height: 40px; margin-bottom: 14px; }
.footer-tagline { font-size: 0.85rem; color: #777; line-height: 1.6; margin-bottom: 14px; }
.footer-col { flex: 1; min-width: 150px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #888; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: #666; font-size: 0.85rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--clr-primary); }

.footer-logos-section { margin-bottom: 20px; }
.footer-logos-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #555; margin-bottom: 12px; }
.footer-logos-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.footer-badge {
    background: #111;
    border: 1px solid #222;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.72rem;
    color: #777;
    font-weight: 600;
    transition: color var(--transition), border-color var(--transition);
}
.footer-badge:hover { color: #aaa; border-color: #444; }

.footer-legal {
    text-align: center;
    color: #444;
    font-size: 0.75rem;
    line-height: 1.7;
}
.footer-legal p { margin-bottom: 6px; }
.footer-legal a { color: #555; text-decoration: none; }
.footer-legal a:hover { color: var(--clr-primary); }
.footer-disclaimer {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-top: 16px;
    font-size: 0.72rem;
    color: #444;
    line-height: 1.7;
}

/* BOTTOM WIDGET */
#r4w-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #0d0d0d 0%, #1a0a28 100%);
    border-top: 2px solid var(--clr-primary);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transform: translateY(0);
    transition: transform var(--transition);
    box-shadow: 0 -4px 24px rgba(204,41,126,0.2);
}
.widget-text {
    font-size: 0.88rem;
    color: var(--clr-text);
    font-weight: 600;
    text-align: center;
}
.widget-text span { color: var(--clr-gold); font-weight: 700; }
.widget-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
    line-height: 1;
    transition: color var(--transition);
}
.widget-close:hover { color: #888; }

/* INFO PAGES */
.info-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 0 64px;
}
.info-content h1 { font-size: 2rem; margin-bottom: 24px; color: var(--clr-text); }
.info-content h2 { font-size: 1.3rem; margin: 28px 0 12px; color: var(--clr-text); }
.info-content p { color: var(--clr-text-muted); margin-bottom: 16px; line-height: 1.75; }
.info-content ul, .info-content ol { padding-left: 22px; margin-bottom: 16px; }
.info-content ul li, .info-content ol li { color: var(--clr-text-muted); margin-bottom: 6px; line-height: 1.7; }
.info-content a { color: var(--clr-primary); }
.info-content a:hover { text-decoration: underline; }

/* BREADCRUMBS */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    flex-wrap: wrap;
}
.breadcrumbs a { color: var(--clr-text-muted); transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--clr-primary); }
.breadcrumbs span { color: #555; }

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* UTILITY */
.text-center { text-align: center; }
.text-muted { color: var(--clr-text-muted); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.d-flex { display: flex; }
.gap-2 { gap: 16px; }
.align-center { align-items: center; }

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245,200,66,0.12);
    border: 1px solid rgba(245,200,66,0.3);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.82rem;
    color: var(--clr-gold);
    font-weight: 700;
}

.bonus-highlight {
    background: linear-gradient(135deg, rgba(204,41,126,0.18) 0%, rgba(140,20,90,0.08) 100%);
    border: 1px solid rgba(204,41,126,0.35);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.bonus-highlight-icon { font-size: 2rem; flex-shrink: 0; }
.bonus-highlight-text strong { display: block; font-size: 1.15rem; color: var(--clr-primary); margin-bottom: 3px; }
.bonus-highlight-text span { font-size: 0.85rem; color: var(--clr-text-muted); }

.wp-post-image { border-radius: var(--radius-sm); }
.wp-caption { font-size: 0.8rem; color: var(--clr-text-muted); margin-top: 6px; text-align: center; }

/* FAQ */
#r4w-faq { background: var(--clr-bg-alt); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--clr-primary); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.92rem;
    gap: 12px;
    user-select: none;
}
.faq-question:hover { color: var(--clr-primary); }
.faq-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(204,41,126,0.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
    font-size: 0.9rem;
    color: var(--clr-primary);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--clr-primary); color: #fff; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding var(--transition);
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 20px 18px; }

/* LIGHTBOX */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius-md); }
.lightbox-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .app-grid { flex-direction: column; }
    .proscons-grid { flex-direction: column; }
    .screenshots-grid { gap: 12px; }
}

@media (max-width: 768px) {
    .hdr-nav { display: none; }
    .burger { display: flex; }
    .hdr-online { display: none; }
    .hdr-right .btn { padding: 0.5rem 1rem; font-size: 0.8rem; }

    .hero-content { padding: 40px 24px; }
    .hero-content h1 { font-size: 1.7rem; }

    .r4w-section { padding: 48px 0; }

    .screenshots-grid { display: none; }
    .screenshots-swiper { display: block; }
    .swiper-screenshots { overflow: hidden; }
    .swiper-track { display: flex; transition: transform 0.4s ease; }
    .swiper-slide-item { min-width: 100%; }
    .swiper-nav { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
    .swiper-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); border: none; cursor: pointer; transition: background var(--transition); }
    .swiper-dot.active { background: var(--clr-primary); }

    .jackpots-grid { gap: 12px; }
    .jackpot-card { min-width: 140px; padding: 20px 16px; }
    .jackpot-amount { font-size: 1.3rem; }

    .reviews-grid { flex-direction: column; }
    .review-form-wrap { padding: 24px 20px; }

    .footer-grid { gap: 28px; }
    .footer-brand { flex: 1 1 100%; }

    #r4w-widget { gap: 12px; padding: 10px 44px 10px 16px; }
    .widget-text { font-size: 0.78rem; }

    .slot-reel { width: 76px; height: 76px; font-size: 2.2rem; }
    .slot-wrapper { padding: 24px 18px; }

    .review-content-block { padding: 24px 20px; }
    .review-author-card { flex-direction: column; text-align: center; }

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

    .hero-arrows { display: none; }

    body { padding-bottom: 64px; }
}

@media (max-width: 480px) {
    .hdr-inner { padding: 0 14px; height: 60px; }
    .hdr-logo img { height: 34px; }
    .hdr-right { gap: 6px; }

    .hero-content { padding: 30px 16px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }

    .jackpots-grid { flex-direction: column; align-items: stretch; }
    .jackpot-card { max-width: 100%; }

    .slot-reels { gap: 8px; }
    .slot-reel { width: 64px; height: 64px; font-size: 1.8rem; }

    .proscons-col { padding: 22px 16px; }

    .footer-grid { flex-direction: column; gap: 22px; }
    .footer-col { min-width: 100%; }
}
