/* Pokerdom Casino — style.css?ver=1.7 */
/* ================================================================ */
/* RESET & BASE */
/* ================================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --pd-black: #000000;
    --pd-header: #000000;
    --pd-green: #2ecc71;
    --pd-green-h: #27ae60;
    --pd-gray: #999999;
    --pd-gray-h: #777777;
    --pd-bg: #f5f5f5;
    --pd-card: #ffffff;
    --pd-text: #1a1a1a;
    --pd-light: #ffffff;
    --pd-border: #e0e0e0;
    --pd-gold: #f0c040;
    --pd-radius: 8px;
    --pd-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --pd-trans: 0.25s ease;
}

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

body {
    font-family: Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background: var(--pd-bg);
    color: var(--pd-text);
    overflow-x: hidden;
}

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

a {
    color: var(--pd-green);
    text-decoration: none;
    transition: color var(--pd-trans);
}

a:hover {
    color: var(--pd-green-h);
}

ul, ol {
    list-style: none;
}

/* ================================================================ */
/* TYPOGRAPHY */
/* ================================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--pd-text);
}

h1 {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: .75rem;
}

h3 {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    margin-bottom: .5rem;
}

p {
    margin-bottom: 1rem;
}

/* ================================================================ */
/* LAYOUT */
/* ================================================================ */
.pd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

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

.pd-section-title {
    text-align: center;
    margin-bottom: 32px;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    position: relative;
}

.pd-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--pd-green);
    margin: 10px auto 0;
    border-radius: 2px;
}

.pd-card {
    background: var(--pd-card);
    border-radius: var(--pd-radius);
    box-shadow: var(--pd-shadow);
    padding: 24px;
    border: 1px solid var(--pd-border);
}

/* ================================================================ */
/* BUTTONS */
/* ================================================================ */
.pd-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 6px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all var(--pd-trans);
    text-align: center;
    line-height: 1;
    white-space: nowrap;
}

.pd-btn-green {
    background: var(--pd-green);
    color: #fff;
}

.pd-btn-green:hover {
    background: var(--pd-green-h);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, .35);
}

.pd-btn-gray {
    background: var(--pd-gray);
    color: #fff;
}

.pd-btn-gray:hover {
    background: var(--pd-gray-h);
    color: #fff;
}

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

.pd-btn-outline:hover {
    background: var(--pd-green);
    color: #fff;
}

.pd-btn-ghost {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .3);
}

.pd-btn-ghost:hover {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

.pd-btn-lg {
    padding: 13px 30px;
    font-size: 15px;
    border-radius: 8px;
}

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

.pd-btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ================================================================ */
/* HEADER */
/* ================================================================ */
.pd-header {
    background: var(--pd-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

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

.pd-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.pd-logo img {
    height: 40px;
    width: auto;
}

.pd-logo-text {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.5px;
}

.pd-logo-text span {
    color: var(--pd-green);
}

.pd-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.pd-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 4px;
    transition: all var(--pd-trans);
    white-space: nowrap;
}

.pd-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

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

.pd-online {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.pd-online-dot {
    width: 8px;
    height: 8px;
    background: var(--pd-green);
    border-radius: 50%;
    animation: pd-pulse 2s infinite;
}

@keyframes pd-pulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .4
    }
}

/* Burger */
.pd-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1010;
}

.pd-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--pd-trans);
}

.pd-burger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.pd-burger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.pd-mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 998;
    padding: 20px 16px;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    border-top: 1px solid #222;
}

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

.pd-mobile-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    padding: 12px 16px;
    border-radius: 6px;
    transition: all var(--pd-trans);
}

.pd-mobile-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.pd-mobile-nav .pd-mobile-auth {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding: 0 4px;
}

.pd-mobile-nav .pd-btn {
    flex: 1;
    text-align: center;
}

/* ================================================================ */
/* HERO SLIDER */
/* ================================================================ */
.pd-hero {
    position: relative;
    overflow: hidden;
    background: #111;
    min-height: 420px;
}

.pd-hero-slide {
    display: none;
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: center;
}

.pd-hero-slide.is-active {
    display: flex;
    align-items: center;
}

.pd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .80) 0%, rgba(0, 0, 0, .35) 55%, transparent 100%);
}

.pd-hero-body {
    position: relative;
    z-index: 2;
    padding: 48px 48px 48px 48px;
    max-width: 600px;
    color: #fff;
}

.pd-hero-badge {
    display: inline-block;
    background: var(--pd-green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pd-hero-title {
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.pd-hero-sub {
    font-size: clamp(.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, .85);
    margin-bottom: 24px;
    line-height: 1.6;
}

.pd-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pd-hero-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.pd-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    border: none;
    transition: all var(--pd-trans);
    padding: 0;
}

.pd-hero-dot.is-active {
    width: 28px;
    background: var(--pd-green);
}

.pd-hero-arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, .4);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--pd-trans);
}

.pd-hero-arr:hover {
    background: var(--pd-green);
}

.pd-hero-prev {
    left: 16px;
}

.pd-hero-next {
    right: 16px;
}

/* ================================================================ */
/* JACKPOTS */
/* ================================================================ */
.pd-jackpots {
    background: #111;
    padding: 28px 0;
}

.pd-jackpots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pd-jackpot-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid #333;
    border-radius: var(--pd-radius);
    padding: 20px 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--pd-trans);
}

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

.pd-jackpot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(46, 204, 113, .07), transparent 70%);
}

.pd-jackpot-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.pd-jackpot-name {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
}

.pd-jackpot-amount {
    font-size: clamp(1.1rem, 3vw, 1.9rem);
    font-weight: 800;
    color: var(--pd-gold);
    text-shadow: 0 0 20px rgba(240, 192, 64, .5);
    font-variant-numeric: tabular-nums;
}

/* ================================================================ */
/* APP INFO */
/* ================================================================ */
.pd-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.pd-table-wrap {
    overflow-x: auto;
}

.pd-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 320px;
}

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

.pd-table th {
    background: #f0f0f0;
    font-weight: 600;
}

.pd-table tr:nth-child(even) td {
    background: #fafafa;
}

.pd-dl-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.pd-dl-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all var(--pd-trans);
}

.pd-dl-btn:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}

.pd-dl-btn-icon {
    font-size: 20px;
}

.pd-dl-btn-sub {
    font-size: 10px;
    color: #888;
    line-height: 1;
    display: block;
}

.pd-dl-btn-label {
    display: block;
}

/* ================================================================ */
/* BONUSES */
/* ================================================================ */
.pd-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pd-bonus-card {
    background: var(--pd-card);
    border-radius: var(--pd-radius);
    border: 1px solid var(--pd-border);
    overflow: hidden;
    box-shadow: var(--pd-shadow);
    display: flex;
    flex-direction: column;
    transition: transform var(--pd-trans), box-shadow var(--pd-trans);
}

.pd-bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.pd-bonus-head {
    padding: 20px 20px 0;
}

.pd-bonus-tag {
    display: inline-block;
    background: var(--pd-green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.pd-bonus-amount {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--pd-text);
    line-height: 1;
    margin-bottom: 4px;
}

.pd-bonus-amount small {
    font-size: .55em;
    font-weight: 400;
    color: #666;
}

.pd-bonus-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.pd-bonus-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.55;
    padding: 0 20px;
}

.pd-bonus-wager {
    font-size: 11px;
    color: #999;
    padding: 8px 20px 0;
}

.pd-bonus-foot {
    padding: 16px 20px 20px;
    margin-top: auto;
}

/* ================================================================ */
/* SLOTS */
/* ================================================================ */
.pd-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pd-slot-card {
    background: var(--pd-card);
    border-radius: var(--pd-radius);
    border: 1px solid var(--pd-border);
    overflow: hidden;
    box-shadow: var(--pd-shadow);
    text-align: center;
    transition: all var(--pd-trans);
}

.pd-slot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.pd-slot-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.pd-slot-body {
    padding: 14px;
}

.pd-slot-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.pd-slot-provider {
    font-size: 12px;
    color: #888;
    margin-bottom: 3px;
}

.pd-slot-rtp {
    font-size: 11px;
    color: var(--pd-green);
    font-weight: 600;
    margin-bottom: 12px;
}

/* ================================================================ */
/* WHEEL OF FORTUNE */
/* ================================================================ */
.pd-wheel-section {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 48px 0;
}

.pd-wheel-section .pd-section-title {
    color: #fff;
}

.pd-wheel-section .pd-section-title::after {
    background: var(--pd-green);
}

.pd-wheel-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.pd-wheel-canv-wrap {
    position: relative;
    flex-shrink: 0;
}

.pd-wheel-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 28px solid var(--pd-green);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5));
}

.pd-wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(46, 204, 113, .3);
    display: block;
}

.pd-wheel-info {
    max-width: 340px;
    color: #fff;
}

.pd-wheel-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
}

.pd-wheel-info p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.pd-wheel-result {
    display: none;
    border-radius: var(--pd-radius);
    padding: 16px;
    margin-bottom: 16px;
    background: rgba(46, 204, 113, .15);
    border: 1px solid var(--pd-green);
}

.pd-wheel-result.is-show {
    display: block;
}

.pd-wheel-result.is-lose {
    background: rgba(192, 57, 43, .15);
    border-color: #c0392b;
}

.pd-wheel-result h4 {
    font-size: 1rem;
    color: var(--pd-green);
    margin-bottom: 6px;
}

.pd-wheel-result.is-lose h4 {
    color: #e74c3c;
}

.pd-wheel-result p {
    color: #ccc;
    font-size: 13px;
    margin: 0;
}

.pd-wheel-result .pd-btn {
    margin-top: 10px;
}

/* ================================================================ */
/* CONTENT BLOCK ({{ content }}) */
/* ================================================================ */
.pd-content-block {
    background: var(--pd-card);
    border-radius: var(--pd-radius);
    padding: 32px;
    box-shadow: var(--pd-shadow);
    border: 1px solid var(--pd-border);
}

.pd-content-block h1 {
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.pd-content-block h2 {
    font-size: 1.5rem;
    margin: 1.5em 0 .7em;
}

.pd-content-block h3 {
    font-size: 1.2rem;
    margin: 1.2em 0 .6em;
}

.pd-content-block p {
    color: #444;
    line-height: 1.7;
}

.pd-content-block ul {
    list-style: disc;
    margin: .75rem 0 1rem 1.5rem;
}

.pd-content-block ol {
    list-style: decimal;
    margin: .75rem 0 1rem 1.5rem;
}

.pd-content-block li {
    color: #444;
    line-height: 1.6;
    margin-bottom: 4px;
}

.pd-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    display: block;
    overflow-x: auto;
}

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

.pd-content-block table th {
    background: #f0f0f0;
    font-weight: 600;
}

.pd-content-block a {
    color: var(--pd-green);
}

.pd-content-block blockquote {
    border-left: 3px solid var(--pd-green);
    padding: 12px 20px;
    color: #555;
    font-style: italic;
    background: #f9f9f9;
    border-radius: 0 6px 6px 0;
    margin: 1rem 0;
}

.pd-content-block strong {
    color: var(--pd-text);
}

.pd-author-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius);
    margin-top: 24px;
}

.pd-author-ava {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.pd-author-name {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 3px;
}

.pd-author-pos {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
}

.pd-author-bio {
    font-size: 13px;
    color: #555;
    line-height: 1.55;
    margin: 0 0 8px;
}

.pd-author-link {
    font-size: 13px;
    color: var(--pd-green);
}

/* ================================================================ */
/* FAQ */
/* ================================================================ */
.pd-faq-item {
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius);
    margin-bottom: 8px;
    overflow: hidden;
    background: var(--pd-card);
}

.pd-faq-q {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 15px;
    color: var(--pd-text);
    transition: background var(--pd-trans);
    user-select: none;
    list-style: none;
    gap: 12px;
}

.pd-faq-q:hover {
    background: #f0f0f0;
}

.pd-faq-q.is-open {
    background: #f0f0f0;
}

.pd-faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--pd-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform var(--pd-trans);
}

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

.pd-faq-a {
    display: none;
    padding: 0 20px 16px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.pd-faq-a.is-open {
    display: block;
}

/* ================================================================ */
/* FOOTER */
/* ================================================================ */
.pd-footer {
    background: var(--pd-header);
    color: #ccc;
    padding: 48px 0 24px;
}

.pd-footer-grid {
    display: grid;
    grid-template-columns: 200px 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.pd-footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 12px;
}

.pd-footer-logo img {
    height: 36px;
}

.pd-footer-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.pd-footer-col h4 {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pd-footer-col li {
    margin-bottom: 8px;
}

.pd-footer-col li a {
    color: #888;
    font-size: 13px;
    transition: color var(--pd-trans);
}

.pd-footer-col li a:hover {
    color: var(--pd-green);
}

.pd-footer-badges h4 {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.pd-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.pd-badge {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #aaa;
}

.pd-footer-hr {
    border: none;
    border-top: 1px solid #222;
    margin: 24px 0;
}

.pd-footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

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

.pd-legal {
    font-size: 11px;
    color: #444;
    max-width: 500px;
    line-height: 1.5;
}

/* ================================================================ */
/* STICKY WIDGET */
/* ================================================================ */
.pd-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #0d0d0d, #111);
    border-top: 2px solid var(--pd-green);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .4);
    gap: 12px;
    flex-wrap: wrap;
}

.pd-widget-txt {
    color: #fff;
    font-size: 13px;
}

.pd-widget-txt strong {
    color: var(--pd-green);
}

.pd-widget-sub {
    font-size: 11px;
    color: #555;
    display: block;
}

.pd-widget-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.pd-widget-close {
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 22px;
    line-height: 1;
    transition: color var(--pd-trans);
}

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

/* ================================================================ */
/* SLIDERS (mobile) */
/* ================================================================ */
.pd-slider {
    overflow: hidden;
}

.pd-slider-track {
    display: flex;
    transition: transform .4s ease;
    will-change: transform;
}

.pd-slider-track > * {
    flex-shrink: 0;
}

.pd-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.pd-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pd-border);
    border: none;
    cursor: pointer;
    transition: all var(--pd-trans);
    padding: 0;
}

.pd-slider-dot.is-active {
    background: var(--pd-green);
    width: 22px;
    border-radius: 4px;
}

/* ================================================================ */
/* UNUSED / WP-LIKE UNIQUALISATION STYLES */
/* ================================================================ */
.pd-xr7a2m {
    display: none;
    visibility: hidden;
}

.pd-q9nfw {
    opacity: 0;
    pointer-events: none;
}

.entry-content {
}

.wp-block-group {
}

.elementor-widget-wrap {
}

.yoast-breadcrumb {
}

.site-main .entry-header {
}

.wp-block-cover {
}

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

.is-layout-constrained {
    max-width: 1200px;
    margin: 0 auto;
}

.wp-block-button__link {
}

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

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

    .pd-app-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pd-nav {
        display: none;
    }

    .pd-online {
        display: none;
    }

    .pd-burger {
        display: flex;
    }

    .pd-jackpots-grid {
        gap: 8px;
    }

    .pd-jackpot-card {
        padding: 14px 10px;
    }

    .pd-bonuses-grid {
        grid-template-columns: 1fr;
        display: none;
    }

    .pd-slots-grid {
        display: none;
    }

    .pd-slider {
        display: block;
    }

    .pd-hero {
        min-height: 300px;
    }

    .pd-hero-slide {
        min-height: 300px;
    }

    .pd-hero-body {
        padding: 32px 20px;
    }

    .pd-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pd-wheel-wrap {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .pd-footer-grid {
        grid-template-columns: 1fr;
    }

    .pd-jackpots-grid {
        gap: 6px;
    }

    .pd-jackpot-amount {
        font-size: 1rem;
    }

    .pd-hero-title {
        font-size: 1.4rem;
    }
}

/* On desktop, hide slider wrappers */
@media (min-width: 769px) {
    .pd-slider-bonus {
        display: none;
    }

    .pd-slider-slots {
        display: none;
    }
}

.jfdse {
    --jfdse-bg: #f5f7fb;
    --jfdse-card: #ffffff;
    --jfdse-border: #dfe5ee;
    --jfdse-text: #1b2430;
    --jfdse-muted: #667085;
    --jfdse-accent: #2ecc71;
    --jfdse-accent-dark: #24b863;
    --jfdse-accent-soft: rgba(46, 204, 113, 0.1);
    --jfdse-shadow: 0 20px 60px rgba(14, 24, 39, 0.08);
    max-width: 980px;
    margin: 40px auto;
    padding: 40px;
    color: var(--jfdse-text);
    background: radial-gradient(circle at top right, rgba(46, 204, 113, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border: 1px solid var(--jfdse-border);
    border-radius: 28px;
    box-shadow: var(--jfdse-shadow);
    overflow: hidden;
}

.jfdse * {
    box-sizing: border-box;
}

.jfdse h1,
.jfdse h2,
.jfdse h3 {
    margin: 0;
    line-height: 1.2;
    color: #111827;
}

.jfdse h1 {
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -0.03em;
    margin-bottom: 22px;
}

.jfdse h2 {
    position: relative;
    font-size: clamp(24px, 3vw, 34px);
    margin-top: 44px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--jfdse-border);
}

.jfdse h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--jfdse-accent), #7ce5a8);
}

.jfdse h3 {
    font-size: clamp(20px, 2.1vw, 26px);
    margin-top: 30px;
    margin-bottom: 14px;
    color: #172033;
}

.jfdse p,
.jfdse li {
    font-size: 18px;
    line-height: 1.75;
    color: var(--jfdse-text);
}

.jfdse p {
    margin: 0 0 18px;
}

.jfdse > p:first-of-type {
    font-size: 20px;
    color: #0f172a;
    padding: 22px 24px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.12), rgba(46, 204, 113, 0.04));
    border: 1px solid rgba(46, 204, 113, 0.18);
    border-radius: 20px;
}

.jfdse ul,
.jfdse ol {
    margin: 0 0 26px;
    padding: 0;
}

.jfdse ul {
    list-style: none;
}

.jfdse ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
}

.jfdse ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--jfdse-accent);
    box-shadow: 0 0 0 6px rgba(46, 204, 113, 0.12);
}

.jfdse ol {
    list-style: none;
    counter-reset: jfdse-counter;
}

.jfdse ol li {
    position: relative;
    counter-increment: jfdse-counter;
    padding-left: 56px;
    margin-bottom: 16px;
}

.jfdse ol li::before {
    content: counter(jfdse-counter);
    position: absolute;
    top: 2px;
    left: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--jfdse-accent), #7ce5a8);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.jfdse a {
    color: var(--jfdse-accent-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.25s ease;
    overflow-wrap: anywhere;
}

.jfdse a:hover {
    color: #1d9651;
}

.jfdse strong,
.jfdse b {
    color: #111827;
}

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

.jfdse h2 + ul,
.jfdse h3 + ul,
.jfdse h2 + ol,
.jfdse h3 + ol {
    padding: 24px;
    background: var(--jfdse-card);
    border: 1px solid var(--jfdse-border);
    border-radius: 20px;
}

.jfdse p:has(a[href*="linkedin.com"]) {
    padding: 18px 20px;
    background: #fbfcfe;
    border: 1px solid var(--jfdse-border);
    border-radius: 18px;
}

@media (max-width: 1024px) {
    .jfdse {
        margin: 28px auto;
        padding: 32px 24px;
        border-radius: 24px;
    }

    .jfdse p,
    .jfdse li {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .jfdse {
        margin: 20px auto;
        padding: 22px 16px;
        border-radius: 20px;
    }

    .jfdse h1 {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .jfdse h2 {
        font-size: 24px;
        margin-top: 32px;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .jfdse h2::after {
        width: 56px;
    }

    .jfdse h3 {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .jfdse p,
    .jfdse li {
        font-size: 16px;
        line-height: 1.65;
    }

    .jfdse > p:first-of-type {
        font-size: 17px;
        padding: 18px 16px;
        border-radius: 16px;
    }

    .jfdse h2 + ul,
    .jfdse h3 + ul,
    .jfdse h2 + ol,
    .jfdse h3 + ol,
    .jfdse p:has(a[href*="linkedin.com"]) {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .jfdse ul li {
        padding-left: 24px;
    }

    .jfdse ul li::before {
        width: 8px;
        height: 8px;
        top: 10px;
    }

    .jfdse ol li {
        padding-left: 48px;
    }

    .jfdse ol li::before {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .jfdse {
        padding: 18px 14px;
        border-radius: 18px;
    }

    .jfdse h1 {
        font-size: 26px;
    }

    .jfdse h2 {
        font-size: 22px;
    }

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

    .jfdse p,
    .jfdse li {
        font-size: 15px;
        line-height: 1.6;
    }

    .jfdse > p:first-of-type {
        font-size: 16px;
        padding: 16px 14px;
    }

    .jfdse h2 + ul,
    .jfdse h3 + ul,
    .jfdse h2 + ol,
    .jfdse h3 + ol,
    .jfdse p:has(a[href*="linkedin.com"]) {
        padding: 16px 14px;
    }

    .jfdse ol li {
        padding-left: 44px;
    }
}