/* ==========================================
   REVIEW PAGE SPECIFIC STYLES
   Mobile-First Approach
   ========================================== */

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 0.5rem;
    color: #666;
}

.breadcrumb a {
    color: #2b3b4b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #FF8C00;
}

.breadcrumb li:last-child {
    color: #666;
}

/* Review Hero Section */
.review-hero {
    background: linear-gradient(135deg, #2b3b4b 0%, #3a5a7a 100%);
    color: white;
    padding: 2rem 0;
}

.review-hero h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

/* Review Summary Card */
.review-summary-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.summary-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.casino-logo-large {
    max-width: 200px;
    height: auto;
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-display .stars {
    font-size: 2rem;
    color: #FFD700;
    letter-spacing: 2px;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2b3b4b;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.trust-badge {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* Quick Specs */
.summary-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quick-specs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.spec-label {
    font-weight: 600;
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    color: #2b3b4b;
    font-weight: 600;
    font-size: 1rem;
}

/* CTA Buttons in Summary */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
    text-decoration: none;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    text-align: center;
    display: block;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}

.cta-button.primary.large {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
}

.cta-button.secondary {
    background: white;
    color: #2b3b4b;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #2b3b4b;
    text-align: center;
    display: block;
}

.cta-button.secondary:hover {
    transform: translateY(-2px);
    background: #f8f9fa;
}

.terms-notice {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Table of Contents */
.table-of-contents {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.table-of-contents h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2b3b4b;
}

.toc-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.toc-nav li {
    background: white;
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.toc-nav li:hover {
    transform: translateX(5px);
}

.toc-nav a {
    display: block;
    padding: 1rem;
    color: #2b3b4b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.toc-nav a:hover {
    color: #FF8C00;
}

/* Main Review Content */
main {
    background: white;
}

.review-article {
    padding: 3rem 0;
}

.review-section {
    margin-bottom: 4rem;
}

.review-section h2 {
    font-size: 2rem;
    color: #2b3b4b;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #FF8C00;
}

.review-section h3 {
    font-size: 1.5rem;
    color: #2b3b4b;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.review-section h4 {
    font-size: 1.2rem;
    color: #2b3b4b;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Update Notice */
.update-notice {
    background: #fff8e1;
    border-left: 4px solid #FF8C00;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.update-notice .separator {
    color: #999;
    margin: 0 0.25rem;
}

/* Content Text */
.content-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.content-text p {
    margin-bottom: 1.25rem;
}

.content-text .lead-text {
    font-size: 1.2rem;
    color: #2b3b4b;
    line-height: 1.6;
}

.content-text ul,
.content-text ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-text li {
    margin-bottom: 0.75rem;
}

/* Feature Images */
.review-feature-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

figure {
    margin: 2rem 0;
}

figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, #fff8e1 0%, #fffbf0 100%);
    border-left: 4px solid #FF8C00;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.highlight-box h3 {
    margin-top: 0;
    color: #FF8C00;
}

.highlight-box ul {
    margin: 1rem 0 0 0;
    padding-left: 1.5rem;
}

.highlight-box li {
    margin-bottom: 0.75rem;
}

/* Pros and Cons Grid */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros-column,
.cons-column {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pros-column {
    border-top: 4px solid #4CAF50;
}

.cons-column {
    border-top: 4px solid #f44336;
}

.pros-column h3 {
    color: #4CAF50;
    margin-top: 0;
    font-size: 1.5rem;
}

.cons-column h3 {
    color: #f44336;
    margin-top: 0;
    font-size: 1.5rem;
}

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

.pros-column li,
.cons-column li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.pros-column li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.cons-column li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: bold;
}

/* Bonus Detail Card */
.bonus-detail-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.bonus-detail-card h3 {
    margin-top: 0;
    color: #2b3b4b;
}

.bonus-amount-display {
    font-size: 2rem;
    font-weight: 700;
    color: #FF8C00;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Tables */
.bonus-terms-table,
.info-table,
.results-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.bonus-terms-table tr,
.info-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.bonus-terms-table tr:last-child,
.info-table tr:last-child {
    border-bottom: none;
}

.bonus-terms-table th,
.info-table th {
    text-align: left;
    padding: 1rem;
    font-weight: 600;
    color: #2b3b4b;
    width: 40%;
    background: #f8f9fa;
}

.bonus-terms-table td,
.info-table td {
    padding: 1rem;
    color: #333;
}

/* Results Table */
.results-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

.results-table thead {
    background: #2b3b4b;
    color: white;
}

.results-table th,
.results-table td {
    padding: 1rem;
    text-align: left;
}

.results-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.results-table tbody tr:hover {
    background: #f8f9fa;
}

.highlight-time {
    font-weight: 700;
    color: #4CAF50;
}

/* Verdict Snippet */
.verdict-snippet {
    background: #fff8e1;
    border-left: 4px solid #FF8C00;
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: 4px;
}

/* Promo List */
.promo-list {
    list-style: none;
    padding: 0;
}

.promo-list li {
    background: #f8f9fa;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    border-left: 3px solid #FF8C00;
}

/* Game Categories Grid */
.game-categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.game-category-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #FF8C00;
}

.game-category-card h3 {
    margin-top: 0;
    color: #2b3b4b;
}

.category-stats {
    text-align: center;
    margin: 1rem 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF8C00;
    display: block;
}

.popular-titles {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

/* Provider Logos */
.provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.provider-badge {
    background: linear-gradient(135deg, #2b3b4b 0%, #3a5a7a 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Video Container */
.video-container {
    margin: 2rem 0;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.video-notice {
    color: #666;
    font-style: italic;
}

/* Responsive Video Embed */
.video-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 8px;
    margin: 1rem 0;
}

.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Test Results Box */
.test-results-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #4CAF50;
}

.test-results-box h3 {
    margin-top: 0;
    color: #4CAF50;
}

/* Payment Methods Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.payment-method-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.payment-method-card h4 {
    margin-top: 0;
    color: #2b3b4b;
    border-bottom: 2px solid #FF8C00;
    padding-bottom: 0.5rem;
}

.payment-method-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.payment-method-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.payment-method-card li:last-child {
    border-bottom: none;
}

.method-timing {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
    font-size: 0.95rem;
}

/* Mobile Screenshot */
.mobile-screenshot {
    max-width: 400px;
    height: auto;
    margin: 2rem auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Checklists */
.checklist,
.mobile-checklist ul {
    list-style: none;
    padding: 0;
}

.checklist li,
.mobile-checklist li {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    font-weight: 500;
}

.check-yes {
    background: #e8f5e9;
    color: #2e7d32;
}

.check-no {
    background: #ffebee;
    color: #c62828;
}

/* Security Checklist */
.security-checklist {
    background: linear-gradient(135deg, #e3f2fd 0%, #f1f8ff 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.security-checklist h3 {
    margin-top: 0;
    color: #1976d2;
}

/* Support Test Box */
.support-test-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.test-instance {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #FF8C00;
}

.test-instance:last-child {
    margin-bottom: 0;
}

.test-instance ul {
    margin: 1rem 0 0 0;
    padding-left: 1.5rem;
}

/* Support Channels */
.support-channels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.channel-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.channel-card h4 {
    margin-top: 0;
    color: #2b3b4b;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {
    background: #2b3b4b;
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table .highlight {
    background: #fff8e1;
    font-weight: 700;
    color: #FF8C00;
}

/* Testing Steps */
.testing-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.testing-step {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 5rem;
}

.step-number {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.testing-step h3 {
    margin-top: 0;
    color: #2b3b4b;
}

/* Transparency Note */
.transparency-note {
    background: #e3f2fd;
    border-left: 4px solid #1976d2;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

/* FAQ Section */
.faq-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #FF8C00;
}

.faq-item h3 {
    margin-top: 0;
    color: #2b3b4b;
    font-size: 1.2rem;
}

.faq-item p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Final Verdict Box */
.verdict-box-final {
    background: linear-gradient(135deg, #fff8e1 0%, #fffbf0 100%);
    border-radius: 16px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid #FF8C00;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.rating-number-large {
    font-size: 5rem;
    font-weight: 700;
    color: #FF8C00;
    line-height: 1;
}

.rating-number-large span {
    font-size: 2rem;
    color: #666;
}

.rating-label {
    font-size: 1.2rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.verdict-content h3 {
    color: #2b3b4b;
    margin-top: 1.5rem;
}

.verdict-summary {
    font-size: 1.2rem;
    color: #2b3b4b;
    line-height: 1.6;
}

.final-recommendation {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid #FF8C00;
}

/* Final CTA Section */
.final-cta-section {
    text-align: center;
    margin: 3rem 0;
}

/* Related Reviews */
.related-reviews {
    background: #f8f9fa;
    padding: 3rem 0;
    margin-top: 4rem;
}

.related-reviews h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.related-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.related-review-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.related-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-review-card img {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #2b3b4b 0%, #3a5a7a 100%);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.related-review-card h3 {
    color: #2b3b4b;
    margin: 1rem 0 0.5rem 0;
}

.mini-rating {
    color: #FFD700;
    font-weight: 600;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}

/* ==========================================
   TABLET STYLES (min-width: 768px)
   ========================================== */

@media (min-width: 768px) {
    .review-hero h1 {
        font-size: 2.5rem;
    }

    .review-summary-card {
        flex-direction: row;
    }

    .summary-left {
        flex: 0 0 250px;
    }

    .summary-right {
        flex: 1;
    }

    .spec-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

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

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

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

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

    .support-channels {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .verdict-box-final {
        flex-direction: row;
        align-items: center;
    }

    .verdict-rating {
        flex: 0 0 200px;
    }

    .verdict-content {
        flex: 1;
    }
}

/* ==========================================
   DESKTOP STYLES (min-width: 1024px)
   ========================================== */

@media (min-width: 1024px) {
    .review-hero h1 {
        font-size: 3rem;
    }

    .toc-nav ul {
        grid-template-columns: repeat(3, 1fr);
    }

    .game-categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

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

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
    .back-to-top,
    .cta-button,
    header,
    footer {
        display: none;
    }
}
