/* Review Page Styles - Live Casino Royal Theme */
/* ROYAL_ELEGANCE v17.0 */

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    background: var(--bg-stage);
    padding: 16px 0;
    font-size: 14px;
    border-bottom: var(--border-subtle);
}

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

.breadcrumb a:hover {
    color: var(--gold-primary);
    text-shadow: none;
}

.breadcrumb span {
    color: var(--text-muted);
    margin: 0 8px;
}

.breadcrumb .current {
    color: var(--text-primary);
    font-weight: 500;
}

/* ============================================
   BRAND HERO
   ============================================ */
.brand-hero {
    background: var(--gradient-stage);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.brand-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212,175,55,0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(147,51,234,0.15) 0%, transparent 40%);
    pointer-events: none;
}

.brand-hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.brand-hero-logo {
    width: 120px;
    height: 120px;
    background: var(--bg-card);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-display);
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
    overflow: hidden;
}

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

.brand-hero-info {
    flex: 1;
}

.brand-badge {
    display: inline-block;
    background: var(--gradient-royal);
    color: var(--bg-deep);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.brand-hero h1 {
    font-size: 42px;
    margin-bottom: 8px;
    font-family: var(--font-display);
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.brand-rating-large {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.brand-rating-large .stars {
    display: flex;
    gap: 4px;
}

.brand-rating-large .stars i {
    color: var(--gold-primary);
    font-size: 20px;
}

.brand-rating-large .score {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-display);
}

.brand-rating-large .reviews {
    color: var(--text-muted);
    font-size: 14px;
}

.brand-rating-large .rating-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold-primary);
}

/* Live Casino Tags */
.live-support {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.live-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-elevated);
    border: var(--border-subtle);
    border-radius: var(--radius-badge);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.live-tag.blackjack { color: var(--gold-primary); border-color: rgba(212, 175, 55, 0.3); }
.live-tag.roulette { color: var(--live-red); border-color: rgba(220, 38, 38, 0.3); }
.live-tag.baccarat { color: var(--purple-light); border-color: rgba(168, 85, 247, 0.3); }

/* ============================================
   CTA STICKY BAR
   ============================================ */
.cta-sticky {
    background: var(--bg-card);
    padding: 16px 0;
    border-bottom: var(--border-subtle);
    position: sticky;
    top: 72px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.cta-sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-bonus {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--gold-primary);
}

.cta-bonus i {
    font-size: 24px;
    color: var(--gold-light);
}

/* ============================================
   REVIEW CONTENT LAYOUT
   ============================================ */
.review-content {
    padding: 60px 0;
    background: var(--bg-stage);
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}

/* ============================================
   REVIEW MAIN CONTENT
   ============================================ */
.review-main {
    min-width: 0;
}

.review-section {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    padding: 32px;
    margin-bottom: 24px;
    border: var(--border-subtle);
    transition: var(--transition);
}

.review-section:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.review-section h2 {
    font-size: 24px;
    font-family: var(--font-display);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
}

.review-section h2 i {
    color: var(--gold-primary);
}

.review-section p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* ============================================
   INFO CARD
   ============================================ */
.info-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    padding: 32px;
    margin-bottom: 24px;
    border: var(--border-subtle);
}

.info-card h2 {
    font-size: 20px;
    font-family: var(--font-display);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h2 i {
    color: var(--gold-primary);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.info-item {
    text-align: center;
    padding: 20px 16px;
    background: var(--bg-elevated);
    border-radius: var(--radius-btn);
    border: var(--border-subtle);
    transition: var(--transition);
}

.info-item:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.info-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.info-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-display);
}

/* ============================================
   HIGHLIGHT BOX
   ============================================ */
.highlight-box {
    background: linear-gradient(135deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(147, 51, 234, 0.1) 100%
    );
    border-left: 3px solid var(--gold-primary);
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
    padding: 24px;
    margin: 24px 0;
}

.highlight-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--gold-primary);
    font-size: 16px;
}

.highlight-box ul {
    margin: 0;
    padding-left: 20px;
}

.highlight-box li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.highlight-box li::marker {
    color: var(--gold-primary);
}

/* ============================================
   PAYMENT METHODS
   ============================================ */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.payment-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-elevated);
    border-radius: var(--radius-card);
    border: var(--border-subtle);
    transition: var(--transition);
}

.payment-item:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.payment-item i {
    font-size: 32px;
    color: var(--gold-primary);
    margin-bottom: 12px;
    display: block;
}

.payment-item i.fa-pix { color: #32BCAD; }
.payment-item i.fa-credit-card { color: var(--purple-light); }

.payment-item span {
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.payment-item small {
    color: var(--text-muted);
    font-size: 12px;
}

/* Alternative payment grid class used in generated pages */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.payment-method {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-elevated);
    border-radius: var(--radius-card);
    border: var(--border-subtle);
    transition: var(--transition);
}

.payment-method:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.payment-method i {
    font-size: 32px;
    color: var(--gold-primary);
    margin-bottom: 12px;
    display: block;
}

.payment-method span {
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.payment-method small {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 6px;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.feature-item {
    padding: 28px;
    background: var(--bg-elevated);
    border-radius: var(--radius-card);
    text-align: center;
    border: var(--border-subtle);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.feature-item i {
    font-size: 40px;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.feature-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   SECURITY FEATURES
   ============================================ */
.security-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-elevated);
    border-radius: var(--radius-card);
    border: var(--border-subtle);
    transition: var(--transition);
}

.security-item:hover {
    border-color: var(--status-green);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.security-item i {
    font-size: 28px;
    color: var(--status-green);
    margin-bottom: 12px;
}

.security-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ============================================
   PROS AND CONS
   ============================================ */
.pros-cons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pros, .cons {
    padding: 28px;
    border-radius: var(--radius-card);
    border: var(--border-subtle);
}

.pros {
    background: linear-gradient(135deg,
        rgba(34, 197, 94, 0.1) 0%,
        rgba(34, 197, 94, 0.05) 100%
    );
    border-color: rgba(34, 197, 94, 0.3);
}

.cons {
    background: linear-gradient(135deg,
        rgba(234, 179, 8, 0.1) 0%,
        rgba(234, 179, 8, 0.05) 100%
    );
    border-color: rgba(234, 179, 8, 0.3);
}

.pros h4, .cons h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 16px;
}

.pros h4 {
    color: var(--status-green);
}

.cons h4 {
    color: var(--vip-yellow);
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros li, .cons li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pros li::before {
    content: '✓';
    color: var(--status-green);
    font-weight: bold;
}

.cons li::before {
    content: '✗';
    color: var(--vip-yellow);
    font-weight: bold;
}

.pros li:last-child, .cons li:last-child {
    border-bottom: none;
}

/* ============================================
   FAQ IN REVIEW
   ============================================ */
.review-section .faq-list {
    margin-top: 16px;
}

.review-section .faq-item {
    background: var(--bg-elevated);
    margin-bottom: 12px;
    border: var(--border-subtle);
}

.review-section .faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

/* ============================================
   CONCLUSION
   ============================================ */
.conclusion {
    border: 2px solid var(--gold-primary) !important;
    background: linear-gradient(135deg,
        var(--bg-card) 0%,
        rgba(212, 175, 55, 0.05) 100%
    ) !important;
}

.final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.final-rating {
    text-align: center;
}

.final-score {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-display);
    line-height: 1;
    text-shadow: 0 0 30px var(--gold-glow);
}

.final-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

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

.sidebar-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    padding: 28px;
    border: var(--border-subtle);
    box-shadow: var(--shadow-card);
}

.sidebar-card.sticky {
    position: sticky;
    top: 140px;
}

.sidebar-rating {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: var(--border-subtle);
    margin-bottom: 24px;
}

.rating-number {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-display);
    line-height: 1;
    text-shadow: 0 0 40px var(--gold-glow);
    animation: gold-pulse 2s ease-in-out infinite;
}

@keyframes gold-pulse {
    0%, 100% { text-shadow: 0 0 30px var(--gold-glow); }
    50% { text-shadow: 0 0 50px var(--gold-glow), 0 0 70px var(--gold-glow); }
}

.rating-stars {
    margin: 12px 0;
}

.rating-stars i {
    color: var(--gold-primary);
    font-size: 18px;
}

.rating-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.sidebar-bonus {
    background: var(--gradient-royal);
    color: var(--bg-deep);
    padding: 16px;
    border-radius: var(--radius-btn);
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    margin-bottom: 20px;
}

.sidebar-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.sidebar-features li {
    padding: 12px 0;
    border-bottom: var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.sidebar-features li:last-child {
    border-bottom: none;
}

.sidebar-features i {
    color: var(--status-green);
    font-size: 16px;
}

.sidebar-info {
    background: var(--bg-elevated);
    padding: 16px;
    border-radius: var(--radius-btn);
    font-size: 14px;
    border: var(--border-subtle);
}

.sidebar-info p {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
}

.sidebar-info strong {
    color: var(--text-primary);
}

/* ============================================
   RELATED SECTION
   ============================================ */
.related-section {
    padding: 80px 0;
    background: var(--bg-deep);
}

.related-section h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 32px;
    font-family: var(--font-display);
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.related-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    padding: 32px;
    text-align: center;
    border: var(--border-subtle);
    transition: var(--transition);
    text-decoration: none;
}

.related-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-card), var(--shadow-gold);
}

.related-logo {
    width: 70px;
    height: 70px;
    background: var(--bg-elevated);
    border-radius: var(--radius-card);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-display);
    border: var(--border-subtle);
}

.related-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.related-rating {
    color: var(--gold-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

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

    .review-sidebar {
        order: -1;
    }

    .sidebar-card.sticky {
        position: relative;
        top: 0;
    }

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

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

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

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

@media (max-width: 768px) {
    .brand-hero {
        padding: 60px 0;
    }

    .brand-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .brand-hero h1 {
        font-size: 32px;
    }

    .brand-rating-large {
        justify-content: center;
    }

    .live-support {
        justify-content: center;
    }

    .cta-sticky-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-bonus {
        justify-content: center;
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .final-cta {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .payment-methods {
        grid-template-columns: 1fr 1fr;
    }

    .payment-grid {
        grid-template-columns: 1fr 1fr;
    }

    .security-features {
        grid-template-columns: 1fr 1fr;
    }

    .rating-number {
        font-size: 48px;
    }

    .final-score {
        font-size: 42px;
    }
}
