/**
 * SlotsJuice Game Providers Widget Frontend Styles
 *
 * @package SlotsJuice_Game_Providers_Widget
 * @version 1.1.7
 */

/* ========================================
   CSS VARIABLES - SLOTSJUICE BRAND
   ======================================== */
.sjgp-wrapper {
    --sjgp-juice-orange: #FF6B35;
    --sjgp-juice-orange-dark: #E55A2B;
    --sjgp-juice-orange-light: #FF8A65;
    --sjgp-juice-cream: #FFF8E1;
    --sjgp-juice-green: #2E7D32;
    --sjgp-juice-white: #FFFFFF;
    --sjgp-juice-dark: #1A1A1A;
    --sjgp-juice-gradient: linear-gradient(135deg, #FF6B35, #E55A2B);
    --sjgp-juice-gradient-hero: linear-gradient(135deg, #FF6B35 0%, #E55A2B 50%, #FF8A65 100%);
    --sjgp-juice-radius: 12px;
    --sjgp-juice-radius-large: 20px;
    --sjgp-juice-radius-drop: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

/* ========================================
   BASE STYLES
   ======================================== */
.sjgp-wrapper * {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sjgp-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    color: var(--sjgp-juice-dark);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1;
    font-kerning: normal;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */
.sjgp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sjgp-providers-wrapper {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,248,225,0.95) 100%);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--sjgp-juice-radius-large);
    padding: 20px 25px;
    margin: 20px 0;
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* ========================================
   HEADER SECTION - COMPACT MODERN DESIGN
   ======================================== */
.sjgp-header {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.08);
    margin-bottom: 20px;
    position: relative;
    overflow: visible;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.02);
    padding: 0;
}

.sjgp-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: transparent;
    gap: 30px;
}

.sjgp-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}

.sjgp-header-left {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex: 1;
}

.sjgp-providers-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--sjgp-juice-dark);
    margin: 0;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sjgp-providers-title::before {
    content: '🧃';
    font-size: 24px;
}

.sjgp-providers-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    margin: 0;
}

.sjgp-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sjgp-providers-badge {
    background: var(--sjgp-juice-gradient);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    position: static;
}

/* ========================================
   PROVIDER GRID SYSTEM
   ======================================== */
.sjgp-providers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.sjgp-wrapper[data-grid-columns="2"] .sjgp-providers-grid {
    grid-template-columns: repeat(2, 1fr);
}

.sjgp-wrapper[data-grid-columns="4"] .sjgp-providers-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* ========================================
   PROVIDER CARD DESIGN
   ======================================== */
.sjgp-provider-card {
    padding: 30px;
    background: var(--sjgp-juice-white);
    border-radius: var(--sjgp-juice-radius-large);
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, background, box-shadow, border-color;
    transform: translate3d(0, 0, 0);
    position: relative;
    overflow: hidden;
    animation: sjgpCardEntrance 0.6s ease-out;
    animation-delay: calc(var(--item-index) * 0.1s);
    animation-fill-mode: both;
}

.sjgp-provider-card:hover {
    background: linear-gradient(135deg, rgba(255, 248, 225, 0.8) 0%, rgba(255, 139, 101, 0.1) 100%);
    transform: translate3d(0, -8px, 0) scale3d(1.02, 1.02, 1);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15), 0 0 0 1px rgba(255, 107, 53, 0.1);
    border-color: var(--sjgp-juice-orange);
}

/* Corner Accent */
.sjgp-provider-card:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--sjgp-juice-gradient);
    border-radius: 0 var(--sjgp-juice-radius-large) 0 30px;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.sjgp-provider-card:hover:before {
    opacity: 0.2;
    transform: scale3d(1.1, 1.1, 1);
}

/* Emoji Interactions */
.sjgp-provider-card:after {
    content: "🎰";
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.8rem;
    opacity: 0.7;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.3));
    animation: sjgpDropFloat 4s ease-in-out infinite;
    animation-delay: calc(var(--item-index) * 0.3s);
    transition: all 0.4s ease;
}

.sjgp-provider-card:hover:after {
    transform: scale3d(1.2, 1.2, 1) rotate(10deg);
    opacity: 1;
}

/* ========================================
   PROVIDER CARD HEADER
   ======================================== */
.sjgp-provider-card-header {
    background: var(--sjgp-juice-gradient);
    margin: -30px -30px 25px -30px;
    padding: 20px 25px;
    border-radius: var(--sjgp-juice-radius-large) var(--sjgp-juice-radius-large) 0 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 85px;
}

.sjgp-provider-card-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(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.sjgp-provider-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 2;
}

.sjgp-provider-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.sjgp-provider-logo {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.sjgp-provider-card:hover .sjgp-provider-logo {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.sjgp-provider-name {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.4px;
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: break-word;
    flex: 1;
    min-width: 0;
}

.sjgp-provider-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    flex-shrink: 0;
}

.sjgp-provider-header-bottom {
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 2;
}

.sjgp-provider-badges {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
}

.sjgp-provider-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.sjgp-provider-rating svg {
    color: #FFD700;
    font-size: 0.9rem;
}

.sjgp-provider-rating span {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
}

.sjgp-provider-badge {
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 3px;
}

.sjgp-provider-badge svg {
    width: 10px;
    height: 10px;
}

/* Badge Types */
.sjgp-badge-premium {
    background: rgba(255, 255, 255, 0.9);
    color: var(--sjgp-juice-orange-dark);
}

.sjgp-badge-verified {
    background: linear-gradient(135deg, #00D084, #00A86B);
    color: white;
}

.sjgp-badge-popular {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    color: white;
}

.sjgp-badge-new {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    animation: sjgpBadgePulse 2s ease-in-out infinite;
}

.sjgp-badge-exclusive {
    background: linear-gradient(135deg, #EC4899, #BE185D);
    color: white;
}

.sjgp-badge-mobile {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    color: white;
}

/* Floating Header Decorations */
.sjgp-provider-card-header::after {
    content: '🎰';
    position: absolute;
    right: -10px;
    top: -10px;
    font-size: 3rem;
    opacity: 0.1;
    animation: sjgpHeaderFloat 4s ease-in-out infinite;
    pointer-events: none;
}

/* ========================================
   PROVIDER CARD CONTENT
   ======================================== */
.sjgp-provider-description {
    font-size: 15px; /* Official Typography Standard */
    font-weight: 400;
    color: var(--sjgp-juice-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.sjgp-provider-stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.sjgp-stat-item {
    text-align: center;
    flex: 1;
    padding: 10px;
    background: rgba(255, 248, 225, 0.5);
    border-radius: var(--sjgp-juice-radius);
    position: relative;
    overflow: hidden;
}

.sjgp-stat-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--sjgp-juice-gradient);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.sjgp-stat-item:hover:before {
    transform: translateX(0);
}

.sjgp-stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--sjgp-juice-gradient-hero);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.sjgp-stat-label {
    font-size: 0.8rem;
    color: var(--sjgp-juice-orange-dark);
    font-weight: 500;
}

.sjgp-provider-features {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 0;
}

.sjgp-provider-features li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--sjgp-juice-dark);
    position: relative;
    padding-left: 20px;
}

.sjgp-provider-features li:before {
    content: "🧃";
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 0.8rem;
}

.sjgp-play-button {
    width: 100%;
    padding: 12px 20px;
    background: var(--sjgp-juice-gradient);
    color: white;
    border: none;
    border-radius: var(--sjgp-juice-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.sjgp-play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* ========================================
   CONTROL PANEL - ULTRA COMPACT MODERN
   ======================================== */
.sjgp-control-panel {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border: 1px solid rgba(255, 107, 53, 0.08);
    border-radius: 16px;
    padding: 20px 30px;
    margin: 0 0 30px 0;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    min-height: 60px;
}

.sjgp-filter-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    border: none;
    width: 100%;
}

.sjgp-filter-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--sjgp-juice-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    letter-spacing: -0.2px;
    flex-shrink: 0;
}

.sjgp-filter-title::before {
    content: '🎯';
    font-size: 16px;
}

.sjgp-filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    align-items: center;
}

.sjgp-filter-btn {
    padding: 8px 18px;
    background: rgba(255, 248, 225, 0.3);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    color: var(--sjgp-juice-dark);
    white-space: nowrap;
}

.sjgp-filter-btn:hover {
    background: rgba(255, 248, 225, 0.6);
    border-color: var(--sjgp-juice-orange);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
}

.sjgp-filter-btn.active {
    background: var(--sjgp-juice-gradient);
    color: white;
    border-color: var(--sjgp-juice-orange);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
}

/* ========================================
   CARD STATES
   ======================================== */
.sjgp-provider-card.filtered-out {
    opacity: 0.3;
    transform: scale(0.95);
    pointer-events: none;
}

/* ========================================
   MOBILE FAB BUTTON
   ======================================== */
.sjgp-mobile-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--sjgp-juice-gradient);
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.sjgp-mobile-fab svg {
    width: 24px;
    height: 24px;
}

.sjgp-mobile-fab:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.sjgp-mobile-fab::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FF6B35, #E55A2B, #FF8A65, #FF6B35);
    border-radius: 50%;
    z-index: -1;
    animation: sjgpSpin 3s linear infinite;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes sjgpCardEntrance {
    0% {
        opacity: 0;
        transform: translate3d(0, 30px, 0) scale3d(0.9, 0.9, 1);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    }
}

@keyframes sjgpDropFloat {
    0%, 100% { 
        transform: translate3d(0, 0px, 0) scale3d(1, 1, 1);
        filter: drop-shadow(0 0 5px rgba(255, 107, 53, 0.3));
    }
    50% { 
        transform: translate3d(0, -15px, 0) scale3d(1.08, 1.08, 1);
        filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
    }
}

@keyframes sjgpJuiceGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.4));
        transform: translateY(0px) scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
        transform: translateY(-3px) scale(1.05);
    }
}

@keyframes sjgpCheckPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes sjgpHeaderFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        transform: translateY(-10px) rotate(10deg);
    }
}

@keyframes sjgpBadgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 5px rgba(139, 92, 246, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
    }
}

@keyframes sjgpSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   RESPONSIVE DESIGN - GOLDILOCKS ZONE
   ======================================== */

/* Laptop/Notebook (1199px) - Same as Desktop */
@media (max-width: 1199px) {
    .sjgp-providers-title { font-size: 22px; }
    .sjgp-providers-subtitle { font-size: 20px; }
    .sjgp-provider-name { font-size: 18px; }
    .sjgp-provider-description { font-size: 14px; }
}

/* Tablet (1023px) */
@media (max-width: 1023px) {
    .sjgp-providers-title { font-size: 20px; }
    .sjgp-providers-subtitle { font-size: 19px; }
    .sjgp-provider-name { font-size: 17px; }
    .sjgp-provider-description { font-size: 13px; }
    
    .sjgp-providers-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px;
    }
    
    .sjgp-filter-buttons {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}

/* Mobile (767px) - Full Width Layout */
@media (max-width: 767px) {
    .sjgp-providers-title { font-size: 18px; }
    .sjgp-providers-subtitle { font-size: 17px; }
    .sjgp-provider-name { font-size: 16px; }
    .sjgp-provider-description { font-size: 13px; }
    
    .sjgp-providers-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .sjgp-provider-card {
        padding: 20px 15px;
        border-radius: var(--sjgp-juice-radius);
    }
    
    .sjgp-provider-card-header {
        margin: -20px -15px 20px -15px;
        padding: 15px 20px;
        min-height: 75px;
        gap: 10px;
    }
    
    .sjgp-provider-logo {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        border-radius: 12px;
    }
    
    .sjgp-provider-name {
        font-size: 18px;
        letter-spacing: -0.3px;
    }
    
    .sjgp-provider-rating {
        padding: 5px 10px;
        border-radius: 18px;
    }
    
    .sjgp-provider-rating svg {
        font-size: 0.8rem;
    }
    
    .sjgp-provider-rating span {
        font-size: 0.75rem;
    }
    
    .sjgp-provider-badge {
        padding: 3px 6px;
        font-size: 0.55rem;
        gap: 2px;
        border-radius: 14px;
    }
    
    .sjgp-provider-badges {
        gap: 4px;
    }
    
    .sjgp-provider-header-bottom {
        gap: 8px;
    }
    
    .sjgp-provider-card:after {
        font-size: 1.4rem;
        right: 15px;
        top: 15px;
    }

    /* ULTRA COMPACT MOBILE HEADER */
    .sjgp-header {
        margin-bottom: 12px;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
    }

    .sjgp-header-top {
        flex-direction: row;
        gap: 12px;
        padding: 12px 15px;
        align-items: center;
        justify-content: space-between;
    }

    .sjgp-header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        flex: 1;
    }

    .sjgp-providers-title {
        font-size: 16px;
        font-weight: 800;
        letter-spacing: -0.4px;
    }

    .sjgp-providers-title::before {
        font-size: 18px;
    }

    .sjgp-providers-subtitle {
        font-size: 11px;
        color: #ffffff;
        font-weight: 500;
    }

    .sjgp-providers-badge {
        padding: 4px 10px;
        font-size: 9px;
        border-radius: 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    /* ULTRA COMPACT MOBILE CONTROL PANEL - BEAUTIFUL CARD DESIGN */
    .sjgp-control-panel {
        flex-direction: column;
        gap: 0;
        padding: 18px 15px;
        margin: 15px;
        background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
        border-radius: 20px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 
            0 10px 40px rgba(0, 0, 0, 0.08),
            0 4px 12px rgba(0, 0, 0, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
        min-height: auto;
        position: relative;
        overflow: hidden;
        transform: translate3d(0, 0, 0);
    }

    .sjgp-control-panel::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, transparent 50%, rgba(255, 107, 53, 0.01) 100%);
        opacity: 1;
        pointer-events: none;
        z-index: 0;
    }

    .sjgp-control-panel::after {
        content: '✨';
        position: absolute;
        top: 12px;
        right: 12px;
        font-size: 20px;
        opacity: 0.15;
        pointer-events: none;
        z-index: 0;
    }
    
    /* Full-Width Mobile Layout with calc(-50vw + 50%) */
    .sjgp-container {
        padding: 0;
        max-width: none;
    }
    
    .sjgp-providers-wrapper {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(-50vw + 50%) !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        padding: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        box-shadow: none !important;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }
    
    /* 2025 Hero Mobile Header */
    .sjgp-header {
        text-align: center;
        position: relative;
        padding: 20px 20px 60px 20px;
        background: var(--sjgp-juice-gradient);
        margin: 0 0 25px 0;
        border-radius: 0 0 24px 24px;
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
        border: none;
        overflow: hidden;
    }
    
    .sjgp-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
        pointer-events: none;
    }
    
    .sjgp-header-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        position: relative;
        z-index: 2;
    }
    
    .sjgp-header-left {
        width: 100%;
        text-align: left;
    }
    
    .sjgp-header-right {
        display: none;
    }
    
    .sjgp-providers-title {
        font-size: 32px;
        font-weight: 900;
        color: white !important;
        margin: 0 0 8px 0;
        letter-spacing: -0.8px;
        line-height: 1.1;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: white !important;
        text-transform: uppercase;
    }
    
    .sjgp-providers-subtitle {
        font-size: 15px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        line-height: 1.5;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .sjgp-providers-badge {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        padding: 10px 20px;
        border-radius: var(--sjgp-juice-radius);
        font-size: 0.8rem;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        white-space: nowrap;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 10;
    }
    
    /* ULTRA COMPACT MOBILE FILTER SECTION */
    .sjgp-filter-section {
        margin: 0;
        gap: 12px;
        width: 100%;
        flex-direction: column;
        position: relative;
        z-index: 1;
    }
    
    .sjgp-filter-title {
        font-size: 14px;
        margin: 0;
        text-align: left;
        font-weight: 800;
        color: var(--sjgp-juice-dark);
        display: flex;
        align-items: center;
        gap: 8px;
        line-height: 1.2;
        letter-spacing: -0.3px;
    }
    
    .sjgp-filter-title::before {
        content: '🎯';
        font-size: 18px;
        filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.2));
    }
    
    .sjgp-filter-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin: 0;
    }
    
    .sjgp-filter-btn {
        padding: 12px 14px;
        font-size: 11.5px;
        text-align: center;
        white-space: nowrap;
        border-radius: 14px;
        font-weight: 700;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: 1.5px solid rgba(255, 107, 53, 0.12);
        background: linear-gradient(135deg, rgba(255, 248, 225, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
        color: var(--sjgp-juice-dark);
        letter-spacing: 0.3px;
        cursor: pointer;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
        position: relative;
        overflow: hidden;
    }

    .sjgp-filter-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.5s ease;
    }

    .sjgp-filter-btn:active::before {
        left: 100%;
    }
    
    .sjgp-filter-btn:hover {
        transform: translateY(-2px);
        box-shadow: 
            0 4px 12px rgba(255, 107, 53, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
        border-color: rgba(255, 107, 53, 0.25);
    }
    
    .sjgp-filter-btn.active {
        background: var(--sjgp-juice-gradient);
        color: white;
        border-color: var(--sjgp-juice-orange);
        box-shadow: 
            0 4px 15px rgba(255, 107, 53, 0.35),
            0 2px 8px rgba(255, 107, 53, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        transform: translateY(-2px) scale(1.02);
    }
    
    /* 2025 Organized Card Grid */
    .sjgp-providers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
        background: transparent;
        position: relative;
    }
    
    .sjgp-provider-card {
        background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
        border-radius: 24px;
        padding: 0;
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 
            0 10px 40px rgba(0, 0, 0, 0.08),
            0 4px 12px rgba(0, 0, 0, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
        overflow: hidden;
        transform: translate3d(0, 0, 0);
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
    }
    
    .sjgp-provider-card::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(0, 0, 0, 0.02) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
        z-index: 1;
    }
    
    .sjgp-provider-card:hover::before {
        opacity: 1;
    }
    
    .sjgp-provider-card:hover {
        transform: translate3d(0, -6px, 0) scale3d(1.02, 1.02, 1);
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.12),
            0 8px 20px rgba(0, 0, 0, 0.08),
            0 0 0 1px rgba(255, 107, 53, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
        border-color: rgba(255, 107, 53, 0.2);
    }
    
    .sjgp-provider-card-header {
        margin: 0 0 20px 0;
        padding: 25px;
        min-height: 90px;
        gap: 15px;
        border-radius: 24px 24px 0 0;
        position: relative;
        z-index: 2;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.15);
    }
    
    .sjgp-provider-logo {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.4);
        border: 3px solid rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .sjgp-provider-name {
        font-size: 20px;
        letter-spacing: -0.4px;
        font-weight: 800;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .sjgp-provider-rating {
        padding: 8px 14px;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.4);
        border: 2px solid rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        font-weight: 700;
    }
    
    .sjgp-provider-rating svg {
        color: #fbbf24;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    }
    
    .sjgp-provider-badge {
        padding: 6px 12px;
        font-size: 0.65rem;
        gap: 4px;
        border-radius: 20px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .sjgp-provider-description {
        font-size: 15px;
        padding: 0 25px;
        margin-top: 25px;
        margin-bottom: 20px;
        line-height: 1.6;
        color: #4a5568;
        font-weight: 500;
    }
    
    .sjgp-provider-stats {
        padding: 0 25px;
        margin-bottom: 20px;
    }
    
    .sjgp-provider-features {
        padding: 0 25px;
        margin-bottom: 20px;
    }
    
    .sjgp-play-button {
        margin: 0 25px 25px 25px;
        border-radius: 20px;
        padding: 16px 24px;
        font-size: 15px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        background: var(--sjgp-juice-gradient);
        border: none;
        color: white;
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;
        width: calc(100% - 50px);
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    
    .sjgp-play-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
    }
    
    .sjgp-play-button:hover::before {
        left: 100%;
    }
    
    .sjgp-play-button:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    }
    
    /* Mobile FAB */
    .sjgp-mobile-fab {
        display: flex;
    }
}

/* Small Mobile (479px) */
@media (max-width: 479px) {
    .sjgp-providers-title { font-size: 16px; }
    .sjgp-providers-subtitle { font-size: 15px; }
    .sjgp-provider-name { font-size: 14px; }
    .sjgp-provider-description { font-size: 12px; }
    
    .sjgp-providers-wrapper {
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: 15px 12px;
    }
    
    .sjgp-filter-buttons {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }
    
    .sjgp-filter-btn {
        padding: 5px 6px;
        font-size: 9px;
        border-radius: 6px;
    }
    
    .sjgp-control-panel {
        padding: 15px;
        gap: 15px;
    }
    
    .sjgp-play-button {
        margin: 0 20px 20px 20px;
        padding: 12px 16px;
        font-size: 13px;
        letter-spacing: 0.3px;
        width: calc(100% - 40px);
        border-radius: 16px;
    }
    
    .sjgp-provider-card {
        padding: 0;
        margin-bottom: 20px;
    }
    
    .sjgp-provider-card-header {
        padding: 20px;
        margin: 0 0 15px 0;
        box-shadow: 0 3px 12px rgba(255, 107, 53, 0.12);
    }
    
    .sjgp-provider-description {
        padding: 0 20px;
        margin-top: 20px;
        font-size: 13px;
    }
    
    .sjgp-provider-stats {
        padding: 0 20px;
    }
    
    .sjgp-provider-features {
        padding: 0 20px;
    }
}

