/* ============================================
   REVIEW PAGE STYLES
   ============================================ */

/* Breadcrumbs */
.breadcrumbs {
    position: relative;
    z-index: 1;
    padding: 100px 0 20px;
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-secondary);
}

.breadcrumbs a:hover {
    color: var(--gold-primary);
}

.breadcrumbs li:last-child {
    color: var(--gold-primary);
}

/* Review Hero */
.review-hero {
    position: relative;
    z-index: 1;
    padding: 40px 0 60px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    overflow: hidden;
}

.review-hero.is-featured {
    background: linear-gradient(180deg, #fff8e1 0%, var(--bg-secondary) 100%);
    box-shadow: inset 0 -2px 0 var(--gold-primary, #d4af37);
}

.review-hero-ribbon {
    position: absolute;
    top: 38px;
    right: -68px;
    width: 240px;
    background: linear-gradient(135deg, #d4af37 0%, #f7d774 100%);
    color: #1a1a1a;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    transform-origin: center center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    z-index: 10;
    text-align: center;
    line-height: 1.2;
}

/* Общие стили wysiwyg-блоков обзора (вступление, доп. описание игр/промо) */
.intro-text,
.games-extra-text,
.promotions-extra-text {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-primary);
}
.intro-text { margin-top: 0; }
.games-extra-text,
.promotions-extra-text { margin-top: 18px; }

.intro-text h3,
.games-extra-text h3,
.promotions-extra-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 24px 0 12px;
    color: var(--text-primary);
}

.intro-text p,
.games-extra-text p,
.promotions-extra-text p {
    margin: 0 0 12px;
}

.intro-text ul,
.games-extra-text ul,
.promotions-extra-text ul {
    list-style: disc;
    padding-left: 22px;
    margin: 12px 0 16px;
}
.intro-text ol,
.games-extra-text ol,
.promotions-extra-text ol {
    list-style: decimal;
    padding-left: 22px;
    margin: 12px 0 16px;
}
.intro-text ul li,
.intro-text ol li,
.games-extra-text ul li,
.games-extra-text ol li,
.promotions-extra-text ul li,
.promotions-extra-text ol li {
    margin: 6px 0;
    line-height: 1.55;
}
.intro-text ul li::marker,
.games-extra-text ul li::marker,
.promotions-extra-text ul li::marker {
    color: var(--gold-primary);
}

/* === Таблицы внутри обзора (вступление / игры / промо) === */
.intro-text table,
.games-extra-text table,
.promotions-extra-text table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 22px 0;
    background: var(--bg-card);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--beige-dark);
    font-size: 14.5px;
}

.intro-text thead,
.games-extra-text thead,
.promotions-extra-text thead {
    background: var(--gold-gradient);
}

.intro-text thead th,
.games-extra-text thead th,
.promotions-extra-text thead th {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 12.5px;
    padding: 14px 18px;
    text-align: left;
    border: none;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.intro-text tbody td,
.intro-text tbody th,
.games-extra-text tbody td,
.games-extra-text tbody th,
.promotions-extra-text tbody td,
.promotions-extra-text tbody th {
    padding: 13px 18px;
    border: none;
    border-top: 1px solid var(--beige-medium);
    text-align: left;
    line-height: 1.55;
    color: var(--text-primary);
    vertical-align: top;
    background: transparent;
}

/* Если есть th в первой колонке (например «Поziom», «Dokument») */
.intro-text tbody tr > th:first-child,
.games-extra-text tbody tr > th:first-child,
.promotions-extra-text tbody tr > th:first-child,
.intro-text tbody tr > td:first-child,
.games-extra-text tbody tr > td:first-child,
.promotions-extra-text tbody tr > td:first-child {
    font-weight: 600;
    color: var(--gold-dark);
}

.intro-text tbody tr:first-child td,
.intro-text tbody tr:first-child th,
.games-extra-text tbody tr:first-child td,
.games-extra-text tbody tr:first-child th,
.promotions-extra-text tbody tr:first-child td,
.promotions-extra-text tbody tr:first-child th {
    border-top: none;
}

.intro-text tbody tr:nth-child(even),
.games-extra-text tbody tr:nth-child(even),
.promotions-extra-text tbody tr:nth-child(even) {
    background: var(--beige-light);
}

.intro-text tbody tr:hover,
.games-extra-text tbody tr:hover,
.promotions-extra-text tbody tr:hover {
    background: rgba(139, 41, 66, 0.04);
}

/* На таблицах без thead (только tbody) — первую строку оформляем как заголовок */
.intro-text table:not(:has(thead)) tbody tr:first-child,
.games-extra-text table:not(:has(thead)) tbody tr:first-child,
.promotions-extra-text table:not(:has(thead)) tbody tr:first-child {
    background: var(--gold-gradient);
}
.intro-text table:not(:has(thead)) tbody tr:first-child td,
.intro-text table:not(:has(thead)) tbody tr:first-child th,
.games-extra-text table:not(:has(thead)) tbody tr:first-child td,
.games-extra-text table:not(:has(thead)) tbody tr:first-child th,
.promotions-extra-text table:not(:has(thead)) tbody tr:first-child td,
.promotions-extra-text table:not(:has(thead)) tbody tr:first-child th {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 12.5px;
    border-top: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* Адаптив для узких экранов */
@media (max-width: 640px) {
    .intro-text table,
    .games-extra-text table,
    .promotions-extra-text table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        font-size: 13.5px;
    }
    .intro-text thead th,
    .games-extra-text thead th,
    .promotions-extra-text thead th,
    .intro-text tbody td,
    .games-extra-text tbody td,
    .promotions-extra-text tbody td {
        padding: 11px 14px;
        white-space: nowrap;
    }
}

.review-hero-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
}

.review-hero-left {
    text-align: center;
}

.casino-logo-large {
    margin: 0 auto 20px;
    width: 180px;
    height: 180px;
    min-width: 180px;
    min-height: 180px;
    max-width: 180px;
    max-height: 180px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.casino-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.logo-placeholder-large {
    width: 180px;
    height: 180px;
    background: var(--gold-button);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #000;
    box-shadow: 
        0 0 40px rgba(245, 184, 0, 0.3),
        0 8px 30px rgba(245, 184, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.logo-placeholder-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.update-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.review-badges-top {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    max-width: 100%;
}

.review-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    margin-bottom: 12px;
}

.review-title .year {
    font-size: 0.5em;
    padding: 4px 12px;
    background: var(--gold-gradient);
    color: var(--bg-primary);
    border-radius: var(--radius-sm);
    vertical-align: middle;
}

.review-tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.review-rating-large {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rating-score {
    display: flex;
    align-items: baseline;
}

.score-number {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--gold-primary);
}

.score-max {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.rating-stars-large {
    display: flex;
    gap: 4px;
    font-size: 1.5rem;
}

.rating-label {
    padding: 6px 16px;
    background: rgba(0, 208, 132, 0.1);
    border: 1px solid rgba(0, 208, 132, 0.3);
    border-radius: var(--radius-xl);
    color: var(--accent-green);
    font-weight: 600;
}

/* Hero Bonus Card */
.hero-bonus-card {
    padding: 32px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 2px solid rgba(224, 136, 167, 0.3);
    border-radius: var(--radius-lg);
    text-align: center;
    min-width: 280px;
    box-shadow: 0 0 50px rgba(224, 136, 167, 0.15), var(--shadow-elevated);
    position: relative;
    overflow: hidden;
}

.hero-bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(224, 136, 167, 0.7), transparent);
}

.hbc-label {
    display: block;
    font-size: 0.75rem;
    color: #e088a7;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 12px;
}

.hbc-value {
    margin-bottom: 8px;
}

.hbc-percent {
    display: block;
    font-size: 2.6rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: #e088a7;
    line-height: 1;
    text-shadow: 0 0 20px rgba(224, 136, 167, 0.3);
}

.hbc-amount {
    display: block;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.hbc-extra {
    padding: 10px 20px;
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.4);
    border-radius: var(--radius-full);
    color: #6ee7b7;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: inline-block;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    width: 100%;
    margin-bottom: 12px;
    font-weight: 700;
}

.hbc-wager {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Quick Facts */
.quick-facts {
    position: relative;
    z-index: 1;
    padding: 30px 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fact-icon {
    font-size: 1.5rem;
}

.fact-content {
    display: flex;
    flex-direction: column;
}

.fact-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.fact-value {
    font-weight: 600;
}

.fact-value.highlight {
    color: var(--accent-green);
}

/* Table of Contents - Sticky */
.toc-sticky {
    position: sticky;
    top: 70px;
    z-index: 100;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 0;
}

.toc-sticky::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 184, 0, 0.2), transparent);
}

.toc-menu {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.toc-link {
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.toc-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.toc-link.active {
    background: var(--gold-button);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(245, 184, 0, 0.3);
}

/* Review Content Layout */
.review-content {
    position: relative;
    z-index: 1;
    padding: 60px 0 0 0;
}

.review-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

/* Review Main */
.review-main {
    min-width: 0;
}

.review-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.review-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
}

.heading-icon {
    font-size: 1.5rem;
}

.content-block {
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-block p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.content-block h3 {
    font-size: 1.1rem;
    margin: 30px 0 20px;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
}

.intro-text {
    font-size: 1.15rem;
    color: var(--text-primary) !important;
}

/* Highlight Box */
.highlight-box {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.08) 0%, rgba(245, 184, 0, 0.02) 100%);
    border-left: 3px solid var(--gold-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold-button);
    box-shadow: 0 0 15px rgba(245, 184, 0, 0.5);
}

.hb-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hb-content {
    color: var(--text-secondary);
}

.hb-content strong {
    display: block;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-weight: 700;
}

/* Bonus Breakdown */
.bonus-breakdown {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 30px 0;
}

.bb-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bb-step {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-primary);
    flex-shrink: 0;
}

.bb-content strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.bb-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Wager Info */
.wager-info {
    padding: 24px;
    background: rgba(255, 71, 87, 0.05);
    border: 1px solid rgba(255, 71, 87, 0.2);
    border-radius: var(--radius-md);
    margin: 30px 0;
}

.wager-info h4 {
    color: var(--accent-red);
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
}

.wager-info ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wager-info li {
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.wager-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-red);
}

/* Promo Grid */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.promo-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-medium);
}

.promo-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.promo-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.promo-card h4 {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.promo-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Games Stats */
.games-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.gs-item {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    text-align: center;
}

.gs-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--gold-primary);
    margin-bottom: 4px;
}

.gs-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Providers Grid */
.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.provider-tag {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.provider-tag.more {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--gold-primary);
}

/* Popular Games */
.popular-games {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.pg-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.pg-icon {
    font-size: 1.5rem;
}

.pg-info {
    flex: 1;
}

.pg-name {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.pg-provider {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pg-rtp {
    padding: 6px 12px;
    background: rgba(0, 208, 132, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--accent-green);
    font-weight: 600;
}

/* Payment Table */
.payment-table {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 30px 0;
}

.pt-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(212, 175, 55, 0.1);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gold-primary);
}

.pt-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
}

.pt-row:last-child {
    border-bottom: none;
}

.pt-method {
    font-weight: 500;
}

.pt-check {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.pt-time {
    color: var(--text-secondary);
}

.pt-time.highlight {
    color: var(--accent-green);
    font-weight: 600;
}

.pt-limits {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Info Box */
.info-box {
    padding: 20px;
    background: rgba(52, 152, 255, 0.1);
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--text-secondary);
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.sec-item {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.sec-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.sec-item h4 {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 8px;
}

.sec-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Pros & Cons Large */
.pros-cons-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pcl-column {
    padding: 30px;
    border-radius: var(--radius-lg);
}

.pcl-column.pros {
    background: rgba(0, 208, 132, 0.05);
    border: 1px solid rgba(0, 208, 132, 0.2);
}

.pcl-column.cons {
    background: rgba(255, 71, 87, 0.05);
    border: 1px solid rgba(255, 71, 87, 0.2);
}

.pcl-column h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
}

.pcl-column.pros h3 {
    color: var(--accent-green);
}

.pcl-column.cons h3 {
    color: var(--accent-red);
}

.pcl-column ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pcl-column li strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.pcl-column li p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Verdict Box */
.verdict-box {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.08) 0%, var(--bg-card) 100%);
    border: 2px solid rgba(245, 184, 0, 0.4);
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(245, 184, 0, 0.1);
}

.verdict-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(245, 184, 0, 0.6), transparent);
}

.verdict-score {
    text-align: center;
    flex-shrink: 0;
}

.vs-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(245, 184, 0, 0.3));
}

.vs-max {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.vs-label {
    display: block;
    margin-top: 12px;
    padding: 8px 20px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: var(--radius-full);
    color: var(--accent-green);
    font-weight: 700;
    font-size: 0.85rem;
}

.verdict-content p {
    color: var(--text-secondary);
}

/* Rating Breakdown */
.rating-breakdown {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.rating-breakdown h4 {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-weight: 700;
}

.rb-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.rb-item:last-child {
    margin-bottom: 0;
}

.rb-label {
    width: 140px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.rb-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.rb-fill {
    height: 100%;
    width: var(--fill);
    background: var(--gold-button);
    border-radius: 4px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(245, 184, 0, 0.3);
}

.rb-value {
    width: 40px;
    text-align: right;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.1) 0%, var(--bg-card) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 208, 132, 0.3);
}

.final-cta h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.final-cta p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Sidebar */
.review-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 130px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.sc-header {
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.15) 0%, rgba(245, 184, 0, 0.05) 100%);
    text-align: center;
    border-bottom: 1px solid rgba(245, 184, 0, 0.15);
}

.sc-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sc-body {
    padding: 24px;
    text-align: center;
}

.sc-logo {
    margin: 0 auto 16px;
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    max-width: 100px;
    max-height: 100px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sc-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.sc-logo .logo-placeholder {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.sc-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    margin-bottom: 8px;
}

.sc-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.sc-score {
    margin-left: 8px;
    font-weight: 600;
    color: var(--gold-primary);
}

.sc-bonus {
    margin-bottom: 20px;
}

.sc-percent {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.sc-amount {
    display: block;
    color: var(--text-secondary);
    font-weight: 500;
}

.sc-extra {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 14px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-green);
}

.sidebar-card .btn {
    width: 100%;
}

/* Info Card */
.info-card {
    padding: 24px;
}

.info-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.info-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.il-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.il-value {
    font-weight: 500;
    text-align: right;
    word-break: break-word;
}

/* Similar Card */
.similar-card {
    padding: 24px;
}

.similar-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.similar-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.similar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.similar-item:hover {
    background: var(--bg-card-hover);
    border: 1px solid rgba(245, 184, 0, 0.1);
}

.si-logo {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    max-width: 70px;
    max-height: 70px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--bg-primary);
    overflow: hidden;
    flex-shrink: 0;
}

.si-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.si-info {
    flex: 1;
    min-width: 0;
}

.si-name {
    display: block;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 4px;
    line-height: 1.3;
}

.si-bonus {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.si-rating {
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-primary);
    flex-shrink: 0;
}

/* Responsible Gaming Inline (inside review-main) */
.responsible-review {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 40px !important;
}

.responsible-content-inline {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
}

.responsible-content-inline .responsible-icon {
    margin-bottom: 20px;
}

.responsible-content-inline .responsible-icon img {
    width: 56px;
    height: 56px;
}

.responsible-content-inline h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}

.responsible-content-inline p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.responsible-content-inline .responsible-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.responsible-content-inline .r-badge {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1200px) {
    .review-layout {
        grid-template-columns: 1fr 280px;
    }
}

@media (max-width: 1024px) {
    .review-layout {
        grid-template-columns: 1fr;
    }
    
    .review-sidebar {
        order: -1;
    }
    
    .sidebar-sticky {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sidebar-card {
        flex: 1;
        min-width: 280px;
    }
    
    .review-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }
    
    .review-hero-left {
        order: -1;
        margin-bottom: 0;
    }
    
    .review-meta {
        display: none;
    }
    
    .casino-logo-large {
        width: 160px;
        height: 160px;
        min-width: 160px;
        min-height: 160px;
        max-width: 160px;
        max-height: 160px;
        margin-bottom: 16px;
    }
    
    .review-badges-top {
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
        padding: 0 12px;
        box-sizing: border-box;
    }
    .review-badges-top .badge {
        font-size: 0.62rem;
        padding: 3px 8px;
        max-width: 100%;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }
    
    .review-rating-large {
        justify-content: center;
    }
    
    .hero-bonus-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .casino-logo-large {
        width: 140px;
        height: 140px;
        min-width: 140px;
        min-height: 140px;
        max-width: 140px;
        max-height: 140px;
        margin-bottom: 16px;
    }
    
    .review-title {
        font-size: 1.8rem;
    }
    
    .facts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .toc-menu {
        gap: 4px;
    }
    
    .toc-link {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
        font-weight: 700;
    }
    
    .sidebar-card .btn-primary,
    .sidebar-card .btn-bonus {
        font-size: 1rem;
        font-weight: 700;
        padding: 16px 32px;
    }
    
    .promo-grid,
    .games-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .sec-item {
        display: grid;
        grid-template-columns: 36px 1fr;
        grid-template-rows: auto auto;
        gap: 4px 12px;
        padding: 14px 16px;
        align-items: start;
    }
    
    .sec-icon {
        grid-row: 1 / 3;
        margin-bottom: 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 2px;
    }
    
    .sec-icon img {
        width: 24px;
        height: 24px;
    }
    
    .sec-item h4 {
        grid-column: 2;
        font-size: 0.95rem;
        margin-bottom: 0;
    }
    
    .sec-item p {
        grid-column: 2;
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .pros-cons-large {
        grid-template-columns: 1fr;
    }
    
    .pt-header,
    .pt-row {
        grid-template-columns: 1.5fr 0.5fr 0.5fr 1fr;
        padding: 12px 16px;
        gap: 10px;
    }
    
    .pt-limits {
        display: none;
    }
    
    .pt-header {
        font-size: 0.75rem;
    }
    
    .pt-method {
        font-size: 0.85rem;
    }
    
    .pt-check {
        font-size: 1rem;
    }
    
    .pt-time {
        font-size: 0.8rem;
    }
    
    .verdict-box {
        flex-direction: column;
        text-align: center;
    }
    
    .sidebar-sticky {
        flex-direction: column;
    }
    
    .sidebar-card {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .casino-logo-large {
        width: 120px;
        height: 120px;
        min-width: 120px;
        min-height: 120px;
        max-width: 120px;
        max-height: 120px;
        margin-bottom: 12px;
    }
    
    .review-title {
        font-size: 1.6rem;
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 16px 0;
    }
    
    .promo-card {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 16px;
        text-align: left;
    }
    
    .promo-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .promo-card h4 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    
    .promo-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .games-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin: 20px 0;
    }
    
    .gs-item {
        padding: 16px 12px;
    }
    
    .gs-number {
        font-size: 1.5rem;
        margin-bottom: 2px;
    }
    
    .gs-label {
        font-size: 0.75rem;
    }
    
    .gs-label {
        font-size: 0.75rem;
    }
    
    .bb-item {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-table {
        margin: 20px 0;
    }
    
    .pt-header {
        display: none;
    }
    
    .pt-row {
        display: grid;
        grid-template-columns: 1fr auto auto auto;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
    }
    
    .pt-method {
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--text-primary);
    }
    
    .pt-check {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .pt-time {
        font-size: 0.8rem;
        text-align: right;
        min-width: 60px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 0.95rem;
        font-weight: 700;
    }
    
    .sidebar-card .btn-primary,
    .sidebar-card .btn-bonus {
        font-size: 0.95rem;
        font-weight: 700;
        padding: 14px 28px;
    }
}

