/* Pokerdom - покердом код на кэшбэк | style.css?ver=1.7 */
/* wp-content/themes/pokerdom-theme/style.css */

:root {
    --pd-black: #000000;
    --pd-green: #2ecc71;
    --pd-green-dark: #27ae60;
    --pd-gray: #999999;
    --pd-bg: #f5f5f5;
    --pd-white: #ffffff;
    --pd-border: #e0e0e0;
    --pd-text: #222222;
    --pd-text-light: #555555;
    --pd-gold: #f0c040;
    --pd-radius: 10px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

/* ========== UNUSED STYLES (uniqueness) ========== */
.pd-u-ghost {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.pd-u-xr9f2 {
    font-weight: 900;
    letter-spacing: -0.03em;
}

.pd-u-q7k1m {
    background: transparent;
    border: none;
    outline: none;
}

.elementor-widget-wrap-hidden {
    display: none;
}

.wp-block-group__inner-container {
    padding: 0;
}

/* ================================================ */

/* ========== HEADER ========== */
.pd-header {
    background: var(--pd-black);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.pd-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 64px;
    max-width: 1280px;
    margin: 0 auto;
    gap: 16px;
}

.pd-header__logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

.pd-header__nav {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.pd-header__nav a {
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .02em;
    transition: color .2s;
}

.pd-header__nav a:hover {
    color: var(--pd-white);
}

.pd-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.pd-header__online {
    color: var(--pd-green);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.pd-header__online-dot {
    width: 8px;
    height: 8px;
    background: var(--pd-green);
    border-radius: 50%;
    animation: pulse-dot 1.4s infinite;
    display: inline-block;
    flex-shrink: 0;
}

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

.pd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    padding: 9px 20px;
    transition: transform .15s, box-shadow .15s, background .2s;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.pd-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}

.pd-btn:active {
    transform: translateY(0);
}

.pd-btn--login {
    background: var(--pd-gray);
    color: var(--pd-white);
}

.pd-btn--login:hover {
    background: #bbbbbb;
    color: var(--pd-black);
}

.pd-btn--reg {
    background: var(--pd-green);
    color: var(--pd-white);
}

.pd-btn--reg:hover {
    background: var(--pd-green-dark);
    color: var(--pd-white);
}

.pd-btn--bonus {
    background: var(--pd-green);
    color: var(--pd-white);
    font-size: 13px;
}

.pd-btn--bonus:hover {
    background: var(--pd-green-dark);
    color: var(--pd-white);
}

/* Burger */
.pd-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 0;
    flex-shrink: 0;
}

.pd-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--pd-white);
    border-radius: 2px;
    transition: all .25s;
}

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

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

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

.pd-mobile-menu {
    display: none;
    background: #111111;
    padding: 16px 20px 20px;
    border-top: 1px solid #333;
}

.pd-mobile-menu.active {
    display: block;
}

.pd-mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.pd-mobile-menu ul a {
    color: #cccccc;
    font-size: 15px;
    display: block;
    padding: 6px 0;
    border-bottom: 1px solid #222;
}

.pd-mobile-menu ul a:hover {
    color: var(--pd-white);
}

.pd-mobile-menu__btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ========== HERO ========== */
.pd-hero {
    background: url('/hero-banner.jpg') center/cover no-repeat;
    position: relative;
    padding: 0;
    min-height: 420px;
}

.pd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("/pokerdom-banner.jpg");
}

.pd-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 20px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.pd-hero__text {
    flex: 1 1 340px;
    color: var(--pd-white);
}

.pd-hero__eyebrow {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--pd-green);
    font-weight: 700;
    margin-bottom: 10px;
}

.pd-hero__title {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.pd-hero__desc {
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 24px;
    max-width: 480px;
}

/* Promo card */
.pd-promo-card {
    background: rgba(0, 0, 0, .82);
    border: 1.5px solid var(--pd-green);
    border-radius: var(--pd-radius);
    padding: 28px 26px 22px;
    min-width: 280px;
    max-width: 340px;
    flex-shrink: 0;
    color: var(--pd-white);
    box-shadow: 0 8px 32px rgba(46, 204, 113, .2);
}

.pd-promo-card__label {
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--pd-green);
    font-weight: 700;
    margin-bottom: 6px;
}

.pd-promo-card__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--pd-white);
}

.pd-promo-card__code-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1a1a1a;
    border: 1px dashed var(--pd-green);
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 10px;
}

.pd-promo-card__code {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: .14em;
    color: var(--pd-gold);
    flex: 1;
}

.pd-promo-card__copy {
    background: none;
    border: 1px solid var(--pd-green);
    color: var(--pd-green);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s, color .2s;
    white-space: nowrap;
}

.pd-promo-card__copy:hover {
    background: var(--pd-green);
    color: var(--pd-white);
}

.pd-promo-card__status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--pd-green);
    margin-bottom: 14px;
}

.pd-promo-card__status-dot {
    width: 7px;
    height: 7px;
    background: var(--pd-green);
    border-radius: 50%;
    animation: pulse-dot 1.4s infinite;
}

.pd-promo-card__status--timer {
    color: #f39c12;
}

.pd-promo-card__status--timer .pd-promo-card__status-dot {
    background: #f39c12;
}

.pd-promo-card__btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pd-promo-card__btns .pd-btn {
    flex: 1 1 100px;
    font-size: 13px;
    padding: 9px 12px;
}

/* ========== SECTION WRAPPER ========== */
.pd-section {
    padding: 52px 20px;
}

.pd-section--alt {
    background: var(--pd-white);
}

.pd-section__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.pd-section__title {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--pd-black);
    position: relative;
    padding-bottom: 12px;
}

.pd-section__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background: var(--pd-green);
    border-radius: 2px;
}

.pd-section__subtitle {
    color: var(--pd-text-light);
    font-size: 14px;
    margin-bottom: 28px;
    margin-top: 6px;
}

/* ========== CASINO INFO TABLE ========== */
.pd-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--pd-radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.pd-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--pd-white);
    font-size: 14px;
}

.pd-table th,
.pd-table td {
    padding: 12px 18px;
    border: 1px solid var(--pd-border);
    text-align: left;
    vertical-align: top;
}

.pd-table thead th {
    background: var(--pd-black);
    color: var(--pd-white);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .04em;
    white-space: nowrap;
}

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

.pd-table tbody tr:nth-child(even) {
    background: var(--pd-white);
}

.pd-table tbody tr:hover {
    background: #f0faf4;
}

.pd-table td:first-child {
    font-weight: 600;
    color: var(--pd-black);
    width: 200px;
    white-space: nowrap;
}

.pd-table td:last-child {
    color: var(--pd-text-light);
}

.pd-badge {
    display: inline-block;
    background: var(--pd-green);
    color: var(--pd-white);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: .04em;
}

/* ========== TOURNAMENTS ========== */
.pd-cards-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pd-card {
    background: var(--pd-white);
    border-radius: var(--pd-radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    overflow: hidden;
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
}

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

.pd-card__head {
    background: var(--pd-black);
    color: var(--pd-white);
    padding: 16px 18px 12px;
}

.pd-card__tag {
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--pd-green);
    font-weight: 700;
    margin-bottom: 4px;
}

.pd-card__name {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
}

.pd-card__body {
    padding: 16px 18px;
    flex: 1;
}

.pd-card__desc {
    font-size: 13px;
    color: var(--pd-text-light);
    line-height: 1.55;
    margin-bottom: 14px;
}

.pd-card__prize {
    font-size: 22px;
    font-weight: 900;
    color: var(--pd-green-dark);
    margin-bottom: 10px;
}

.pd-card__prize span {
    font-size: 13px;
    font-weight: 400;
    color: var(--pd-text-light);
}

.pd-card__timer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 14px;
}

.pd-card__timer-icon {
    font-size: 14px;
}

.pd-card__foot {
    padding: 0 18px 18px;
}

/* Bonus cards */
.pd-bonus-card {
    background: var(--pd-white);
    border-radius: var(--pd-radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    border-left: 4px solid var(--pd-green);
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}

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

.pd-bonus-card__head {
    padding: 18px 20px 12px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--pd-white);
}

.pd-bonus-card__icon {
    font-size: 28px;
    margin-bottom: 6px;
}

.pd-bonus-card__type {
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--pd-green);
    font-weight: 700;
}

.pd-bonus-card__name {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
    margin-top: 4px;
}

.pd-bonus-card__body {
    padding: 16px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pd-bonus-card__amount {
    font-size: 24px;
    font-weight: 900;
    color: var(--pd-black);
}

.pd-bonus-card__amount span {
    font-size: 13px;
    font-weight: 400;
    color: var(--pd-text-light);
}

.pd-bonus-card__detail {
    font-size: 12px;
    color: var(--pd-text-light);
    line-height: 1.5;
}

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

/* ========== SLOT MINI-GAME ========== */
.pd-slot {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 36px 24px 32px;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .35);
    border: 1.5px solid #333;
}

.pd-slot__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--pd-white);
    margin-bottom: 6px;
}

.pd-slot__subtitle {
    font-size: 13px;
    color: #888;
    margin-bottom: 24px;
}

.pd-slot__reels {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.pd-slot__reel {
    width: 76px;
    height: 90px;
    background: #111;
    border: 2px solid #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    overflow: hidden;
    position: relative;
}

.pd-slot__reel.spinning {
    animation: reel-spin .12s linear infinite;
}

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

.pd-slot__spin-btn {
    background: linear-gradient(135deg, var(--pd-green) 0%, var(--pd-green-dark) 100%);
    color: var(--pd-white);
    font-size: 16px;
    font-weight: 800;
    border: none;
    padding: 14px 48px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    letter-spacing: .04em;
    box-shadow: 0 4px 18px rgba(46, 204, 113, .35);
}

.pd-slot__spin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(46, 204, 113, .5);
}

.pd-slot__spin-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}

.pd-slot__result {
    margin-top: 20px;
    display: none;
}

.pd-slot__result.show {
    display: block;
}

.pd-slot__win {
    background: rgba(46, 204, 113, .12);
    border: 1.5px solid var(--pd-green);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--pd-green);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pd-slot__lose {
    color: #999;
    font-size: 14px;
    margin-bottom: 12px;
}

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

.pd-faq__item {
    background: var(--pd-white);
    border-radius: 8px;
    border: 1px solid var(--pd-border);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
}

.pd-faq__question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 16px 20px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--pd-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background .15s;
}

.pd-faq__question:hover {
    background: #f7fdf9;
}

.pd-faq__icon {
    width: 22px;
    height: 22px;
    background: var(--pd-green);
    border-radius: 50%;
    color: var(--pd-white);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .25s;
    font-style: normal;
}

.pd-faq__item.open .pd-faq__icon {
    transform: rotate(45deg);
}

.pd-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s;
    padding: 0 20px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--pd-text-light);
}

.pd-faq__item.open .pd-faq__answer {
    max-height: 400px;
    padding: 0 20px 16px;
}

/* ========== CONTENT REVIEW (bare tags) ========== */
.pd-review-content h1,
.pd-review-content h2,
.pd-review-content h3,
.pd-review-content h4,
.pd-review-content h5,
.pd-review-content h6 {
    font-weight: 800;
    color: var(--pd-black);
    margin: 20px 0 10px;
    line-height: 1.25;
}

.pd-review-content h2 {
    font-size: 22px;
}

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

.pd-review-content h4 {
    font-size: 16px;
}

.pd-review-content p {
    margin-bottom: 12px;
    line-height: 1.65;
    color: var(--pd-text);
}

.pd-review-content ul,
.pd-review-content ol {
    margin: 0 0 14px 20px;
    line-height: 1.65;
    color: var(--pd-text);
}

.pd-review-content li {
    margin-bottom: 5px;
}

.pd-review-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: 14px;
}

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

.pd-review-content table th {
    background: var(--pd-black);
    color: var(--pd-white);
    font-weight: 700;
}

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

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

.pd-review-content blockquote {
    border-left: 4px solid var(--pd-green);
    padding: 10px 16px;
    margin: 14px 0;
    background: #f7fdf9;
    color: var(--pd-text-light);
    font-style: italic;
}

.pd-review-content strong {
    font-weight: 700;
}

.pd-review-content em {
    font-style: italic;
}

/* ========== AUTHOR ========== */
.pd-author {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--pd-white);
    border-radius: var(--pd-radius);
    padding: 20px;
    border: 1px solid var(--pd-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
    margin-top: 36px;
}

.pd-author__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--pd-gray);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--pd-white);
    overflow: hidden;
}

.pd-author__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-author__info {
    flex: 1;
}

.pd-author__name {
    font-weight: 800;
    font-size: 15px;
    color: var(--pd-black);
    margin-bottom: 4px;
}

.pd-author__name a {
    color: var(--pd-black);
    border-bottom: 1px solid var(--pd-green);
}

.pd-author__bio {
    font-size: 13px;
    color: var(--pd-text-light);
    line-height: 1.55;
}

/* ========== FOOTER ========== */
.pd-footer {
    background: var(--pd-black);
    color: #aaaaaa;
    padding: 40px 20px 24px;
}

.pd-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.pd-footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid #222;
    margin-bottom: 24px;
}

.pd-footer__logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 10px;
    display: block;
}

.pd-footer__tagline {
    font-size: 12px;
    color: #666;
    max-width: 220px;
    line-height: 1.5;
}

.pd-footer__nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pd-footer__nav a {
    color: #888;
    font-size: 13px;
    transition: color .2s;
}

.pd-footer__nav a:hover {
    color: var(--pd-white);
}

.pd-footer__nav-title {
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #555;
    font-weight: 700;
    margin-bottom: 10px;
}

.pd-footer__logos {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pd-footer__logos-title {
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #555;
    font-weight: 700;
    margin-bottom: 6px;
}

.pd-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.pd-logo-badge {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    letter-spacing: .04em;
    white-space: nowrap;
}

.pd-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    font-size: 11px;
    color: #555;
    line-height: 1.6;
}

.pd-footer__copy {
    color: #666;
}

.pd-footer__legal {
    max-width: 620px;
    font-size: 10px;
    line-height: 1.55;
}

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

.pd-widget__text {
    color: var(--pd-white);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.pd-widget__text strong {
    color: var(--pd-green);
    font-size: 15px;
    display: block;
}

.pd-widget__close {
    background: none;
    border: none;
    color: #555;
    font-size: 18px;
    cursor: pointer;
    padding: 2px 6px;
    line-height: 1;
    transition: color .2s;
    flex-shrink: 0;
}

.pd-widget__close:hover {
    color: #aaa;
}

.pd-widget__action {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

/* ========== TRANSITIONS / ANIMATIONS ========== */
.pd-fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease;
}

.pd-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== MOBILE SLIDER ========== */
@media (max-width: 768px) {
    .pd-slider-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        display: flex;
        gap: 16px;
        padding-bottom: 10px;
    }

    .pd-slider-wrap .pd-card,
    .pd-slider-wrap .pd-bonus-card {
        flex: 0 0 85vw;
        scroll-snap-align: start;
    }

    .pd-cards-grid {
        flex-wrap: nowrap;
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .pd-header__nav {
        display: none;
    }

    .pd-burger {
        display: flex;
    }

    .pd-hero__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .pd-promo-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .pd-section {
        padding: 36px 14px;
    }

    .pd-widget {
        padding: 10px 14px;
    }

    .pd-widget__text {
        font-size: 12px;
    }

    .pd-slot__reel {
        width: 64px;
        height: 78px;
        font-size: 36px;
    }

    .pd-footer__top {
        flex-direction: column;
        gap: 24px;
    }
}


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

.wp-caption {
    max-width: 100%;
}

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

.elementor-section-wrap {
    width: 100%;
}

.site-content {
    position: relative;
}

.entry-header {
    margin-bottom: 20px;
}

.hentry {
    margin: 0;
}

.sticky {
    position: relative;
}

.bypostauthor {
    font-style: normal;
}

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

.pd-breadcrumb {
    font-size: 12px;
    color: #999;
    padding: 8px 0 0;
    margin-bottom: 0;
}

.pd-breadcrumb a {
    color: #999;
}

.pd-breadcrumb span {
    color: #ccc;
    margin: 0 4px;
}

.jrdrte {
    --jr-bg: #f5f7fb;
    --jr-surface: #ffffff;
    --jr-text: #1f2937;
    --jr-muted: #5b6472;
    --jr-line: #d9e1ec;
    --jr-accent: #16a34a;
    --jr-accent-dark: #15803d;
    --jr-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    --jr-radius: 20px;
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    color: var(--jr-text);
    font-size: 17px;
    line-height: 1.75;
}

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

.jrdrte h1,
.jrdrte h2,
.jrdrte h3,
.jrdrte h4,
.jrdrte h5,
.jrdrte h6 {
    color: #0f172a;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.jrdrte h1 {
    font-size: clamp(32px, 5vw, 52px);
    margin: 0 0 24px;
}

.jrdrte h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin: 48px 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--jr-line);
}

.jrdrte h3 {
    font-size: clamp(20px, 2.4vw, 26px);
    margin: 32px 0 16px;
}

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

.jrdrte p {
    margin: 0 0 18px;
    color: var(--jr-text);
}

.jrdrte a {
    color: var(--jr-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease, opacity 0.2s ease;
    word-break: break-word;
}

.jrdrte a:hover {
    color: var(--jr-accent-dark);
}

.jrdrte ul,
.jrdrte ol {
    margin: 0 0 24px;
    padding-left: 0;
}

.jrdrte ul li,
.jrdrte ol li {
    position: relative;
    margin-bottom: 12px;
    color: var(--jr-text);
}

.jrdrte ul {
    list-style: none;
}

.jrdrte ul li {
    padding-left: 28px;
}

.jrdrte ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--jr-accent);
    box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.12);
}

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

.jrdrte ol li {
    counter-increment: jr-counter;
    padding-left: 56px;
    min-height: 40px;
}

.jrdrte ol li::before {
    content: counter(jr-counter);
    position: absolute;
    left: 0;
    top: -1px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ecfdf3;
    color: var(--jr-accent-dark);
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jrdrte strong {
    font-weight: 800;
    color: #111827;
}

.jrdrte em {
    font-style: italic;
}

.jrdrte blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    background: #f0fdf4;
    border-left: 4px solid var(--jr-accent);
    border-radius: 0 16px 16px 0;
    color: var(--jr-muted);
}

.jrdrte hr {
    border: 0;
    border-top: 1px solid var(--jr-line);
    margin: 36px 0;
}

.jrdrte table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--jr-surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--jr-shadow);
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

.jrdrte table thead {
    background: #111827;
}

.jrdrte table th {
    color: #ffffff;
    font-weight: 700;
    text-align: left;
    padding: 14px 18px;
    font-size: 14px;
}

.jrdrte table td {
    padding: 14px 18px;
    border-top: 1px solid var(--jr-line);
    color: var(--jr-text);
    font-size: 15px;
    background: #ffffff;
}

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

.jrdrte aside {
    margin: 40px 0;
    padding: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--jr-line);
    border-radius: var(--jr-radius);
    box-shadow: var(--jr-shadow);
}

.jrdrte aside h3 {
    margin-top: 0;
    margin-bottom: 14px;
}

.jrdrte > ul:last-child,
.jrdrte > ol:last-child,
.jrdrte > p:last-child,
.jrdrte > aside:last-child {
    margin-bottom: 0;
}

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

.jrdrte > h1 + p {
    font-size: 19px;
    color: var(--jr-muted);
}

.jrdrte ul:has(a),
.jrdrte ol:has(a) {
    background: var(--jr-surface);
    border: 1px solid var(--jr-line);
    border-radius: 18px;
    padding: 22px 22px 10px;
    box-shadow: var(--jr-shadow);
}

@media (max-width: 768px) {
    .jrdrte {
        padding: 28px 16px 56px;
        font-size: 16px;
        line-height: 1.7;
    }

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

    .jrdrte h2 {
        margin-top: 36px;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .jrdrte h3 {
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .jrdrte p {
        margin-bottom: 16px;
    }

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

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

    .jrdrte ol li::before {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .jrdrte aside {
        padding: 22px 18px;
        border-radius: 16px;
    }

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

@media (max-width: 480px) {
    .jrdrte {
        padding: 24px 14px 48px;
        font-size: 15px;
    }

    .jrdrte > h1 + p {
        font-size: 17px;
    }

    .jrdrte h2 {
        font-size: 24px;
    }

    .jrdrte h3 {
        font-size: 20px;
    }

    .jrdrte ul li::before {
        top: 9px;
        width: 8px;
        height: 8px;
        box-shadow: 0 0 0 5px rgba(22, 163, 74, 0.12);
    }

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

    .jrdrte ol li::before {
        width: 30px;
        height: 30px;
    }

    .jrdrte aside {
        padding: 18px 16px;
    }
}

.jrdrte {
    --jr-bg: #f5f7fb;
    --jr-surface: #ffffff;
    --jr-text: #1f2937;
    --jr-muted: #5b6472;
    --jr-line: #d9e1ec;
    --jr-accent: #16a34a;
    --jr-accent-dark: #15803d;
    --jr-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    --jr-radius: 20px;
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    color: var(--jr-text);
    font-size: 17px;
    line-height: 1.75;
    background: var(--jr-surface);
    border: 1px solid var(--jr-line);
    border-radius: var(--jr-radius);
    box-shadow: var(--jr-shadow);
}