/* Pokerdom – main styles | ver 1.7 */
/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --clr-header: #000000;
    --clr-footer: #0a0a0a;
    --clr-bg: #f5f5f5;
    --clr-surface: #ffffff;
    --clr-dark: #111111;
    --clr-dark2: #1a1a1a;
    --clr-green: #2ecc71;
    --clr-green-h: #27ae60;
    --clr-grey: #999999;
    --clr-grey-h: #777777;
    --clr-text: #222222;
    --clr-muted: #666666;
    --clr-border: #e0e0e0;
    --clr-accent: #f39c12;
    --radius: 8px;
    --radius-lg: 14px;
    --shadow: 0 2px 12px rgba(0, 0, 0, .10);
    --shadow-lg: 0 6px 28px rgba(0, 0, 0, .16);
    --trans: .22s ease;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: Helvetica, Arial, sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font: inherit;
    border: none;
    background: none;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    max-width: 100%;
    padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.pd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
    white-space: nowrap;
}

.pd-btn:hover {
    transform: translateY(-1px);
}

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

.pd-btn--reg:hover {
    background: var(--clr-green-h);
    box-shadow: 0 4px 18px rgba(46, 204, 113, .4);
}

.pd-btn--login {
    background: var(--clr-grey);
    color: #fff;
}

.pd-btn--login:hover {
    background: var(--clr-grey-h);
}

.pd-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .6);
}

.pd-btn--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
}

.pd-btn--lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.pd-btn--block {
    display: flex;
    width: 100%;
}

.pd-btn--spin {
    background: var(--clr-accent);
    color: #fff;
    padding: 14px 40px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
    letter-spacing: .04em;
}

.pd-btn--spin:hover {
    background: #e67e22;
    box-shadow: 0 4px 20px rgba(243, 156, 18, .4);
}

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

.pd-header__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 64px;
}

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

.pd-header__nav {
    flex: 1;
}

.pd-header__nav-list {
    display: flex;
    gap: 4px;
}

.pd-header__nav-link {
    color: #ccc;
    text-decoration: none;
    font-size: .88rem;
    padding: 6px 10px;
    border-radius: 6px;
    transition: color var(--trans), background var(--trans);
}

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

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

.pd-header__online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: #aaa;
    white-space: nowrap;
}

.pd-header__online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-green);
    box-shadow: 0 0 6px var(--clr-green);
    animation: pulse 2s infinite;
}

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

.pd-header__buttons {
    display: flex;
    gap: 8px;
}

/* Burger */
.pd-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    margin-left: auto;
}

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

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

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

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

/* Mobile menu */
.pd-mobile-menu {
    display: none;
    background: #111;
    border-top: 1px solid #222;
    padding: 16px 0;
}

.pd-mobile-menu.is-open {
    display: block;
}

.pd-mobile-menu__list {
    padding: 0 20px;
}

.pd-mobile-menu__link {
    display: block;
    color: #ccc;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #1f1f1f;
    font-size: .95rem;
    transition: color var(--trans);
}

.pd-mobile-menu__link:hover {
    color: #fff;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.pd-section {
    padding: 64px 0;
}

.pd-section--dark {
    background: var(--clr-dark);
    color: #fff;
}

.pd-section--slot {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 100%);
    color: #fff;
}

.pd-section--author {
    background: var(--clr-surface);
    border-top: 1px solid var(--clr-border);
}

.pd-section--content-block {
    background: #fff;
}

.pd-section__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-balance: balance;
}

.pd-section__title--light {
    color: #fff;
}

.pd-section__subtitle {
    color: var(--clr-muted);
    margin-bottom: 36px;
    font-size: 1.05rem;
}

.pd-section__subtitle--light {
    color: #aaa;
}

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

.pd-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pd-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pd-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .55) 60%, rgba(0, 0, 0, .3) 100%);
}

.pd-hero .container {
    position: relative;
    z-index: 1;
}

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

.pd-hero__content {
    flex: 1;
    min-width: 280px;
    color: #fff;
}

.pd-hero__eyebrow {
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--clr-green);
    margin-bottom: 12px;
    font-weight: 600;
}

.pd-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    text-balance: balance;
}

.pd-hero__accent {
    color: var(--clr-green);
}

.pd-hero__subtitle {
    font-size: 1.05rem;
    color: #ddd;
    margin-bottom: 28px;
    max-width: 480px;
    line-height: 1.6;
}

.pd-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.pd-hero__trust {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: .82rem;
    color: #999;
}

.pd-hero__trust-item {
    color: #bbb;
}

.pd-hero__trust-sep {
    color: #555;
}

/* ============================================================
   PROMO CARD
   ============================================================ */
.pd-promo-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    width: 340px;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--clr-border);
}

.pd-promo-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 8px;
}

.pd-promo-card__badge {
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.pd-promo-card__badge--active {
    background: #e6f9ef;
    color: #1a7d44;
    border: 1px solid #b2dfc5;
}

.pd-promo-card__timer-label {
    font-size: .8rem;
    color: var(--clr-muted);
}

.pd-promo-card__label {
    font-size: .78rem;
    color: var(--clr-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.pd-promo-card__code-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0faf5;
    border: 2px dashed var(--clr-green);
    border-radius: var(--radius);
    padding: 12px 14px;
    margin-bottom: 20px;
}

.pd-promo-card__code {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--clr-dark);
}

.pd-promo-card__copy-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--clr-green);
    color: #fff;
    border-radius: 6px;
    padding: 7px 12px;
    font-size: .78rem;
    font-weight: 700;
    transition: background var(--trans);
    flex-shrink: 0;
}

.pd-promo-card__copy-btn:hover {
    background: var(--clr-green-h);
}

.pd-promo-card__bonus-info {
    margin-bottom: 20px;
}

.pd-promo-card__bonus-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--clr-border);
    font-size: .88rem;
    gap: 8px;
}

.pd-promo-card__bonus-row:last-child {
    border-bottom: none;
}

.pd-promo-card__bonus-label {
    color: var(--clr-muted);
}

.pd-promo-card__bonus-val {
    font-weight: 600;
    color: var(--clr-dark);
    text-align: right;
}

.pd-promo-card__note {
    font-size: .72rem;
    color: #aaa;
    margin-top: 12px;
    text-align: center;
}

/* ============================================================
   INFO TABLE
   ============================================================ */
.pd-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
}

.pd-info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden;
    font-size: .9rem;
}

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

.pd-info-table th {
    background: #f9f9f9;
    font-weight: 600;
    color: var(--clr-muted);
    white-space: nowrap;
    width: 200px;
    min-width: 160px;
}

.pd-info-table td {
    color: var(--clr-text);
}

.pd-info-table tr:last-child th,
.pd-info-table tr:last-child td {
    border-bottom: none;
}

.pd-info-table tr:hover td {
    background: #fafafa;
}

/* ============================================================
   TOURNAMENTS
   ============================================================ */
.pd-tournaments {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.pd-tournament-card {
    flex: 1;
    min-width: 260px;
    background: var(--clr-dark2);
    border: 1px solid #2a2a2a;
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform var(--trans), box-shadow var(--trans);
}

.pd-tournament-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 204, 113, .15);
}

.pd-tournament-card__badge {
    display: inline-block;
    background: rgba(46, 204, 113, .15);
    color: var(--clr-green);
    border: 1px solid rgba(46, 204, 113, .3);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 4px 10px;
    border-radius: 20px;
    width: fit-content;
}

.pd-tournament-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.pd-tournament-card__desc {
    font-size: .86rem;
    color: #aaa;
    line-height: 1.55;
    flex: 1;
}

.pd-tournament-card__prize {
    font-size: .9rem;
    color: #ddd;
}

.pd-tournament-card__prize strong {
    color: var(--clr-accent);
    font-size: 1.1rem;
}

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

.pd-tournament-card__timer-label {
    font-size: .78rem;
    color: #888;
}

.pd-countdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pd-countdown__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, .07);
    border-radius: 6px;
    padding: 4px 8px;
    min-width: 42px;
}

.pd-countdown__val {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.pd-countdown__unit {
    font-size: .65rem;
    color: #888;
}

.pd-countdown__sep {
    color: #555;
    font-weight: 700;
    font-size: 1rem;
}

/* ============================================================
   APP BLOCK
   ============================================================ */
.pd-app-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.pd-app-block__info {
    flex: 1;
    min-width: 280px;
}

.pd-app-block__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 240px;
    flex-shrink: 0;
}

.pd-app-block__cta-label {
    font-size: .8rem;
    color: var(--clr-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 4px;
    font-weight: 600;
}

.pd-app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-dark);
    color: #fff;
    border-radius: var(--radius);
    padding: 12px 16px;
    text-decoration: none;
    border: 1px solid #333;
    transition: background var(--trans), transform var(--trans);
}

.pd-app-btn:hover {
    background: #222;
    transform: translateY(-1px);
}

.pd-app-btn--apk {
    background: #1a3a1a;
    border-color: #2a5a2a;
}

.pd-app-btn--apk:hover {
    background: #1e4a1e;
}

.pd-app-btn__icon {
    color: var(--clr-green);
    flex-shrink: 0;
}

.pd-app-btn__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.pd-app-btn__text small {
    font-size: .7rem;
    color: #999;
}

/* ============================================================
   SLOT MINI-GAME
   ============================================================ */
.pd-slot {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pd-slot__reels {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, .05);
    border: 2px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.pd-slot__reel {
    width: 100px;
    height: 100px;
    background: #0d0d0d;
    border: 2px solid #2a2a2a;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-slot__reel-inner {
    transition: transform .1s;
}

.pd-slot__symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    font-size: 2.8rem;
    user-select: none;
}

.pd-slot__result {
    background: rgba(46, 204, 113, .1);
    border: 1px solid rgba(46, 204, 113, .3);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    width: 100%;
    animation: fadeInUp .3s ease;
}

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

.pd-slot__win-msg {
    font-size: 1.1rem;
    color: var(--clr-green);
    font-weight: 700;
    margin-bottom: 14px;
}

.pd-slot__claim-btn {
    margin: 0 auto;
}

.pd-slot__disclaimer {
    font-size: .75rem;
    color: #666;
    max-width: 380px;
    line-height: 1.5;
}

/* ============================================================
   FAQ
   ============================================================ */
.pd-faq {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pd-faq__item {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow var(--trans);
}

.pd-faq__item:hover {
    box-shadow: var(--shadow);
}

.pd-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    text-align: left;
    font-size: .95rem;
    font-weight: 600;
    color: var(--clr-text);
    background: none;
    transition: background var(--trans);
}

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

.pd-faq__icon {
    flex-shrink: 0;
    transition: transform var(--trans);
    color: var(--clr-muted);
}

.pd-faq__question[aria-expanded="true"] .pd-faq__icon {
    transform: rotate(180deg);
}

.pd-faq__answer {
    padding: 0 20px 18px;
    font-size: .9rem;
    color: var(--clr-muted);
    line-height: 1.7;
}

.pd-faq__answer p {
    margin-bottom: 8px;
}

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

/* ============================================================
   AUTHOR
   ============================================================ */
.pd-author {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
    padding: 24px;
    background: #f9f9f9;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
}

.pd-author__avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.pd-author__label {
    font-size: .72rem;
    color: var(--clr-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 4px;
}

.pd-author__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-dark);
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    transition: color var(--trans);
}

.pd-author__name:hover {
    color: var(--clr-green);
}

.pd-author__bio {
    font-size: .83rem;
    color: var(--clr-muted);
    line-height: 1.55;
}

/* ============================================================
   CONTENT BODY (голые теги без классов)
   ============================================================ */
.pd-content-body {
    max-width: 860px;
    margin: 0 auto;
    font-size: .96rem;
    line-height: 1.75;
    color: var(--clr-text);
}

.pd-content-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 32px 0 12px;
}

.pd-content-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 24px 0 10px;
}

.pd-content-body h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 18px 0 8px;
}

.pd-content-body p {
    margin-bottom: 16px;
}

.pd-content-body ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.pd-content-body ol {
    list-style: decimal;
    padding-left: 24px;
    margin-bottom: 16px;
}

.pd-content-body li {
    margin-bottom: 6px;
}

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

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

.pd-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: .88rem;
}

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

.pd-content-body table th {
    background: #f3f3f3;
    font-weight: 600;
}

.pd-content-body blockquote {
    border-left: 4px solid var(--clr-green);
    padding: 12px 20px;
    background: #f0faf5;
    margin: 20px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--clr-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.pd-footer {
    background: var(--clr-footer);
    color: #aaa;
    padding: 52px 0 24px;
}

.pd-footer__top {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 36px;
    border-bottom: 1px solid #1f1f1f;
    margin-bottom: 28px;
}

.pd-footer__col {
    flex: 1;
    min-width: 160px;
}

.pd-footer__col--brand {
    min-width: 220px;
}

.pd-footer__logo img {
    height: 36px;
    width: auto;
    margin-bottom: 14px;
}

.pd-footer__tagline {
    font-size: .8rem;
    color: #666;
    line-height: 1.55;
}

.pd-footer__col-title {
    color: #ddd;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
}

.pd-footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pd-footer__nav-link {
    color: #888;
    text-decoration: none;
    font-size: .85rem;
    transition: color var(--trans);
}

.pd-footer__nav-link:hover {
    color: #fff;
}

.pd-footer__section-label {
    color: #555;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 12px;
    font-weight: 700;
}

.pd-footer__payments, .pd-footer__providers {
    margin-bottom: 24px;
}

.pd-footer__payment-list,
.pd-footer__provider-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pd-pay-badge,
.pd-prov-badge {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #999;
    font-size: .75rem;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

.pd-footer__bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd-footer__responsible {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.pd-footer__age-badge {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
}

.pd-footer__legal {
    font-size: .78rem;
    color: #555;
    line-height: 1.55;
}

.pd-footer__copyright {
    font-size: .8rem;
    color: #444;
}

.pd-footer__disclaimer {
    font-size: .73rem;
    color: #3a3a3a;
    line-height: 1.5;
}

/* ============================================================
   STICKY WIDGET
   ============================================================ */
.pd-sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(90deg, #111 0%, #1a1a1a 100%);
    border-top: 2px solid var(--clr-green);
    padding: 10px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .4);
    transform: translateY(0);
    transition: transform var(--trans);
}

.pd-sticky-widget.is-hidden {
    transform: translateY(110%);
}

.pd-sticky-widget__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pd-sticky-widget__text {
    flex: 1;
    min-width: 180px;
}

.pd-sticky-widget__title {
    color: #fff;
    font-size: .9rem;
    display: block;
    margin-bottom: 2px;
}

.pd-sticky-widget__sub {
    font-size: .78rem;
    color: #aaa;
}

.xf9b1 {
    color: var(--clr-green);
}

.pd-sticky-widget__cta {
    flex-shrink: 0;
}

.pd-sticky-widget__close {
    background: none;
    border: none;
    color: #555;
    font-size: 1.4rem;
    line-height: 1;
    padding: 4px;
    cursor: pointer;
    flex-shrink: 0;
    transition: color var(--trans);
}

.pd-sticky-widget__close:hover {
    color: #fff;
}

/* ============================================================
   WP-LIKE (обфускация — hidden, no render impact)
   ============================================================ */
.wp-site-blocks {
    display: none !important;
}

#wpadminbar {
    display: none !important;
}

.wp-footer-markup {
    display: none !important;
}

/* Unused styles (уникализация) */
.xbv7n3 {
    color: transparent;
}

.m2q9w {
    border-color: transparent;
}

.zt4p8k {
    opacity: 0;
    pointer-events: none;
}

.ent-widget-19f {
    display: none;
}

.yoast-schema-tag-v2 {
    visibility: hidden;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .pd-hero__inner {
        flex-direction: column;
    }

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

    .pd-app-block {
        flex-direction: column;
    }

    .pd-app-block__buttons {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .pd-app-btn {
        flex: 1;
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .pd-section {
        padding: 44px 0;
    }

    .pd-section__title {
        font-size: 1.4rem;
    }

    .pd-header__nav {
        display: none;
    }

    .pd-header__online {
        display: none;
    }

    .pd-burger {
        display: flex;
    }

    .pd-header__right {
        gap: 8px;
    }

    .pd-header__buttons {
        gap: 6px;
    }

    .pd-btn {
        padding: 9px 14px;
        font-size: .82rem;
    }

    .pd-hero {
        min-height: auto;
        padding: 40px 0;
    }

    .pd-tournaments {
        flex-direction: column;
    }

    .pd-slot__reel {
        width: 80px;
        height: 80px;
    }

    .pd-slot__symbol {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }

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

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

@media (max-width: 480px) {
    .pd-header__inner {
        height: 56px;
        padding: 0 16px;
    }

    .pd-promo-card {
        padding: 20px 16px;
    }

    .pd-info-table th {
        width: 120px;
        min-width: 100px;
    }

    .pd-sticky-widget__inner {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .pd-sticky-widget__text {
        min-width: 0;
    }

    .pd-sticky-widget__sub {
        display: none;
    }
}

.jdghtd {
    max-width: 980px;
    margin: 40px auto;
    padding: 40px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    color: #1f2937;
    font-family: Helvetica, Arial, sans-serif;
    line-height: 1.75;
}

.jdghtd h1,
.jdghtd h2,
.jdghtd h3 {
    color: #0f172a;
    line-height: 1.2;
    font-weight: 800;
}

.jdghtd h1 {
    margin: 0 0 24px;
    font-size: 42px;
    letter-spacing: -0.02em;
}

.jdghtd h2 {
    margin: 40px 0 18px;
    font-size: 28px;
}

.jdghtd h3 {
    margin: 28px 0 14px;
    font-size: 22px;
}

.jdghtd p {
    margin: 0 0 18px;
    font-size: 17px;
    color: #334155;
}

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

.jdghtd li {
    margin-bottom: 12px;
    font-size: 17px;
    color: #334155;
}

.jdghtd ul li::marker,
.jdghtd ol li::marker {
    color: #16a34a;
    font-weight: 700;
}

.jdghtd a {
    color: #0f766e;
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-word;
    transition: color 0.2s ease;
}

.jdghtd a:hover {
    color: #115e59;
}

.jdghtd strong {
    color: #0f172a;
    font-weight: 700;
}

.jdghtd table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    display: table;
}

.jdghtd th {
    padding: 16px 18px;
    background: #0f172a;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    border: 1px solid #1e293b;
}

.jdghtd td {
    padding: 16px 18px;
    font-size: 15px;
    color: #334155;
    border: 1px solid #e5e7eb;
    vertical-align: top;
}

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

.jdghtd dl {
    margin: 0 0 24px;
}

.jdghtd dt {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.jdghtd dd {
    margin: 0 0 18px;
    color: #334155;
    font-size: 17px;
}

.jdghtd h1 + p {
    font-size: 18px;
    color: #1e293b;
}

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

@media (max-width: 991px) {
    .jdghtd {
        margin: 24px auto;
        padding: 32px 24px;
        border-radius: 22px;
    }

    .jdghtd h1 {
        font-size: 34px;
    }

    .jdghtd h2 {
        margin-top: 34px;
        font-size: 25px;
    }

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

    .jdghtd p,
    .jdghtd li,
    .jdghtd dd {
        font-size: 16px;
    }

    .jdghtd dt {
        font-size: 17px;
    }

    .jdghtd th,
    .jdghtd td {
        padding: 14px 16px;
        font-size: 14px;
    }

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

@media (max-width: 767px) {
    .jdghtd {
        margin: 16px auto;
        padding: 24px 18px;
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    }

    .jdghtd h1 {
        margin-bottom: 18px;
        font-size: 28px;
        line-height: 1.2;
    }

    .jdghtd h2 {
        margin: 28px 0 14px;
        font-size: 22px;
        line-height: 1.25;
    }

    .jdghtd h3 {
        margin: 22px 0 12px;
        font-size: 18px;
    }

    .jdghtd p {
        margin-bottom: 16px;
        font-size: 15px;
        line-height: 1.7;
    }

    .jdghtd li,
    .jdghtd dd {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .jdghtd dt {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .jdghtd ul,
    .jdghtd ol {
        margin-bottom: 20px;
        padding-left: 20px;
    }

    .jdghtd h1 + p {
        font-size: 16px;
    }

    .jdghtd table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 14px;
    }

    .jdghtd th,
    .jdghtd td {
        padding: 12px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .jdghtd {
        padding: 20px 14px;
        border-radius: 16px;
    }

    .jdghtd h1 {
        font-size: 24px;
        line-height: 1.25;
    }

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

    .jdghtd h3 {
        font-size: 17px;
    }

    .jdghtd p,
    .jdghtd li,
    .jdghtd dd {
        font-size: 14px;
        line-height: 1.65;
    }

    .jdghtd dt {
        font-size: 15px;
    }

    .jdghtd ul,
    .jdghtd ol {
        padding-left: 18px;
    }

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

    .jdghtd h1 + p {
        font-size: 15px;
    }
}