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

:root {
    --pk-primary: #0c4361;
    --pk-bg: #19918f;
    --pk-btn-play: #0756d0;
    --pk-btn-bonus: #b41c0a;
    --pk-white: #ffffff;
    --pk-light: #e8f4f8;
    --pk-card: rgba(255, 255, 255, 0.08);
    --pk-card-solid: #ffffff;
    --pk-text: #ffffff;
    --pk-text-dark: #1a2a38;
    --pk-gold: #f5c518;
    --pk-green: #22c55e;
    --pk-red: #ef4444;
    --pk-radius: 12px;
    --pk-radius-lg: 20px;
    --pk-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    --pk-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.28);
    --pk-transition: 0.25s cubic-bezier(.4, 0, .2, 1);
}

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

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

body {
    font-family: 'Nunito', sans-serif;
    background: var(--pk-bg);
    color: var(--pk-text);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.pk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.pk-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== HEADER ===== */
.pk-header {
    background: var(--pk-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--pk-shadow);
}

.pk-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    gap: 12px;
    flex-wrap: wrap;
}

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

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

.pk-header__logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--pk-white);
    letter-spacing: -0.5px;
}

.pk-header__logo-text span {
    color: var(--pk-gold);
}

.pk-header__nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}

.pk-header__nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    transition: background var(--pk-transition), color var(--pk-transition);
    white-space: nowrap;
}

.pk-header__nav a:hover, .pk-header__nav a.active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--pk-white);
}

.pk-header__nav svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

.pk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform var(--pk-transition), box-shadow var(--pk-transition), filter var(--pk-transition);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
}

.pk-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.pk-btn--play {
    background: var(--pk-btn-play);
    color: var(--pk-white);
}

.pk-btn--bonus {
    background: var(--pk-btn-bonus);
    color: var(--pk-white);
}

.pk-btn--sm {
    padding: 7px 14px;
    font-size: 0.82rem;
}

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

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

.pk-btn--review {
    background: var(--pk-btn-play);
    color: var(--pk-white);
    width: 100%;
    justify-content: center;
    padding: 12px;
}

/* Winner Ticker */
.pk-winner-ticker {
    background: rgba(0, 0, 0, 0.25);
    padding: 5px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.pk-winner-ticker__label {
    font-weight: 700;
    color: var(--pk-gold);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pk-winner-ticker__text {
    white-space: nowrap;
    animation: pk-ticker-slide 0.5s ease;
}

@keyframes pk-ticker-slide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.pk-burger__line {
    width: 24px;
    height: 2px;
    background: var(--pk-white);
    border-radius: 2px;
    transition: transform var(--pk-transition), opacity var(--pk-transition);
}

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

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

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

.pk-mobile-menu {
    display: none;
    background: var(--pk-primary);
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pk-mobile-menu.open {
    display: block;
}

.pk-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.pk-mobile-menu__nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    transition: background var(--pk-transition);
}

.pk-mobile-menu__nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.pk-mobile-menu__nav svg {
    width: 18px;
    height: 18px;
}

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

.pk-mobile-menu__btns .pk-btn {
    flex: 1;
    justify-content: center;
}

/* ===== HERO ===== */
.pk-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--pk-primary);
}

.pk-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/plinko-b.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.6);
    z-index: 0;
}

.pk-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 67, 97, 0.85) 0%, rgba(25, 145, 143, 0.4) 100%);
    z-index: 1;
}

.pk-hero__content {
    position: relative;
    z-index: 2;
    padding: 60px 16px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.pk-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 197, 24, 0.2);
    border: 1px solid var(--pk-gold);
    color: var(--pk-gold);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pk-hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.pk-hero__title span {
    color: var(--pk-gold);
}

.pk-hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.pk-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 36px;
}

.pk-hero__rating {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pk-hero__rating-stars {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pk-hero__rating-stars svg {
    fill: var(--pk-gold);
}

.pk-hero__rating-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.pk-hero__rating-text strong {
    color: var(--pk-white);
    font-size: 1.05rem;
}

.pk-hero__rating-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* ===== MAIN CONTENT ===== */
.pk-main {
    flex: 1;
    padding: 40px 0;
}

.pk-section {
    margin-bottom: 48px;
}

.pk-section__title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--pk-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pk-section__title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 28px;
    background: var(--pk-gold);
    border-radius: 2px;
    flex-shrink: 0;
}

.pk-section__subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 28px;
}

/* ===== CASINO RATING ===== */
.pk-casino-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pk-casino-card {
    background: var(--pk-card-solid);
    border-radius: var(--pk-radius-lg);
    box-shadow: var(--pk-shadow);
    padding: 20px;
    color: var(--pk-text-dark);
    transition: transform var(--pk-transition), box-shadow var(--pk-transition);
    position: relative;
    overflow: hidden;
}

.pk-casino-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--pk-shadow-lg);
}

.pk-casino-card--top {
    border: 2px solid var(--pk-gold);
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.pk-casino-card__rank {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--pk-primary);
    color: var(--pk-white);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-bottom-right-radius: 10px;
}

.pk-casino-card--top .pk-casino-card__rank {
    background: var(--pk-gold);
    color: var(--pk-text-dark);
}

.pk-casino-card__top3 {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--pk-gold);
    color: var(--pk-text-dark);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-bottom-left-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pk-casino-card__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 24px;
}

.pk-casino-card__logo-wrap {
    flex-shrink: 0;
    width: 90px;
    text-align: center;
}

.pk-casino-card__logo {
    width: 80px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    background: #f0f4f8;
    padding: 4px;
}

.pk-casino-card__flag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: #666;
    margin-top: 5px;
}

.pk-casino-card__flag svg {
    width: 16px;
    height: 12px;
}

.pk-casino-card__info {
    flex: 1;
    min-width: 200px;
}

.pk-casino-card__name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pk-primary);
    margin-bottom: 4px;
}

.pk-casino-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.pk-casino-card__stars {
    display: flex;
    gap: 2px;
}

.pk-casino-card__stars svg {
    fill: var(--pk-gold);
    width: 14px;
    height: 14px;
}

.pk-casino-card__score {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--pk-primary);
}

.pk-casino-card__bonus {
    background: linear-gradient(90deg, #0756d0, #19918f);
    color: var(--pk-white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.pk-casino-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.78rem;
    color: #555;
}

.pk-casino-card__meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pk-casino-card__meta-item svg {
    width: 13px;
    height: 13px;
    color: var(--pk-primary);
}

.pk-casino-card__tc {
    font-size: 0.7rem;
    color: #999;
    margin-top: 6px;
}

.pk-casino-card__tc a {
    text-decoration: underline;
    color: var(--pk-btn-play);
}

.pk-casino-card__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    min-width: 130px;
}

.pk-casino-card__actions .pk-btn {
    width: 100%;
    justify-content: center;
}

.pk-pagination {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.pk-load-more {
    background: var(--pk-primary);
    color: var(--pk-white);
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform var(--pk-transition), filter var(--pk-transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pk-load-more:hover {
    transform: translateY(-2px);
    filter: brightness(1.15);
}

.pk-load-more.hidden {
    display: none;
}

/* ===== PROS CONS ===== */
.pk-proscons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pk-proscons__col {
    background: var(--pk-card-solid);
    border-radius: var(--pk-radius-lg);
    padding: 24px;
    color: var(--pk-text-dark);
}

.pk-proscons__col--pros {
    border-top: 4px solid var(--pk-green);
}

.pk-proscons__col--cons {
    border-top: 4px solid var(--pk-red);
}

.pk-proscons__title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pk-proscons__col--pros .pk-proscons__title {
    color: #16a34a;
}

.pk-proscons__col--cons .pk-proscons__title {
    color: #dc2626;
}

.pk-proscons__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
    line-height: 1.5;
    color: #374151;
}

.pk-proscons__list li:last-child {
    border-bottom: none;
}

.pk-proscons__list li::before {
    flex-shrink: 0;
    margin-top: 2px;
}

.pk-proscons__col--pros .pk-proscons__list li::before {
    content: '✓';
    color: var(--pk-green);
    font-weight: 800;
}

.pk-proscons__col--cons .pk-proscons__list li::before {
    content: '✗';
    color: var(--pk-red);
    font-weight: 800;
}

/* ===== ADVANTAGES ===== */
.pk-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.pk-adv-tile {
    background: var(--pk-card-solid);
    border-radius: var(--pk-radius-lg);
    padding: 24px 18px;
    text-align: center;
    color: var(--pk-text-dark);
    transition: transform var(--pk-transition), box-shadow var(--pk-transition);
    box-shadow: var(--pk-shadow);
}

.pk-adv-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--pk-shadow-lg);
}

.pk-adv-tile__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--pk-btn-play), var(--pk-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.pk-adv-tile__icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.pk-adv-tile__title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--pk-primary);
    margin-bottom: 6px;
}

.pk-adv-tile__desc {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.5;
}

/* ===== REVIEWS ===== */
.pk-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 36px;
}

.pk-review-card {
    background: var(--pk-card-solid);
    border-radius: var(--pk-radius-lg);
    padding: 20px;
    color: var(--pk-text-dark);
    box-shadow: var(--pk-shadow);
}

.pk-review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pk-review-card__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--pk-primary), var(--pk-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    overflow: hidden;
}

.pk-review-card__name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pk-primary);
}

.pk-review-card__date {
    font-size: 0.75rem;
    color: #9ca3af;
}

.pk-review-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.pk-review-card__stars svg {
    fill: var(--pk-gold);
    width: 14px;
    height: 14px;
}

.pk-review-card__text {
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.6;
}

/* Review Form */
.pk-review-form {
    background: var(--pk-card-solid);
    border-radius: var(--pk-radius-lg);
    padding: 28px;
    color: var(--pk-text-dark);
    box-shadow: var(--pk-shadow);
    max-width: 560px;
}

.pk-review-form__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--pk-primary);
    margin-bottom: 20px;
}

.pk-form-field {
    margin-bottom: 16px;
}

.pk-form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 6px;
}

.pk-form-input, .pk-form-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: var(--pk-text-dark);
    background: #f9fafb;
    transition: border-color var(--pk-transition), box-shadow var(--pk-transition);
    outline: none;
}

.pk-form-input:focus, .pk-form-textarea:focus {
    border-color: var(--pk-btn-play);
    box-shadow: 0 0 0 3px rgba(7, 86, 208, 0.12);
    background: #fff;
}

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

.pk-form-success {
    display: none;
    background: #dcfce7;
    border: 1px solid #22c55e;
    color: #166534;
    padding: 14px 18px;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 14px;
}

.pk-form-success.visible {
    display: block;
}

/* ===== CONTENT BLOCK ===== */
.pk-content-block {
    background: var(--pk-card-solid);
    border-radius: var(--pk-radius-lg);
    padding: 32px;
    color: var(--pk-text-dark);
    box-shadow: var(--pk-shadow);
    line-height: 1.8;
}

.pk-content-block h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pk-primary);
    margin: 24px 0 12px;
}

.pk-content-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pk-primary);
    margin: 20px 0 10px;
}

.pk-content-block h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 16px 0 8px;
}

.pk-content-block p {
    margin-bottom: 14px;
    color: #374151;
}

.pk-content-block a {
    color: var(--pk-btn-play);
    text-decoration: underline;
}

.pk-content-block ul, .pk-content-block ol {
    padding-left: 24px;
    margin-bottom: 14px;
}

.pk-content-block li {
    margin-bottom: 6px;
    color: #374151;
}

.pk-content-block ul li {
    list-style: disc;
}

.pk-content-block ol li {
    list-style: decimal;
}

.pk-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
}

.pk-content-block table th, .pk-content-block table td {
    padding: 10px 14px;
    border: 1.5px solid #d1d5db;
    text-align: left;
    font-size: 0.9rem;
}

.pk-content-block table th {
    background: var(--pk-primary);
    color: white;
    font-weight: 700;
}

.pk-content-block table tr:nth-child(even) td {
    background: #f9fafb;
}

.pk-content-block blockquote {
    border-left: 4px solid var(--pk-btn-play);
    background: #f0f6ff;
    padding: 14px 18px;
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
    color: #1e3a5f;
    font-style: italic;
}

.pk-content-block img {
    border-radius: 8px;
    margin: 16px 0;
}

.pk-content-block hr {
    border: none;
    border-top: 1.5px solid #e5e7eb;
    margin: 24px 0;
}

/* ===== AUTHOR ===== */
.pk-author {
    background: var(--pk-card-solid);
    border-radius: var(--pk-radius-lg);
    padding: 28px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    color: var(--pk-text-dark);
    box-shadow: var(--pk-shadow);
    flex-wrap: wrap;
}

.pk-author__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--pk-primary);
    background: linear-gradient(135deg, #0c4361, #19918f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 800;
}

.pk-author__info {
    flex: 1;
    min-width: 220px;
}

.pk-author__name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--pk-primary);
    margin-bottom: 4px;
}

.pk-author__title {
    font-size: 0.88rem;
    color: #6b7280;
    margin-bottom: 10px;
    font-weight: 600;
}

.pk-author__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.pk-author__meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: #555;
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 20px;
}

.pk-author__meta-item svg {
    width: 14px;
    height: 14px;
}

.pk-author__bio {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.65;
    margin-bottom: 14px;
}

.pk-author__socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pk-author__social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    background: var(--pk-primary);
    color: var(--pk-white);
    transition: filter var(--pk-transition);
}

.pk-author__social-link:hover {
    filter: brightness(1.2);
}

.pk-author__social-link svg {
    width: 16px;
    height: 16px;
}

.pk-author__dates {
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 10px;
}

/* ===== FOOTER ===== */
.pk-footer {
    background: var(--pk-primary);
    padding: 48px 0 0;
    margin-top: auto;
}

.pk-footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.pk-footer__brand {
}

.pk-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.pk-footer__logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.pk-footer__logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pk-white);
}

.pk-footer__logo-text span {
    color: var(--pk-gold);
}

.pk-footer__desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 16px;
}

.pk-footer__email {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.pk-footer__email svg {
    width: 16px;
    height: 16px;
}

.pk-footer__col-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pk-white);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.pk-footer__nav a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--pk-transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.pk-footer__socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.pk-footer__social {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pk-white);
    transition: background var(--pk-transition);
}

.pk-footer__social:hover {
    background: rgba(255, 255, 255, 0.22);
}

.pk-footer__social svg {
    width: 18px;
    height: 18px;
}

.pk-footer__payments {
    margin-bottom: 28px;
}

.pk-footer__payments-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.pk-footer__payment-logo {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.pk-footer__trust {
    margin-bottom: 28px;
}

.pk-footer__trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.pk-footer__trust-logo {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 5px;
}

.pk-footer__bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 20px 0;
}

.pk-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.pk-footer__legal {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 720px;
}

.pk-footer__copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.pk-footer__flag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== STICKY WIDGET ===== */
.pk-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    background: var(--pk-primary);
    border-radius: var(--pk-radius-lg);
    padding: 14px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 280px;
    animation: pk-widget-in 0.5s 1s both;
}

@keyframes pk-widget-in {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pk-widget__close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #b41c0a;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.pk-widget__logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    flex-shrink: 0;
}

.pk-widget__text {
    flex: 1;
}

.pk-widget__name {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--pk-white);
}

.pk-widget__bonus {
    font-size: 0.75rem;
    color: var(--pk-gold);
    font-weight: 700;
    margin-bottom: 6px;
}

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

.pk-faq__item {
    background: var(--pk-card-solid);
    border-radius: var(--pk-radius);
    overflow: hidden;
    color: var(--pk-text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pk-faq__q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 16px 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pk-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.pk-faq__q svg {
    flex-shrink: 0;
    transition: transform var(--pk-transition);
}

.pk-faq__item.open .pk-faq__q svg {
    transform: rotate(180deg);
}

.pk-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    font-size: 0.9rem;
    color: #374151;
    padding: 0 20px;
    line-height: 1.7;
}

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

/* ===== GAME INFO TABLE ===== */
.pk-game-info {
    background: var(--pk-card-solid);
    border-radius: var(--pk-radius-lg);
    overflow: hidden;
    color: var(--pk-text-dark);
    box-shadow: var(--pk-shadow);
}

.pk-game-info table {
    width: 100%;
    border-collapse: collapse;
}

.pk-game-info table tr {
    border-bottom: 1px solid #e5e7eb;
}

.pk-game-info table tr:last-child {
    border-bottom: none;
}

.pk-game-info table td {
    padding: 12px 18px;
    font-size: 0.88rem;
}

.pk-game-info table td:first-child {
    font-weight: 700;
    color: #374151;
    background: #f9fafb;
    width: 40%;
}

.pk-game-info table td:last-child {
    color: #1f2937;
}

/* ===== BREADCRUMB ===== */
.pk-breadcrumb {
    padding: 14px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pk-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--pk-transition);
}

.pk-breadcrumb a:hover {
    color: var(--pk-white);
}

.pk-breadcrumb span {
    opacity: 0.5;
}

/* ===== UTILITIES ===== */
.pk-text-gold {
    color: var(--pk-gold);
}

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

.pk-mb-8 {
    margin-bottom: 8px;
}

.pk-mb-16 {
    margin-bottom: 16px;
}

.pk-mb-24 {
    margin-bottom: 24px;
}

.pk-mt-8 {
    margin-top: 8px;
}

.pk-mt-16 {
    margin-top: 16px;
}

/* ===== INFO PAGE ===== */
.pk-info-page {
    background: var(--pk-card-solid);
    border-radius: var(--pk-radius-lg);
    padding: 40px;
    color: var(--pk-text-dark);
    box-shadow: var(--pk-shadow);
    line-height: 1.8;
}

.pk-info-page h1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--pk-primary);
    margin-bottom: 8px;
}

.pk-info-page h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--pk-primary);
    margin: 28px 0 12px;
}

.pk-info-page h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 20px 0 8px;
}

.pk-info-page p {
    margin-bottom: 14px;
    color: #374151;
}

.pk-info-page a {
    color: var(--pk-btn-play);
    text-decoration: underline;
}

.pk-info-page ul, .pk-info-page ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.pk-info-page li {
    margin-bottom: 6px;
    color: #374151;
}

.pk-info-page ul li {
    list-style: disc;
}

.pk-info-page ol li {
    list-style: decimal;
}

/* Unused but real styles for uniqueness */
.pk-g3r7b {
    display: none;
    background: #4a0c8f;
}

.pk-z9m2x {
    visibility: hidden;
    opacity: 0;
}

.elementor-widget-wrap {
    position: relative;
}

.wp-block-group {
    box-sizing: border-box;
}

.is-layout-flex {
    display: flex;
}

.entry-content {
    width: 100%;
}

.site-header {
    position: relative;
}

.wp-site-blocks {
    padding-top: var(--wp--style--root--padding-top);
}

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

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

    .pk-burger {
        display: flex;
    }

    .pk-header__inner {
        flex-wrap: nowrap;
    }

    .pk-hero {
        min-height: 360px;
    }

    .pk-hero__content {
        padding: 40px 16px;
    }

    .pk-proscons {
        grid-template-columns: 1fr;
    }

    .pk-casino-card__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .pk-casino-card__actions {
        flex-direction: row;
        width: 100%;
    }

    .pk-casino-card__actions .pk-btn {
        flex: 1;
    }

    .pk-footer__top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pk-author {
        flex-direction: column;
    }

    .pk-widget {
        bottom: 16px;
        right: 16px;
        max-width: 240px;
    }

    .pk-advantages {
        grid-template-columns: repeat(2, 1fr);
    }

    .pk-info-page {
        padding: 24px;
    }

    .pk-content-block {
        padding: 20px;
    }
}

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

    .pk-advantages {
        grid-template-columns: 1fr;
    }

    .pk-hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .pk-mobile-menu__btns {
        flex-direction: column;
    }

    .pk-mobile-menu__btns .pk-btn {
        width: 100%;
    }

    .pk-footer__bottom-inner {
        flex-direction: column;
    }
}
