/**
 * SlotsJuice Bonus Types Widget Styles - Pixel Perfect Design
 * 
 * @package SlotsJuiceBonTypes
 * @version 1.0.0
 */

/* ===== INTER FONT IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ===== CSS CUSTOM PROPERTIES - PIXEL PERFECT ===== */
:root {
    /* ===== BRAND COLORS ===== */
    --juice-orange: #FF6B35;
    --juice-orange-dark: #E55A2B;
    --juice-orange-light: #FF8A65;
    --juice-cream: #FFF8E1;
    --juice-dark: #1A1A1A;
    --juice-white: #FFFFFF;
    --juice-green: #2E7D32;
    --juice-green-dark: #1B5E20;
    --juice-green-light: #4CAF50;
    
    /* ===== BRAND GRADIENTS ===== */
    --juice-gradient: linear-gradient(135deg, #FF6B35, #E55A2B);
    --juice-gradient-hero: linear-gradient(135deg, #FF6B35 0%, #E55A2B 50%, #FF8A65 100%);
    --juice-gradient-green: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    --juice-gradient-mixed: linear-gradient(135deg, #FF6B35 0%, #2E7D32 50%, #1B5E20 100%);
    
    /* ===== PIXEL PERFECT RADIUS ===== */
    --juice-radius: 12px;
    --juice-radius-large: 20px;
    --juice-radius-xl: 30px;
    --juice-radius-drop: 50% 50% 50% 50% / 60% 60% 40% 40%;
    
    /* ===== NO TRANSITIONS FOR SHARP RENDERING ===== */
    --juice-transition: none;
    --juice-transition-fast: none;
    --juice-transition-slow: none;
    
    /* ===== PIXEL PERFECT TYPOGRAPHY ===== */
    --text-xs: 12px;      /* Extra Small */
    --text-sm: 14px;      /* Small */
    --text-base: 16px;    /* Base */
    --text-lg: 18px;      /* Large */
    --text-xl: 20px;      /* Extra Large */
    --text-2xl: 24px;     /* 2X Large */
    --text-3xl: 30px;     /* 3X Large */
    --text-4xl: 36px;     /* 4X Large */
    
    /* ===== PIXEL PERFECT SPACING ===== */
    --space-1: 4px;       /* 0.25rem */
    --space-2: 8px;       /* 0.5rem */
    --space-3: 12px;      /* 0.75rem */
    --space-4: 16px;      /* 1rem */
    --space-5: 20px;      /* 1.25rem */
    --space-6: 24px;      /* 1.5rem */
    --space-8: 32px;      /* 2rem */
    --space-10: 40px;     /* 2.5rem */
    --space-12: 48px;     /* 3rem */
    --space-16: 64px;     /* 4rem */
    --space-20: 80px;     /* 5rem */
    
    /* ===== RESPONSIVE BREAKPOINTS ===== */
    --breakpoint-sm: 640px;   /* Small devices */
    --breakpoint-md: 768px;   /* Medium devices */
    --breakpoint-lg: 1024px;  /* Large devices */
    --breakpoint-xl: 1280px;  /* Extra large devices */
}

/* ===== PIXEL PERFECT BASE SETUP ===== */
.slotsjuicebontypes-widget *,
.slotsjuicebontypes-widget *::before,
.slotsjuicebontypes-widget *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.slotsjuicebontypes-widget {
    /* Inter font family */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    font-variation-settings: normal;
    
    /* Crystal clear text rendering - no blur */
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: unset;
    text-rendering: auto;
    font-smooth: never;
    
    /* No transforms - crystal clear rendering */
    
    /* Pixel alignment */
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

/* ===== ANIMATIONS REMOVED FOR CLEANER DESIGN ===== */
/* All animations have been removed for better performance and cleaner look */

/* ===== MAIN SECTION - PIXEL PERFECT ===== */
.slotsjuicebontypes-widget .bonus-types-section {
    background: linear-gradient(135deg, var(--juice-white) 0%, rgba(255, 248, 225, 0.8) 100%);
    padding: var(--space-20) 0;
    position: relative;
    line-height: 1.5;
}

.slotsjuicebontypes-widget .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    position: relative;
    z-index: 2;
}

/* ===== WIDGET WRAPPER - PIXEL PERFECT ===== */
.slotsjuicebontypes-widget .widget-wrapper {
    background: var(--juice-white);
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--juice-radius-xl);
    padding: var(--space-12) var(--space-10);
    box-shadow: 
        0 10px 25px -5px rgba(255, 107, 53, 0.1),
        0 20px 40px -12px rgba(255, 107, 53, 0.08);
    position: relative;
    overflow: hidden;
}

.slotsjuicebontypes-widget .widget-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--juice-gradient-mixed);
    border-radius: var(--juice-radius-xl) var(--juice-radius-xl) 0 0;
}

.animations-enabled .widget-wrapper::after {
    content: "🎰🧃";
    position: absolute;
    top: var(--goldilocks-space-lg);
    right: var(--goldilocks-space-lg);
    font-size: var(--goldilocks-text-2xl);
    opacity: 0.7;
    /* Animation removed for cleaner design */
}

/* ===== HEADER SECTION - PIXEL PERFECT ===== */
.slotsjuicebontypes-widget .bonus-header {
    text-align: center;
    margin-bottom: var(--space-12);
    position: relative;
}

.slotsjuicebontypes-widget .main-title {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--juice-dark);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: var(--juice-gradient-mixed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    
    /* Crystal clear text rendering - no blur */
    text-rendering: auto;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: unset;
    font-smooth: never;
}

.animations-enabled .main-title::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--juice-orange);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
    /* Pulse animation removed */
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.animations-enabled .main-title::after {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--juice-green);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(46, 125, 50, 0.6);
    /* Pulse animation removed */
    /* Animation delay removed */
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== MODERN CARD GRID - PIXEL PERFECT ===== */
.slotsjuicebontypes-widget .bonus-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-6);
}

.slotsjuicebontypes-widget .bonus-item {
    padding: var(--space-6);
    background: var(--juice-white);
    border-radius: var(--juice-radius-large);
    border: 2px solid rgba(255, 107, 53, 0.08);
    position: relative;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    
    /* Pixel perfect shadows */
    box-shadow: 
        0 1px 3px rgba(255, 107, 53, 0.05),
        0 4px 6px rgba(255, 107, 53, 0.02);
}

/* ===== ANIMATIONS REMOVED FOR CLEANER DESIGN ===== */
/* All card animations have been removed */

/* ===== CORNER ACCENTS ===== */
.slotsjuicebontypes-widget .bonus-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 0 var(--juice-radius-large) 0 30px;
    opacity: 0.1;
    transition: all 0.4s ease;
}

/* ===== FLOATING EMOJIS (only if animations enabled) ===== */
.animations-enabled .bonus-item::after {
    content: "🧃";
    position: absolute;
    right: var(--goldilocks-space-md);
    top: var(--goldilocks-space-md);
    font-size: var(--goldilocks-text-xl);
    opacity: 0.8;
    /* Floating animation removed for cleaner design */
    transition: all 0.4s ease;
}

/* ===== NO HOVER EFFECTS ON CARDS ===== */
/* All card hover effects removed - only buttons have hover */

/* ===== ALTERNATING COLORS ===== */
.slotsjuicebontypes-widget .bonus-item:nth-child(odd) {
    background: linear-gradient(135deg, rgba(255, 248, 225, 0.8) 0%, rgba(255, 139, 101, 0.1) 100%);
}

.slotsjuicebontypes-widget .bonus-item:nth-child(odd)::before {
    background: var(--juice-gradient);
}

.slotsjuicebontypes-widget .bonus-item:nth-child(odd):hover {
    background: linear-gradient(135deg, rgba(255, 248, 225, 0.9) 0%, rgba(255, 139, 101, 0.15) 100%);
}

.slotsjuicebontypes-widget .bonus-item:nth-child(even) {
    background: linear-gradient(135deg, rgba(232, 245, 233, 0.8) 0%, rgba(76, 175, 80, 0.1) 100%);
    border-color: rgba(46, 125, 50, 0.1);
}

.slotsjuicebontypes-widget .bonus-item:nth-child(even)::before {
    background: var(--juice-gradient-green);
}

.slotsjuicebontypes-widget .bonus-item:nth-child(even):hover {
    background: linear-gradient(135deg, rgba(232, 245, 233, 0.9) 0%, rgba(76, 175, 80, 0.15) 100%);
    border-color: var(--juice-green);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15), 0 0 0 1px rgba(46, 125, 50, 0.1);
}

.animations-enabled .bonus-item:nth-child(even)::after {
    /* Drop shadow removed for cleaner design */
}

/* ===== BONUS CONTENT LAYOUT - PIXEL PERFECT ===== */
.slotsjuicebontypes-widget .bonus-content {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    position: relative;
    z-index: 2;
}

/* ===== BONUS ICON - PIXEL PERFECT ===== */
.slotsjuicebontypes-widget .bonus-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    flex-shrink: 0;
    position: relative;
    transition: var(--juice-transition);
    
    /* Pixel perfect shadow */
    box-shadow: 
        0 4px 8px rgba(255, 107, 53, 0.15),
        0 2px 4px rgba(255, 107, 53, 0.1);
}

.slotsjuicebontypes-widget .bonus-item:nth-child(odd) .bonus-icon {
    background: var(--juice-gradient);
}

.slotsjuicebontypes-widget .bonus-item:nth-child(even) .bonus-icon {
    background: var(--juice-gradient-green);
    box-shadow: 0 6px 18px rgba(46, 125, 50, 0.2);
}

.slotsjuicebontypes-widget .bonus-icon::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: -1;
    opacity: 0.8;
}

/* Icon hover effects removed for crisp rendering */

/* ===== BONUS INFO - PIXEL PERFECT ===== */
.slotsjuicebontypes-widget .bonus-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

/* ===== BONUS TITLE - PIXEL PERFECT ===== */
.slotsjuicebontypes-widget .bonus-title {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-lg);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 var(--space-1) 0;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    position: relative;
    z-index: 2;
    
    /* Crystal clear text rendering - no blur */
    text-rendering: auto;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: unset;
    font-smooth: never;
}

.animations-enabled .bonus-title::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    /* Pulse animation removed */
}

.slotsjuicebontypes-widget .bonus-item:nth-child(odd) .bonus-title {
    background: var(--juice-gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.animations-enabled .bonus-item:nth-child(odd) .bonus-title::before {
    background: var(--juice-orange);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.slotsjuicebontypes-widget .bonus-item:nth-child(even) .bonus-title {
    background: var(--juice-gradient-green);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.animations-enabled .bonus-item:nth-child(even) .bonus-title::before {
    background: var(--juice-green);
    box-shadow: 0 0 10px rgba(46, 125, 50, 0.5);
}

/* ===== BONUS LINK - PIXEL PERFECT ===== */
.slotsjuicebontypes-widget .bonus-link {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--juice-radius);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    
    /* Crystal clear text rendering - no blur */
    text-rendering: auto;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: unset;
    font-smooth: never;
}

/* Removed shimmer effect to prevent hover background conflicts */

.slotsjuicebontypes-widget .bonus-item:nth-child(odd) .bonus-link {
    color: var(--juice-orange);
    border-color: rgba(255, 107, 53, 0.2);
}

.slotsjuicebontypes-widget .bonus-item:nth-child(odd) .bonus-link:hover {
    color: var(--juice-white) !important;
    background: var(--juice-gradient) !important;
    border-color: var(--juice-orange);
    transform: scale(1.05);
}

.slotsjuicebontypes-widget .bonus-item:nth-child(even) .bonus-link {
    color: var(--juice-green);
    border-color: rgba(46, 125, 50, 0.2);
}

.slotsjuicebontypes-widget .bonus-item:nth-child(even) .bonus-link:hover {
    color: var(--juice-white) !important;
    background: var(--juice-gradient-green) !important;
    border-color: var(--juice-green);
    transform: scale(1.05);
}

/* ===== BONUS DESCRIPTION - PIXEL PERFECT ===== */
.slotsjuicebontypes-widget .bonus-description {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--juice-dark);
    opacity: 0.75;
    line-height: 1.4;
    margin-top: var(--space-1);
    
    /* Crystal clear text rendering - no blur */
    text-rendering: auto;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: unset;
    font-smooth: never;
}

/* ===== RESPONSIVE DESIGN - LAPTOP OPTIMIZATIONS (PIXEL PERFECT) ===== */
@media screen and (min-width: 1024px) and (max-width: 1399px) {
    .slotsjuicebontypes-widget .container {
        max-width: 1100px;
        padding: 0 var(--space-8);
    }
    
    .slotsjuicebontypes-widget .bonus-list {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: var(--space-5);
    }
    
    .slotsjuicebontypes-widget .widget-wrapper {
        padding: var(--space-10) var(--space-8);
    }
    
    .slotsjuicebontypes-widget .main-title {
        font-size: var(--text-3xl);
    }
    
    .slotsjuicebontypes-widget .bonus-title {
        font-size: var(--text-base);
    }
    
    .slotsjuicebontypes-widget .bonus-description {
        font-size: var(--text-xs);
    }
}

/* ===== RESPONSIVE DESIGN - TABLET (PIXEL PERFECT) ===== */
@media screen and (max-width: 1199px) {
    .slotsjuicebontypes-widget .bonus-list {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: var(--space-5);
    }
    
    .slotsjuicebontypes-widget .container {
        padding: 0 var(--space-6);
    }
    
    .slotsjuicebontypes-widget .widget-wrapper {
        padding: var(--space-8) var(--space-6);
    }
}

@media screen and (max-width: 1023px) {
    .slotsjuicebontypes-widget .bonus-types-section {
        padding: var(--space-16) 0;
    }
    
    .slotsjuicebontypes-widget .bonus-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--space-4);
    }
    
    .slotsjuicebontypes-widget .main-title {
        font-size: var(--text-2xl);
    }
}

/* ===== RESPONSIVE DESIGN - MOBILE OPTIMIZED (COMPACT & FULL WIDTH) ===== */
@media screen and (max-width: 767px) {
    /* Full width mobile layout - always applied */
    .slotsjuicebontypes-widget .bonus-types-section {
        padding: var(--space-8) 0;
    }
    
    .slotsjuicebontypes-widget .container {
        padding: 0 var(--space-2);
        max-width: none;
        margin: 0;
    }
    
    .slotsjuicebontypes-widget .widget-wrapper {
        margin: 0;
        border-radius: var(--juice-radius);
        padding: var(--space-4) var(--space-3);
    }
    
    .slotsjuicebontypes-widget .bonus-list {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    
    .slotsjuicebontypes-widget .bonus-item {
        padding: var(--space-4);
        margin: 0;
    }
    
    .slotsjuicebontypes-widget .bonus-header {
        margin-bottom: var(--space-4);
        
        /* Compact banner style for mobile */
        background: linear-gradient(135deg, var(--juice-orange) 0%, var(--juice-orange-dark) 100%);
        color: var(--juice-white);
        border: none;
        border-radius: var(--juice-radius);
        padding: var(--space-3) var(--space-2);
        text-align: center;
        box-shadow: 
            0 2px 8px rgba(255, 107, 53, 0.25),
            0 1px 2px rgba(255, 107, 53, 0.15);
        
        /* Banner effect with pattern */
        position: relative;
        overflow: hidden;
    }
    
    .slotsjuicebontypes-widget .bonus-header:before {
        content: "";
        position: absolute;
        top: 0;
        left: -50%;
        width: 200%;
        height: 100%;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
        pointer-events: none;
    }
    
    .slotsjuicebontypes-widget .main-title {
        font-size: var(--text-xl);
        margin: 0;
        line-height: 1.1;
        letter-spacing: -0.01em;
        color: var(--juice-white);
        background: none;
        -webkit-text-fill-color: var(--juice-white);
    }
    
    /* Animation elements removed */
    
    .slotsjuicebontypes-widget .bonus-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-2);
    }
    
    .slotsjuicebontypes-widget .bonus-icon {
        width: 40px;
        height: 40px;
        font-size: var(--text-sm);
        margin-bottom: 0;
    }

    .slotsjuicebontypes-widget .bonus-info {
        text-align: center;
        gap: var(--space-1);
    }
    
    .slotsjuicebontypes-widget .bonus-title {
        font-size: var(--text-sm);
        justify-content: center;
        margin-bottom: var(--space-1);
        line-height: 1.2;
    }

    .slotsjuicebontypes-widget .bonus-description {
        font-size: var(--text-xs);
        line-height: 1.3;
        margin-bottom: var(--space-1);
    }

    .slotsjuicebontypes-widget .bonus-link {
        margin-top: var(--space-1);
        padding: var(--space-2) var(--space-3);
        justify-content: center;
        font-size: var(--text-xs);
        line-height: 1.2;
    }
}

/* ===== COMPACT MOBILE LAYOUT - EXTRA OPTIMIZATION ===== */
@media screen and (max-width: 767px) {
    .compact-mobile .slotsjuicebontypes-widget .bonus-item {
        padding: var(--space-3);
    }
    
    .compact-mobile .slotsjuicebontypes-widget .bonus-list {
        gap: var(--space-2);
    }
    
    .compact-mobile .slotsjuicebontypes-widget .widget-wrapper {
        padding: var(--space-3) var(--space-2);
    }
    
    .compact-mobile .slotsjuicebontypes-widget .bonus-header {
        margin-bottom: var(--space-3);
        padding: var(--space-2);
    }
}

.compact-mobile .slotsjuicebontypes-widget .bonus-header {
    margin-bottom: var(--space-4);
    padding: var(--space-2) var(--space-3);
}

/* ===== EXTRA SMALL MOBILE (PIXEL PERFECT) ===== */
@media screen and (max-width: 479px) {
    .slotsjuicebontypes-widget .bonus-types-section {
        padding: var(--space-10) 0;
    }
    
    .mobile-full-width .container {
        padding: 0 var(--space-2);
    }
    
    .slotsjuicebontypes-widget .widget-wrapper {
        padding: var(--space-5) var(--space-3);
        margin: 0 var(--space-1);
    }
    
    .slotsjuicebontypes-widget .bonus-list {
        gap: var(--space-3);
    }
    
    .slotsjuicebontypes-widget .bonus-icon {
        width: 40px;
        height: 40px;
        font-size: var(--text-sm);
    }
    
    .slotsjuicebontypes-widget .bonus-title {
        font-size: var(--text-sm);
    }
    
    .slotsjuicebontypes-widget .bonus-description {
        font-size: 11px; /* Extra small for very limited space */
    }
    
    .slotsjuicebontypes-widget .bonus-link {
        font-size: 11px;
        padding: var(--space-1) var(--space-2);
        margin-top: var(--space-1);
    }
}

@media screen and (max-width: 360px) {
    .slotsjuicebontypes-widget .widget-wrapper {
        padding: var(--space-4) var(--space-2);
        margin: 0;
    }
    
    .slotsjuicebontypes-widget .bonus-header {
        padding: var(--space-2) var(--space-2);
        margin-bottom: var(--space-3);
    }
    
    .slotsjuicebontypes-widget .bonus-item {
        padding: var(--space-2);
    }
    
    .slotsjuicebontypes-widget .bonus-content {
        gap: var(--space-2);
    }
    
    .slotsjuicebontypes-widget .bonus-icon {
        width: 36px;
        height: 36px;
        font-size: var(--text-sm);
    }
    
    .slotsjuicebontypes-widget .main-title {
        font-size: var(--text-lg);
    }
    
    .slotsjuicebontypes-widget .bonus-title {
        font-size: var(--text-sm);
    }
    
    .slotsjuicebontypes-widget .bonus-description {
        font-size: 10px; /* Very small for 360px screens */
        line-height: 1.2;
    }
    
    .slotsjuicebontypes-widget .bonus-link {
        font-size: 10px;
        padding: var(--space-1);
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS FOR MOBILE ===== */
@media screen and (max-width: 767px) {
    .slotsjuicebontypes-widget .bonus-item {
        will-change: auto;
    }
    
    .slotsjuicebontypes-widget .bonus-item:hover {
        transform: none;
    }
    
    .slotsjuicebontypes-widget .bonus-icon {
        will-change: auto;
    }
    
    .slotsjuicebontypes-widget .bonus-item:hover .bonus-icon {
        transform: none;
    }
}

/* ===== REDUCED MOTION SUPPORT ===== */
@media (prefers-reduced-motion: reduce) {
    .slotsjuicebontypes-widget * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .animations-enabled .widget-wrapper::after,
    .animations-enabled .main-title::before,
    .animations-enabled .main-title::after,
    .animations-enabled .bonus-item::after,
    .animations-enabled .bonus-title::before {
        animation: none;
    }
}

/* ===== NO BLUR EFFECTS CLASS ===== */
.no-blur-effects.slotsjuicebontypes-widget .bonus-link {
    background: rgba(255, 255, 255, 1) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 2px solid rgba(0, 0, 0, 0.15) !important;
}

.no-blur-effects.slotsjuicebontypes-widget .widget-wrapper {
    background: rgba(255, 255, 255, 1) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.no-blur-effects.slotsjuicebontypes-widget .bonus-item {
    background: rgba(255, 255, 255, 1) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.no-blur-effects.slotsjuicebontypes-widget * {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
}

/* Remove any remaining blur effects */
.no-blur-effects.slotsjuicebontypes-widget .bonus-icon {
    filter: none !important;
}

.no-blur-effects.slotsjuicebontypes-widget .bonus-header::before {
    display: none !important;
}

/* Crystal clear text rendering - ZERO BLUR */
.slotsjuicebontypes-widget,
.slotsjuicebontypes-widget *,
.no-blur-effects.slotsjuicebontypes-widget,
.no-blur-effects.slotsjuicebontypes-widget * {
    text-rendering: auto !important;
    -webkit-font-smoothing: none !important;
    -moz-osx-font-smoothing: unset !important;
    font-smooth: never !important;
    transform: none !important;
    will-change: auto !important;
}

/* ===== HIGH CONTRAST MODE SUPPORT ===== */
@media (prefers-contrast: high) {
    .slotsjuicebontypes-widget .bonus-item {
        border-width: 3px;
        border-color: currentColor;
    }
    
    .slotsjuicebontypes-widget .bonus-link {
        border-width: 3px;
        border-color: currentColor;
    }
}
