/**
 * SlotsJuice Casino Review Header - Optimized CSS
 * Version: 1.0.8
 * Optimized for speed, mobile-first, and Google requirements
 */

/* CSS Variables - SlotsJuice Brand Colors */
:root {
    --sjcrh-orange: #FF6B35;
    --sjcrh-orange-dark: #E55A2B;
    --sjcrh-orange-light: #FF8A65;
    --sjcrh-cream: #FFF8E1;
    --sjcrh-green: #2E7D32;
    --sjcrh-white: #FFFFFF;
    --sjcrh-dark: #1A1A1A;
    --sjcrh-gradient: linear-gradient(135deg, #FF6B35, #E55A2B);
    --sjcrh-gradient-hero: linear-gradient(135deg, #FF6B35 0%, #E55A2B 50%, #FF8A65 100%);
    --sjcrh-radius: 16px;
    --sjcrh-radius-large: 20px;
    --sjcrh-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --sjcrh-mobile-columns: repeat(2, 1fr);
}

/* FontAwesome Icon Fixes - Prevent Icon Display Issues */
.sjcrh-container i,
.sjcrh-container .fas,
.sjcrh-container .far,
.sjcrh-container .fab,
.sjcrh-container [class*="fa-"],
.sjcrh-container .elementor-icon,
.sjcrh-container .elementor-icon i {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome" !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    display: inline-block !important;
    font-weight: 900 !important;
    vertical-align: middle !important;
    box-sizing: border-box !important;
}

/* Specific Icon Size Constraints */
.sjcrh-container i::before,
.sjcrh-container .fas::before,
.sjcrh-container .far::before,
.sjcrh-container .fab::before {
    font-family: inherit !important;
    font-weight: inherit !important;
}

/* Global Icon Reset for All Widget Icons */
.sjcrh-container [class*="sjcrh-"] i,
.sjcrh-container [class*="sjcrh-"] .fas,
.sjcrh-container [class*="sjcrh-"] .far,
.sjcrh-container [class*="sjcrh-"] .fab,
.sjcrh-container [class*="sjcrh-"] .elementor-icon {
    max-width: none !important;
    max-height: none !important;
    overflow: visible !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

/* Elementor SVG Icon Fixes */
.sjcrh-container svg,
.sjcrh-container .elementor-icon svg {
    width: 1em !important;
    height: 1em !important;
    fill: currentColor !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

/* Logo Icon Specific Fix */
.sjcrh-casino-logo .elementor-icon,
.sjcrh-casino-logo .elementor-icon i,
.sjcrh-casino-logo .elementor-icon svg {
    width: auto !important;
    height: auto !important;
    font-size: inherit !important;
}

/* Performance Optimizations */
.sjcrh-container {
    font-family: var(--sjcrh-font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1;
    font-kerning: normal;
    box-sizing: border-box;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.sjcrh-container *,
.sjcrh-container *::before,
.sjcrh-container *::after {
    box-sizing: border-box;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Container and Layout */
.sjcrh-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* Desktop - Goldilocks Zone (1024px-1440px optimal) */
@media (min-width: 1024px) {
    .sjcrh-container {
        max-width: 1000px;
        padding: 0 20px;
    }
}

/* Large Desktop - Prevent oversized content */
@media (min-width: 1600px) {
    .sjcrh-container {
        max-width: 1200px;
        padding: 0 40px;
    }
}

/* Main Casino Header */
.sjcrh-casino-header {
    background: var(--sjcrh-gradient-hero);
    border-radius: var(--sjcrh-radius);
    padding: 20px;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.sjcrh-casino-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    transform: translate3d(0, 0, 0);
}

/* Header Top Row */
.sjcrh-header-top {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Casino Logo */
.sjcrh-casino-logo {
    width: 70px;
    height: 70px;
    background: var(--sjcrh-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--sjcrh-orange);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 107, 53, 0.05);
    transform: translate3d(0, 0, 0);
    will-change: transform;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sjcrh-casino-logo:hover {
    transform: translate3d(0, -2px, 0) scale3d(1.05, 1.05, 1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 107, 53, 0.1);
}

/* Casino Info */
.sjcrh-casino-info {
    color: white;
    transform: translate3d(0, 0, 0);
}

.sjcrh-casino-name {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 6px 0;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sjcrh-casino-details {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Overall Rating */
.sjcrh-overall-rating {
    text-align: center;
    color: white;
    min-width: 120px;
}

.sjcrh-rating-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 6px;
}

.sjcrh-rating-score {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 6px;
}

.sjcrh-rating-bar {
    width: 120px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto 6px;
}

.sjcrh-rating-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--sjcrh-green) 0%, #4CAF50 50%, #66BB6A 100%);
    border-radius: 3px;
    position: relative;
}

.sjcrh-rating-labels {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    opacity: 0.8;
    gap: 2px;
}

.sjcrh-rating-labels span {
    flex: 1;
    text-align: center;
}

/* Visit Button */
.sjcrh-visit-button {
    background: var(--sjcrh-white);
    color: var(--sjcrh-orange);
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 107, 53, 0.05);
    white-space: nowrap;
    transform: translate3d(0, 0, 0);
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sjcrh-visit-button i,
.sjcrh-visit-button .fas,
.sjcrh-visit-button .far,
.sjcrh-visit-button .elementor-icon,
.sjcrh-visit-button .elementor-icon i,
.sjcrh-visit-button [class*="fa-"] {
    font-size: 14px !important;
    width: 14px !important;
    height: 14px !important;
    line-height: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: inherit !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.sjcrh-visit-button:hover {
    transform: translate3d(0, -3px, 0) scale3d(1.02, 1.02, 1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 107, 53, 0.1);
}

.sjcrh-visit-button:active {
    transform: translate3d(0, -1px, 0) scale3d(0.98, 0.98, 1);
    transition: all 0.1s ease;
}

/* Stats Row */
.sjcrh-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 20px;
    background: var(--sjcrh-gradient);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translate3d(0, 0, 0);
    position: relative;
    z-index: 1;
}

.sjcrh-stat-item {
    text-align: center;
    color: white;
    background: transparent;
    padding: 16px 12px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translate3d(0, 0, 0);
    will-change: transform, background;
}

.sjcrh-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.sjcrh-stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translate3d(0, -1px, 0) scale3d(1.02, 1.02, 1);
}



.sjcrh-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    margin-bottom: 4px;
    opacity: 0.9;
    line-height: 1.2;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.sjcrh-stat-value {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.3px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Content Grid */
.sjcrh-content-grid {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Main Content */
.sjcrh-main-content {
    background: white;
    border-radius: var(--sjcrh-radius);
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 107, 53, 0.02);
    flex: 2;
    display: flex;
    flex-direction: column;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
}

/* Sidebar */
.sjcrh-sidebar {
    background: white;
    border-radius: var(--sjcrh-radius);
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 107, 53, 0.02);
    flex: 1;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
    min-width: 280px;
}

/* Content Title */
.sjcrh-content-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--sjcrh-dark);
    margin: 0 0 20px 0;
}

.sjcrh-section-title {
    margin: 0 0 15px 0;
    font-size: 20px;
    color: var(--sjcrh-dark);
    font-weight: 600;
}

/* Detailed Ratings Grid - Always 2 columns on all devices */
.sjcrh-detailed-ratings {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    flex: 1;
}

/* Rating Item Cards */
.sjcrh-rating-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 248, 225, 0.3) 100%);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--sjcrh-radius);
    padding: 18px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    will-change: transform, box-shadow, border-color;
    backface-visibility: hidden;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.08), 0 0 0 1px rgba(255, 107, 53, 0.02);
}

.sjcrh-rating-item:hover {
    transform: translate3d(0, -4px, 0) scale3d(1.01, 1.01, 1);
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.2), 0 0 0 1px rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.sjcrh-rating-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--sjcrh-gradient-hero);
    border-radius: var(--sjcrh-radius) var(--sjcrh-radius) 0 0;
    transform: translate3d(0, 0, 0);
}

/* Rating Category */
.sjcrh-rating-category {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--sjcrh-dark);
    margin-bottom: 10px;
    font-size: 16px;
}

.sjcrh-category-icon {
    font-size: 18px !important;
    width: 32px !important;
    height: 32px !important;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 138, 101, 0.05) 100%);
    border-radius: 8px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255, 107, 53, 0.1);
    flex-shrink: 0;
    transform: translate3d(0, 0, 0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.sjcrh-category-icon i,
.sjcrh-category-icon .fas,
.sjcrh-category-icon .far,
.sjcrh-category-icon .elementor-icon,
.sjcrh-category-icon .elementor-icon i,
.sjcrh-category-icon [class*="fa-"] {
    font-size: 18px !important;
    width: 18px !important;
    height: 18px !important;
    line-height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
    vertical-align: middle !important;
    text-align: center !important;
}

.sjcrh-rating-item:hover .sjcrh-category-icon {
    transform: translate3d(0, -1px, 0) scale3d(1.05, 1.05, 1);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 138, 101, 0.08) 100%);
    border-color: rgba(255, 107, 53, 0.2);
}

/* Rating Description */
.sjcrh-rating-description {
    font-size: 15px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 12px;
}

/* Rating Score Section */
.sjcrh-rating-score-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.sjcrh-rating-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--sjcrh-orange);
    background: var(--sjcrh-gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sjcrh-rating-max {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

/* Progress Bar */
.sjcrh-rating-progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.sjcrh-rating-progress-fill {
    height: 100%;
    background: var(--sjcrh-gradient-hero);
    border-radius: 3px;
    transition: width 1s ease-out;
    position: relative;
}

.sjcrh-rating-progress-fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
    transform: translate3d(-100%, 0, 0);
    will-change: transform;
}

@keyframes shimmer {
    0% { 
        transform: translate3d(-100%, 0, 0);
        opacity: 0;
    }
    50% { 
        opacity: 1;
    }
    100% { 
        transform: translate3d(100%, 0, 0);
        opacity: 0;
    }
}

/* Rating Badge */
.sjcrh-rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--sjcrh-white);
    color: var(--sjcrh-orange);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.25), 0 0 0 1px rgba(255, 107, 53, 0.05);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transform: translate3d(0, 0, 0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
    backface-visibility: hidden;
}

.sjcrh-rating-item:hover .sjcrh-rating-badge {
    transform: translate3d(0, -1px, 0) scale3d(1.05, 1.05, 1);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.35), 0 0 0 1px rgba(255, 107, 53, 0.1);
}

/* Excellent Rating Special Styling */
.sjcrh-rating-item.excellent .sjcrh-rating-badge {
    background: var(--sjcrh-green);
    color: white;
}

.sjcrh-rating-item.excellent .sjcrh-category-icon {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.15) 0%, rgba(46, 125, 50, 0.08) 100%);
    border-color: rgba(46, 125, 50, 0.2);
}



/* Bonus Panel */
.sjcrh-bonus-panel {
    background: var(--sjcrh-gradient-hero);
    color: white;
    border-radius: var(--sjcrh-radius);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    transform: translate3d(0, 0, 0);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.sjcrh-bonus-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    transform: translate3d(0, 0, 0);
}

.sjcrh-bonus-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.sjcrh-bonus-title i,
.sjcrh-bonus-title .fas,
.sjcrh-bonus-title .far,
.sjcrh-bonus-title .elementor-icon,
.sjcrh-bonus-title .elementor-icon i,
.sjcrh-bonus-title [class*="fa-"] {
    font-size: 18px !important;
    width: 18px !important;
    height: 18px !important;
    line-height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: inherit !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.sjcrh-bonus-subtitle {
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.sjcrh-bonus-offer {
    font-size: 24px;
    font-weight: 900;
    margin: 10px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.sjcrh-bonus-extra {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    margin: 10px 0;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.sjcrh-bonus-details {
    font-size: 11px;
    opacity: 0.9;
    margin: 8px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.sjcrh-claim-button {
    background: white;
    color: var(--sjcrh-orange);
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
    transform: translate3d(0, 0, 0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.sjcrh-claim-button:hover {
    transform: translate3d(0, -2px, 0) scale3d(1.05, 1.05, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Payment Methods Grid */
.sjcrh-payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}

.sjcrh-payment-method {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #e9ecef;
    transform: translate3d(0, 0, 0);
    will-change: transform, box-shadow, border-color;
    backface-visibility: hidden;
}

.sjcrh-payment-method:hover {
    transform: translate3d(0, -2px, 0) scale3d(1.02, 1.02, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 107, 53, 0.1);
    border-color: var(--sjcrh-orange);
}

.sjcrh-payment-method:active {
    transform: translate3d(0, 0, 0) scale3d(0.98, 0.98, 1);
    transition: all 0.1s ease;
}

.sjcrh-payment-logo {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.2px;
    transform: translate3d(0, 0, 0);
}

/* Payment Provider Specific Styles */
.sjcrh-payment-logo.skrill { color: #862165; text-transform: uppercase; }
.sjcrh-payment-logo.neteller { color: #00AC41; font-weight: 700; text-transform: uppercase; }
.sjcrh-payment-logo.mastercard { color: #EB001B; text-transform: capitalize; }
.sjcrh-payment-logo.paysafe { color: #004B9B; text-transform: lowercase; }
.sjcrh-payment-logo.nordea { color: #002B5B; text-transform: capitalize; }
.sjcrh-payment-logo.neosurf { color: #E31E24; text-transform: capitalize; }
.sjcrh-payment-logo.zimpler { color: #7B68EE; text-transform: lowercase; }
.sjcrh-payment-logo.bitcoin { color: #F7931A; font-size: 12px; }

/* Show All Link */
.sjcrh-show-all-link {
    text-align: center;
    margin-top: 12px;
}

.sjcrh-show-all-link a {
    color: var(--sjcrh-orange);
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.sjcrh-show-all-link a:hover {
    opacity: 0.8;
}

/* Games Grid */
.sjcrh-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.sjcrh-game-type {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #e9ecef;
    transform: translate3d(0, 0, 0);
    will-change: transform, box-shadow, border-color;
    backface-visibility: hidden;
}

.sjcrh-game-type:hover {
    transform: translate3d(0, -2px, 0) scale3d(1.02, 1.02, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(46, 125, 50, 0.1);
    border-color: var(--sjcrh-green);
}

.sjcrh-game-type:active {
    transform: translate3d(0, 0, 0) scale3d(0.98, 0.98, 1);
    transition: all 0.1s ease;
}

.sjcrh-game-icon {
    font-size: 16px !important;
    margin-bottom: 4px;
    color: var(--sjcrh-green);
    filter: drop-shadow(0 1px 2px rgba(46, 125, 50, 0.1));
    width: 16px !important;
    height: 16px !important;
    line-height: 16px !important;
    text-align: center !important;
    display: block !important;
}

.sjcrh-game-icon i,
.sjcrh-game-icon .fas,
.sjcrh-game-icon .far,
.sjcrh-game-icon .elementor-icon,
.sjcrh-game-icon .elementor-icon i,
.sjcrh-game-icon [class*="fa-"] {
    font-size: 16px !important;
    width: 16px !important;
    height: 16px !important;
    line-height: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: inherit !important;
    display: inline-block !important;
    vertical-align: middle !important;
    text-align: center !important;
}

.sjcrh-game-name {
    font-size: 9px;
    font-weight: 600;
    text-align: center;
    color: var(--sjcrh-dark);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.1px;
    line-height: 1.2;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    .sjcrh-payment-method,
    .sjcrh-rating-item,
    .sjcrh-game-type {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .sjcrh-rating-progress-fill::after {
        animation: none !important;
    }
}

/* Tablet Responsive - Goldilocks Zone (768px-1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .sjcrh-container {
        padding: 0 20px;
    }
    
    .sjcrh-casino-header {
        padding: 25px;
    }
    
    .sjcrh-header-top {
        gap: 15px;
    }
    
    .sjcrh-casino-logo {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    
    .sjcrh-casino-name {
        font-size: 22px;
    }
    
    .sjcrh-detailed-ratings {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        display: grid !important;
    }
    
    .sjcrh-content-grid {
        gap: 15px;
    }
    
    .sjcrh-main-content,
    .sjcrh-sidebar {
        padding: 20px;
    }
}

/* Mobile Responsive - Full Width Compact (480px-767px) */
@media (max-width: 767px) {
    .sjcrh-container {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    .sjcrh-casino-header {
        padding: 16px;
        margin: 0;
        border-radius: 0;
        background: var(--sjcrh-gradient-hero);
        min-height: auto;
    }
    
    .sjcrh-header-top {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        margin-bottom: 16px;
    }
    
    .sjcrh-casino-logo {
        width: 60px;
        height: 60px;
        font-size: 20px;
        align-self: center;
        margin-bottom: 8px;
    }
    
    .sjcrh-casino-info {
        text-align: center;
        order: 2;
    }
    
    .sjcrh-overall-rating {
        order: 3;
        text-align: center;
        width: 100%;
        margin: 8px 0;
    }
    
    .sjcrh-visit-button {
        order: 4;
        align-self: center;
        padding: 14px 32px;
        font-size: 18px;
        margin-top: 8px;
        width: auto;
        min-width: 160px;
    }
    
    .sjcrh-rating-label {
        font-size: 11px;
        margin-bottom: 6px;
        font-weight: 600;
    }
    
    .sjcrh-rating-score {
        font-size: 24px;
        margin-bottom: 6px;
        font-weight: 700;
    }
    
    .sjcrh-rating-bar {
        width: 100px;
        height: 8px;
        margin-bottom: 8px;
        border-radius: 4px;
    }
    
    .sjcrh-rating-labels {
        font-size: 14px;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .sjcrh-rating-labels span {
        padding: 2px 6px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.15);
    }
    
    .sjcrh-casino-name {
        font-size: 32px;
        margin-bottom: 6px;
        line-height: 1.2;
    }
    
    .sjcrh-casino-details {
        font-size: 20px;
        line-height: 1.3;
        opacity: 0.9;
    }
    
    .sjcrh-stats-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        margin-top: 12px;
        background: var(--sjcrh-gradient);
        border-radius: 10px;
        overflow: hidden;
    }
    
    .sjcrh-stat-item {
        text-align: center;
        color: white;
        background: transparent;
        padding: 12px 8px;
        position: relative;
    }
    
    .sjcrh-stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        bottom: 20%;
        width: 1px;
        background: rgba(255, 255, 255, 0.2);
    }
    

    
    .sjcrh-stat-value {
        font-size: 24px;
        font-weight: 700;
        color: white;
    }
    
    .sjcrh-stat-label {
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: white;
        opacity: 0.9;
        margin-bottom: 3px;
    }
    
    .sjcrh-content-grid {
        flex-direction: column;
        gap: 0;
        margin-top: 0;
    }
    
    .sjcrh-main-content {
        flex: none;
        border-radius: 0;
        padding: 16px 12px;
        margin-bottom: 0;
        box-shadow: none;
        border-bottom: 4px solid #f8f9fa;
        background: white;
    }
    
    .sjcrh-sidebar {
        flex: none;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        min-width: auto;
        background: white;
        width: 100%;
    }
    
    .sjcrh-content-title {
        font-size: 26px;
        margin-bottom: 20px;
        font-weight: 700;
        color: var(--sjcrh-dark);
        text-align: left;
    }
    
    .sjcrh-section-title {
        font-size: 23px;
        margin-bottom: 16px;
        font-weight: 700;
        color: var(--sjcrh-dark);
    }
    
    /* Ultra compact mobile ratings - 2 columns - FORCE 2 COLUMN LAYOUT */
    .sjcrh-detailed-ratings,
    .elementor-widget-container .sjcrh-detailed-ratings,
    .elementor-element .sjcrh-detailed-ratings,
    .sjcrh-container .sjcrh-detailed-ratings {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        flex: none !important;
        display: grid !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Force 2 column layout for rating items */
    .sjcrh-detailed-ratings .sjcrh-rating-item {
        width: auto !important;
        flex: none !important;
        display: block !important;
    }
    

    
    /* All cards visible on mobile in 2 columns */
    .sjcrh-rating-item {
        display: block;
        padding: 12px;
        border-radius: 10px;
        margin-bottom: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(255, 107, 53, 0.1);
    }
    
    .sjcrh-category-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 16px !important;
    }
    
    .sjcrh-category-icon i,
    .sjcrh-category-icon .fas,
    .sjcrh-category-icon .far,
    .sjcrh-category-icon .elementor-icon,
    .sjcrh-category-icon .elementor-icon i,
    .sjcrh-category-icon [class*="fa-"] {
        font-size: 16px !important;
        width: 16px !important;
        height: 16px !important;
        line-height: 16px !important;
        display: inline-block !important;
        vertical-align: middle !important;
        text-align: center !important;
    }
    
    .sjcrh-rating-category {
        font-size: 20px;
        margin-bottom: 10px;
        gap: 10px;
        font-weight: 600;
    }
    
    .sjcrh-rating-description {
        font-size: 17px;
        margin-bottom: 12px;
        line-height: 1.5;
        color: #666;
    }
    
    .sjcrh-rating-value {
        font-size: 26px;
        font-weight: 700;
    }
    
    .sjcrh-rating-max {
        font-size: 17px;
        opacity: 0.7;
    }
    
    .sjcrh-rating-badge {
        top: 12px;
        right: 12px;
        font-size: 12px;
        padding: 4px 8px;
        border-radius: 8px;
        font-weight: 600;
    }
    
    .sjcrh-rating-score-section {
        margin-bottom: 10px;
    }
    
    .sjcrh-rating-progress-bar {
        height: 6px;
        border-radius: 3px;
    }
    
    /* Mobile bonus panel - Full Width */
    .sjcrh-bonus-panel {
        border-radius: 0;
        padding: 16px 12px;
        margin: 0;
        box-shadow: none;
        border-bottom: 4px solid #f8f9fa;
        width: 100%;
        box-sizing: border-box;
    }
    
    .sjcrh-bonus-title {
        font-size: 21px;
        margin-bottom: 8px;
        font-weight: 700;
    }
    
    .sjcrh-bonus-subtitle {
        font-size: 16px;
        margin-bottom: 6px;
        opacity: 0.9;
    }
    
    .sjcrh-bonus-offer {
        font-size: 26px;
        margin: 8px 0;
        font-weight: 700;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
    
    .sjcrh-bonus-extra {
        font-size: 16px;
        margin: 6px 0;
        padding: 6px 10px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.2);
        font-weight: 600;
    }
    
    .sjcrh-bonus-details {
        font-size: 13px;
        margin: 4px 0;
        line-height: 1.3;
    }
    
    .sjcrh-claim-button {
        padding: 10px 20px;
        font-size: 17px;
        margin-top: 8px;
        width: 100%;
        border-radius: 6px;
        font-weight: 700;
        box-sizing: border-box;
    }
    
    /* Payment Methods Mobile - Full Width */
    .sjcrh-payment-methods-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
        margin: 0;
        padding: 12px;
        border-bottom: 4px solid #f8f9fa;
        background: white;
        width: 100%;
        box-sizing: border-box;
    }
    
    .sjcrh-payment-method {
        min-height: 35px;
        padding: 6px 4px;
        border-radius: 6px;
        border: 1px solid rgba(255, 107, 53, 0.1);
        background: #fafafa;
    }
    
    .sjcrh-payment-logo {
        font-size: 12px;
        font-weight: 600;
        line-height: 1.2;
    }
    
    /* Section titles in sidebar */
    .sjcrh-sidebar .sjcrh-section-title {
        font-size: 18px;
        margin: 0 0 8px 12px;
        font-weight: 700;
        color: var(--sjcrh-dark);
        padding-top: 8px;
    }
    
    /* Games Grid Mobile - Full Width */
    .sjcrh-games-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 3px;
        margin: 0;
        padding: 12px;
        border-bottom: 4px solid #f8f9fa;
        background: white;
        width: 100%;
        box-sizing: border-box;
    }
    
    .sjcrh-game-type {
        min-height: 40px;
        padding: 6px 3px;
        border-radius: 6px;
        border: 1px solid rgba(255, 107, 53, 0.1);
        background: #fafafa;
    }
    
    .sjcrh-game-icon {
        font-size: 14px !important;
        margin-bottom: 3px;
        width: 14px !important;
        height: 14px !important;
        line-height: 14px !important;
    }
    
    .sjcrh-game-icon i,
    .sjcrh-game-icon .fas,
    .sjcrh-game-icon .far,
    .sjcrh-game-icon .elementor-icon,
    .sjcrh-game-icon .elementor-icon i,
    .sjcrh-game-icon [class*="fa-"] {
        font-size: 14px !important;
        width: 14px !important;
        height: 14px !important;
        line-height: 14px !important;
    }
    
    .sjcrh-game-name {
        font-size: 9px;
        line-height: 1.1;
        font-weight: 600;
    }
    

    
    /* Additional Mobile Compactness - ENSURE 2 COLUMNS */
    .sjcrh-detailed-ratings {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        display: grid !important;
    }
    
    .sjcrh-rating-item {
        padding: 12px;
        margin-bottom: 8px;
    }
}

/* Extra Small Mobile (below 480px) */
@media (max-width: 479px) {
    .sjcrh-casino-header {
        padding: 8px;
    }
    
    .sjcrh-header-top {
        gap: 6px;
        margin-bottom: 6px;
    }
    
    .sjcrh-casino-logo {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .sjcrh-casino-name {
        font-size: 16px;
        margin-bottom: 1px;
    }
    
    .sjcrh-casino-details {
        font-size: 10px;
    }
    
    .sjcrh-overall-rating {
        min-width: 70px;
    }
    
    .sjcrh-rating-score {
        font-size: 14px;
    }
    
    .sjcrh-rating-bar {
        width: 70px;
        height: 4px;
    }
    
    .sjcrh-rating-labels {
        font-size: 7px;
    }
    
    .sjcrh-visit-button {
        margin-top: 6px;
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .sjcrh-stats-row {
        margin-top: 6px;
        padding: 2px;
        gap: 1px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(6px);
    }
    
    .sjcrh-stat-item {
        background: rgba(255, 255, 255, 0.04);
        padding: 6px 3px;
        border-radius: 4px;
        backdrop-filter: blur(2px);
    }
    
    .sjcrh-stat-icon {
        font-size: 12px;
        margin-bottom: 1px;
    }
    
    .sjcrh-stat-value {
        font-size: 10px;
    }
    
    .sjcrh-stat-label {
        font-size: 7px;
    }
    
    .sjcrh-main-content,
    .sjcrh-sidebar {
        padding: 12px;
    }
    
    .sjcrh-content-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .sjcrh-section-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .sjcrh-detailed-ratings {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        display: grid !important;
    }
    
    .sjcrh-rating-item {
        padding: 10px;
        border-radius: 6px;
    }
    
    .sjcrh-rating-description {
        font-size: 11px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .sjcrh-rating-score-section {
        margin-bottom: 6px;
    }
    
    .sjcrh-rating-value {
        font-size: 16px;
    }
    
    .sjcrh-rating-max {
        font-size: 11px;
    }
    
    .sjcrh-category-icon {
        width: 24px !important;
        height: 24px !important;
        font-size: 12px !important;
    }
    
    .sjcrh-category-icon i,
    .sjcrh-category-icon .fas,
    .sjcrh-category-icon .far,
    .sjcrh-category-icon .elementor-icon,
    .sjcrh-category-icon .elementor-icon i,
    .sjcrh-category-icon [class*="fa-"] {
        font-size: 12px !important;
        width: 12px !important;
        height: 12px !important;
        line-height: 12px !important;
        display: inline-block !important;
        vertical-align: middle !important;
        text-align: center !important;
    }
    
    .sjcrh-rating-category {
        font-size: 13px;
        margin-bottom: 6px;
        gap: 6px;
    }
    
    .sjcrh-rating-progress-bar {
        height: 3px;
    }
    
    .sjcrh-rating-badge {
        top: 6px;
        right: 6px;
        font-size: 7px;
        padding: 1px 4px;
    }
    
    .sjcrh-bonus-panel {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .sjcrh-bonus-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .sjcrh-bonus-offer {
        font-size: 18px;
        margin: 6px 0;
    }
    
    .sjcrh-bonus-details {
        font-size: 9px;
        margin: 4px 0;
    }
    
    .sjcrh-claim-button {
        padding: 6px 12px;
        font-size: 11px;
        margin-top: 6px;
    }
    

}