/**
 * SlotsJuice Footer Widget Styles
 * Version: 1.0.0
 * Optimized for performance and compatibility
 * Responsive design with goldilocks zone sizing
 */

/* CSS Variables - SlotsJuice Brand Colors */
.slotsjuice-footer {
    --juice-orange: #FF6B35;
    --juice-orange-dark: #E55A2B;
    --juice-orange-light: #FF8A65;
    --juice-cream: #FFF8E1;
    --juice-green: #2E7D32;
    --juice-white: #FFFFFF;
    --juice-dark: #1A1A1A;
    --juice-gradient: linear-gradient(135deg, #FF6B35, #E55A2B);
    --juice-gradient-hero: linear-gradient(135deg, #FF6B35 0%, #E55A2B 50%, #FF8A65 100%);
    --juice-radius: 12px;
    --juice-radius-large: 20px;
    
    /* Scoped styles to prevent conflicts */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--juice-dark);
    box-sizing: border-box;
}

/* Reset and scoped styles for widget */
.slotsjuice-footer *,
.slotsjuice-footer *::before,
.slotsjuice-footer *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main Footer Styles */
.slotsjuice-footer {
    background: #f5f6fa;
    position: relative;
    overflow: hidden;
    padding: 20px 15px;
    z-index: 1;
}

.slotsjuice-footer .footer-wrapper {
    background: linear-gradient(135deg, var(--juice-cream) 0%, rgba(255, 248, 225, 0.9) 100%);
    border-radius: var(--juice-radius-large);
    border: 2px solid rgba(255, 107, 53, 0.1);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.08);
    position: relative;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
}

/* Juice Wave Separator */
.slotsjuice-footer .juice-wave {
    width: 100%;
    height: 120px;
    position: relative;
    top: -1px;
}

.slotsjuice-footer .juice-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.slotsjuice-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.slotsjuice-footer .footer-content-wrapper {
    padding: 0 20px 20px;
    position: relative;
    z-index: 2;
}

/* Footer Hero Section */
.slotsjuice-footer .footer-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 25px 0;
    border-bottom: 2px solid rgba(255, 107, 53, 0.1);
    margin-bottom: 25px;
}

.slotsjuice-footer .brand-section {
    flex: 1;
    max-width: 600px;
}

.slotsjuice-footer .brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.slotsjuice-footer .logo-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 10px rgba(255, 107, 53, 0.3));
    animation: slotsjuice-float 4s ease-in-out infinite;
}

.slotsjuice-footer .brand-title {
    font-size: 28px;
    font-weight: 800;
    background: var(--juice-gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    line-height: 1.2;
}

.slotsjuice-footer .brand-tagline {
    font-size: 15px;
    color: var(--juice-orange-dark);
    font-weight: 500;
    margin: 0;
}

.slotsjuice-footer .brand-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--juice-dark);
    margin: 0;
}

/* Quick Stats */
.slotsjuice-footer .quick-stats {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.slotsjuice-footer .stat-card {
    background: var(--juice-white);
    padding: 15px 12px;
    border-radius: var(--juice-radius-large);
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
    backface-visibility: hidden;
}

.slotsjuice-footer .stat-card:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.15);
}

.slotsjuice-footer .stat-number {
    font-size: 24px;
    font-weight: 800;
    background: var(--juice-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    line-height: 1.2;
}

.slotsjuice-footer .stat-label {
    font-size: 12px;
    color: var(--juice-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation Cards */
.slotsjuice-footer .footer-navigation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 25px;
}

.slotsjuice-footer .nav-card {
    background: var(--juice-white);
    border-radius: var(--juice-radius-large);
    padding: 15px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.08);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, box-shadow;
    backface-visibility: hidden;
}

.slotsjuice-footer .nav-card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.slotsjuice-footer .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.slotsjuice-footer .card-emoji {
    font-size: 2rem;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.3));
}

.slotsjuice-footer .card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--juice-orange-dark);
    margin: 0;
    line-height: 1.2;
}

.slotsjuice-footer .card-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.slotsjuice-footer .nav-link {
    color: var(--juice-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--juice-radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: block;
}

.slotsjuice-footer .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--juice-gradient);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom;
}

.slotsjuice-footer .nav-link:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--juice-orange-dark);
    transform: translateX(8px);
}

.slotsjuice-footer .nav-link:hover::before {
    transform: scaleY(1);
}

/* Connection Bar */
.slotsjuice-footer .connection-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--juice-white) 0%, rgba(255, 248, 225, 0.8) 100%);
    border-radius: var(--juice-radius-large);
    border: 2px solid rgba(255, 107, 53, 0.15);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
    padding: 15px 20px;
    margin: 20px 0 15px;
    position: relative;
    overflow: hidden;
}

.slotsjuice-footer .connection-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--juice-gradient);
}

.slotsjuice-footer .connect-left {
    flex: 1;
}

.slotsjuice-footer .connect-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.slotsjuice-footer .connect-emoji {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.3));
}

.slotsjuice-footer .connect-title h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--juice-orange-dark);
    margin: 0;
    line-height: 1.2;
}

.slotsjuice-footer .connect-subtitle {
    color: var(--juice-dark);
    font-size: 15px;
    margin: 0;
    opacity: 0.8;
}

.slotsjuice-footer .connect-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.slotsjuice-footer .social-row {
    display: flex;
    gap: 8px;
}

.slotsjuice-footer .newsletter-inline {
    display: flex;
    gap: 8px;
    align-items: center;
}

.slotsjuice-footer .newsletter-inline .email-input {
    width: 220px;
    padding: 8px 12px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--juice-radius);
    font-size: 14px;
    background: white;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slotsjuice-footer .newsletter-inline .email-input:focus {
    border-color: var(--juice-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.slotsjuice-footer .newsletter-inline .subscribe-btn {
    padding: 8px 16px;
    background: var(--juice-gradient);
    color: white;
    border: none;
    border-radius: var(--juice-radius);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    will-change: transform, box-shadow;
    backface-visibility: hidden;
}

.slotsjuice-footer .newsletter-inline .subscribe-btn:hover {
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Social Bubbles */
.slotsjuice-footer .social-bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    overflow: hidden; /* Ensure images stay within circular bounds */
}

/* Custom Social Media Images */
.slotsjuice-footer .social-custom-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(1) contrast(1);
}

.slotsjuice-footer .social-bubble:hover .social-custom-icon {
    transform: scale(1.1) translateZ(0);
    filter: brightness(1.1) contrast(1.1);
}

/* SZÉPÍTETT FontAwesome ikonok */
.slotsjuice-footer .social-bubble i {
    display: inline-block;
    width: auto;
    height: auto;
    font-size: inherit;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: filter 0.3s ease;
}

.slotsjuice-footer .social-bubble:hover i {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.slotsjuice-footer .social-bubble.instagram {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
}

.slotsjuice-footer .social-bubble.facebook {
    background: #1877f2;
    color: white;
}

.slotsjuice-footer .social-bubble.twitter {
    background: #1da1f2;
    color: white;
}

.slotsjuice-footer .social-bubble.youtube {
    background: #ff0000;
    color: white;
}

.slotsjuice-footer .social-bubble.linkedin {
    background: #0a66c2;
    color: white;
}

.slotsjuice-footer .social-bubble.twitch {
    background: #9146ff;
    color: white;
}

.slotsjuice-footer .social-bubble:hover {
    transform: translateY(-5px) scale(1.1) translateZ(0);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Custom image bubbles - neutral background when using custom images */
.slotsjuice-footer .social-bubble:has(.social-custom-icon) {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.slotsjuice-footer .social-bubble:has(.social-custom-icon):hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--juice-orange);
}

/* Fallback for older browsers that don't support :has() */
.slotsjuice-footer .social-bubble.has-custom-icon {
    background: rgba(255, 107, 53, 0.1) !important;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.slotsjuice-footer .social-bubble.has-custom-icon:hover {
    background: rgba(255, 107, 53, 0.2) !important;
    border-color: var(--juice-orange);
}

/* Footer Bottom */
.slotsjuice-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.slotsjuice-footer .legal-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.slotsjuice-footer .legal-link {
    color: var(--juice-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slotsjuice-footer .legal-link:hover {
    color: var(--juice-orange);
}

.slotsjuice-footer .safety-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.slotsjuice-footer .safety-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--juice-gradient);
    color: white;
    padding: 8px 12px;
    border-radius: var(--juice-radius);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.slotsjuice-footer .safety-badge.age-restriction {
    background: var(--juice-green);
}

.slotsjuice-footer .badge-icon {
    font-size: 14px;
    font-weight: 800;
}

/* Disclaimer */
.slotsjuice-footer .footer-disclaimer {
    text-align: center;
    padding: 12px 15px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: var(--juice-radius);
    margin-top: 15px;
}

.slotsjuice-footer .disclaimer-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--juice-dark);
    margin: 0;
    opacity: 0.8;
}

/* Juice Animation - DISABLED BY DEFAULT for better performance */
.slotsjuice-footer .juice-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    display: none; /* HIDDEN by default - only show when explicitly enabled */
}

.slotsjuice-footer .juice-drop {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.15;
    animation: slotsjuice-drop 8s ease-in-out infinite;
    animation-play-state: paused; /* PAUSED by default */
    top: -50px;
}

.slotsjuice-footer .drop-anim-1 {
    left: 10%;
    animation-delay: 0s;
}

.slotsjuice-footer .drop-anim-2 {
    left: 25%;
    animation-delay: 2s;
}

.slotsjuice-footer .drop-anim-3 {
    left: 50%;
    animation-delay: 4s;
}

.slotsjuice-footer .drop-anim-4 {
    left: 75%;
    animation-delay: 1s;
}

.slotsjuice-footer .drop-anim-5 {
    left: 90%;
    animation-delay: 3s;
}

/* Animations */
@keyframes slotsjuice-float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) translateZ(0);
    }
    50% { 
        transform: translateY(-10px) rotate(5deg) translateZ(0);
    }
}

@keyframes slotsjuice-drop {
    0% {
        transform: translateY(-50px) rotate(0deg) translateZ(0);
        opacity: 0;
    }
    10% {
        opacity: 0.2;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(calc(100vh + 50px)) rotate(360deg) translateZ(0);
        opacity: 0;
    }
}

/* Live Preview Styles + MOBIL VERZIÓ */
.slotsjuice-footer .elementor-live-preview-notice {
    background: rgba(255, 107, 53, 0.1);
    border: 2px dashed var(--juice-orange);
    border-radius: var(--juice-radius);
    padding: 20px;
    text-align: center;
    margin: 20px 0;
    backdrop-filter: blur(5px);
}

.slotsjuice-footer .elementor-live-preview-notice p {
    color: var(--juice-orange-dark);
    font-weight: 600;
    margin: 0;
}

/* MOBIL Live Preview */
@media (max-width: 767px) {
    .slotsjuice-footer .elementor-live-preview-notice {
        padding: 15px;
        margin: 15px 8px;
        font-size: 14px;
    }
}

/* Performance optimizations + MOBIL SZÉPÍTÉSEK */
.slotsjuice-footer {
    will-change: auto;
    contain: layout style paint;
}

.slotsjuice-footer * {
    will-change: auto;
}

/* EXTRA MOBIL TOUCH OPTIMALIZÁCIÓK */
@media (max-width: 767px) {
    /* Jobb touch target méret mobilon */
    .slotsjuice-footer .nav-link {
        min-height: 32px;
        display: flex;
        align-items: center;
    }
    
    .slotsjuice-footer .social-bubble {
        min-width: 44px;
        min-height: 44px;
    }
    
    .slotsjuice-footer .legal-link {
        min-height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Smooth scroll viselkedés mobilon */
    .slotsjuice-footer {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Fokozott kontrasztok mobilra */
    .slotsjuice-footer .nav-card {
        border-width: 2px;
    }
    
    .slotsjuice-footer .stat-card {
        border-width: 2px;
    }
    
    /* Gyors tap feedback mobilon */
    .slotsjuice-footer .nav-link:active {
        transform: scale(0.98);
        background: rgba(255, 107, 53, 0.2);
    }
    
    .slotsjuice-footer .social-bubble:active {
        transform: scale(0.95);
    }
    
    .slotsjuice-footer .stat-card:active {
        transform: scale(0.98);
    }
    
    /* Modern backdrop blur támogatás */
    @supports (backdrop-filter: blur(10px)) {
        .slotsjuice-footer .nav-card,
        .slotsjuice-footer .stat-card,
        .slotsjuice-footer .connection-bar {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(15px) saturate(1.2);
        }
    }
    
    /* Fallback régebbi böngészőkhöz */
    @supports not (backdrop-filter: blur(10px)) {
        .slotsjuice-footer .nav-card,
        .slotsjuice-footer .stat-card,
        .slotsjuice-footer .connection-bar {
            background: rgba(255, 255, 255, 0.95);
        }
    }
}

/* CRITICAL: Prevent FOUC (Flash of Unstyled Content) */
.slotsjuice-footer .footer-hero,
.slotsjuice-footer .footer-navigation, 
.slotsjuice-footer .footer-bottom {
    /* Default visible state - overridden by JavaScript if animations enabled */
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

/* Animation class applied by JavaScript */
.slotsjuice-animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

/* Prevent widget from disappearing during loading */
.slotsjuice-footer {
    min-height: 200px; /* Prevent layout shift */
    position: relative;
}

/* Loading state protection */
.slotsjuice-footer.loading {
    opacity: 0.7;
}

.slotsjuice-footer.loaded {
    opacity: 1;
}

/* Responsive Design - Laptop/Desktop (1200px - 1599px) */
@media (min-width: 1200px) and (max-width: 1599px) {
    .slotsjuice-footer .footer-container {
        max-width: 1140px;
        padding: 0 15px;
    }
    
    .slotsjuice-footer .footer-content-wrapper {
        padding: 0 15px 15px;
    }
    
    .slotsjuice-footer .brand-title {
        font-size: 26px;
    }
    
    .slotsjuice-footer .brand-description {
        font-size: 15px;
    }
    
    .slotsjuice-footer .stat-number {
        font-size: 22px;
    }
    
    .slotsjuice-footer .card-header h3 {
        font-size: 18px;
    }
    
    .slotsjuice-footer .nav-link {
        font-size: 14px;
    }
}

/* Laptop optimizations (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .slotsjuice-footer .footer-container {
        max-width: 960px;
        padding: 0 12px;
    }
    
    .slotsjuice-footer .footer-content-wrapper {
        padding: 0 18px 18px;
    }
    
    .slotsjuice-footer .footer-hero {
        gap: 25px;
    }
    
    .slotsjuice-footer .brand-title {
        font-size: 24px;
    }
    
    .slotsjuice-footer .quick-stats {
        gap: 12px;
    }
    
    .slotsjuice-footer .stat-card {
        padding: 12px 10px;
    }
    
    .slotsjuice-footer .stat-number {
        font-size: 20px;
    }
    
    .slotsjuice-footer .footer-navigation {
        gap: 15px;
    }
    
    .slotsjuice-footer .nav-card {
        padding: 12px;
    }
    
    .slotsjuice-footer .card-header h3 {
        font-size: 17px;
    }
    
    .slotsjuice-footer .newsletter-inline .email-input {
        width: 200px;
    }
}

/* Tablet Portrait and Small Laptop (768px - 1023px) */
@media (max-width: 1023px) {
    .slotsjuice-footer .footer-container {
        padding: 0 10px;
    }
    
    .slotsjuice-footer .footer-content-wrapper {
        padding: 0 15px 15px;
    }
    
    .slotsjuice-footer .footer-navigation {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .slotsjuice-footer .connection-bar {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 12px 15px;
    }
    
    .slotsjuice-footer .connect-right {
        align-items: center;
    }
    
    .slotsjuice-footer .newsletter-inline .email-input {
        width: 180px;
    }
    
    .slotsjuice-footer .footer-hero {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .slotsjuice-footer .brand-logo {
        justify-content: center;
    }
    
    .slotsjuice-footer .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .slotsjuice-footer .legal-links {
        justify-content: center;
        gap: 20px;
    }
    
    .slotsjuice-footer .safety-badges {
        justify-content: center;
    }
}

/* Mobile Landscape (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .slotsjuice-footer .brand-title {
        font-size: 26px;
    }
    
    .slotsjuice-footer .quick-stats {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
    }
    
    .slotsjuice-footer .stat-card {
        flex: 1;
        max-width: 140px;
    }
}

/* Mobile Portrait and Small Tablets (below 768px) - SZÉPÍTVE */
@media (max-width: 767px) {
    .slotsjuice-footer {
        padding: 8px 0;
    }
    
    .slotsjuice-footer .footer-container {
        padding: 0 4px;
    }
    
    .slotsjuice-footer .footer-content-wrapper {
        padding: 0 6px 8px;
    }
    
    /* Mobil optimalizált spacing */
    .slotsjuice-footer .footer-hero {
        padding: 20px 0;
        gap: 20px;
    }
    
    /* Footer Navigation Cards - 2 Columns EXTRA SZÉP */
    .slotsjuice-footer .footer-navigation {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 25px;
        padding: 0 4px;
    }
    
    .slotsjuice-footer .connection-bar {
        padding: 16px 12px;
        margin: 20px 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        border: 1.5px solid rgba(255, 107, 53, 0.15);
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.12);
    }
    
    .slotsjuice-footer .social-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .slotsjuice-footer .newsletter-inline {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: center;
    }
    
    .slotsjuice-footer .newsletter-inline .email-input {
        width: 100%;
        max-width: 280px;
        padding: 12px 16px;
        font-size: 14px;
        border: 2px solid rgba(255, 107, 53, 0.2);
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
        transition: all 0.3s ease;
    }
    
    .slotsjuice-footer .newsletter-inline .email-input:focus {
        border-color: var(--juice-orange);
        box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15), 0 6px 20px rgba(255, 107, 53, 0.2);
        transform: translateY(-2px);
    }
    
    .slotsjuice-footer .newsletter-inline .subscribe-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 14px;
        font-weight: 700;
        border-radius: 25px;
        background: var(--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);
    }
    
    .slotsjuice-footer .newsletter-inline .subscribe-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    }
    
    /* Szebb brand szekció mobilon */
    .slotsjuice-footer .brand-title {
        font-size: 26px;
        line-height: 1.1;
    }
    
    .slotsjuice-footer .brand-tagline {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .slotsjuice-footer .brand-description {
        font-size: 14px;
        line-height: 1.5;
        opacity: 0.9;
    }
    
    .slotsjuice-footer .logo-icon {
        font-size: 3rem;
    }
    
    /* Quick Stats - SZÉPÍTETT Horizontal Row Mobilon */
    .slotsjuice-footer .quick-stats {
        flex-direction: row;
        gap: 6px;
        align-items: stretch;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 25px;
    }
    
    .slotsjuice-footer .stat-card {
        flex: 1;
        min-width: 0;
        margin: 0;
        padding: 16px 6px;
        text-align: center;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(8px);
        border: 1.5px solid rgba(255, 107, 53, 0.2);
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.15);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .slotsjuice-footer .stat-card:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 107, 53, 0.25);
        border-color: var(--juice-orange);
    }
    
    .slotsjuice-footer .stat-number {
        font-size: 20px;
        margin-bottom: 6px;
        font-weight: 800;
        background: var(--juice-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .slotsjuice-footer .stat-label {
        font-size: 10px;
        line-height: 1.3;
        font-weight: 600;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        opacity: 0.85;
    }
    
    /* Szebb mobil navigációs kártyák */
    .slotsjuice-footer .nav-card {
        padding: 14px 10px;
        min-height: 130px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1.5px solid rgba(255, 107, 53, 0.15);
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.12);
    }
    
    .slotsjuice-footer .nav-card:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
    }
    
    .slotsjuice-footer .card-header {
        margin-bottom: 10px;
    }
    
    .slotsjuice-footer .card-header h3 {
        font-size: 14px;
        margin-bottom: 0;
        font-weight: 700;
        line-height: 1.3;
    }
    
    .slotsjuice-footer .card-emoji {
        font-size: 1.4rem;
    }
    
    .slotsjuice-footer .nav-link {
        font-size: 11px;
        padding: 4px 6px;
        line-height: 1.2;
        border-radius: 8px;
        font-weight: 500;
        margin-bottom: 2px;
    }
    
    .slotsjuice-footer .nav-link:hover {
        background: rgba(255, 107, 53, 0.15);
        transform: translateX(4px);
        color: var(--juice-orange-dark);
    }
    
    .slotsjuice-footer .legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
        margin-bottom: 15px;
    }
    
    .slotsjuice-footer .legal-link {
        font-size: 13px;
        font-weight: 600;
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 20px;
        border: 1px solid rgba(255, 107, 53, 0.15);
        transition: all 0.3s ease;
    }
    
    .slotsjuice-footer .legal-link:hover {
        background: rgba(255, 107, 53, 0.1);
        border-color: var(--juice-orange);
        transform: translateY(-2px);
    }
    
    /* Szebb footer bottom mobilon */
    .slotsjuice-footer .footer-bottom {
        padding: 25px 0;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        border-radius: var(--juice-radius);
        margin-top: 20px;
    }
    
    .slotsjuice-footer .footer-disclaimer {
        margin-top: 20px;
        padding: 16px;
        background: rgba(255, 107, 53, 0.08);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 107, 53, 0.2);
        border-radius: var(--juice-radius);
    }
    
    .slotsjuice-footer .disclaimer-text {
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
    }
}

/* Small Mobile (below 480px) - EXTRA SZÉP*/
@media (max-width: 479px) {
    .slotsjuice-footer {
        padding: 4px 0;
    }
    
    .slotsjuice-footer .footer-wrapper {
        border-radius: 12px;
        margin: 0 2px;
        border: 1px solid rgba(255, 107, 53, 0.25);
        overflow: hidden;
    }
    
    .slotsjuice-footer .footer-content-wrapper {
        padding: 0 6px 6px;
    }
    
    .slotsjuice-footer .footer-hero {
        padding: 18px 0;
        gap: 20px;
    }
    
    /* Newsletter kis mobil szépítés */
    .slotsjuice-footer .newsletter-inline .email-input {
        max-width: 260px;
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .slotsjuice-footer .newsletter-inline .subscribe-btn {
        max-width: 260px;
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .slotsjuice-footer .connection-bar {
        padding: 14px 10px;
        margin: 16px 0;
    }
    
    .slotsjuice-footer .connect-title h3 {
        font-size: 16px;
    }
    
    .slotsjuice-footer .connect-subtitle {
        font-size: 13px;
    }
    
    .slotsjuice-footer .brand-title {
        font-size: 22px;
    }
    
    .slotsjuice-footer .logo-icon {
        font-size: 2.5rem;
    }
    
    /* EXTRA szép 2 oszlop kis képernyőkön */
    .slotsjuice-footer .footer-navigation {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        margin-bottom: 16px;
    }
    
    .slotsjuice-footer .nav-card {
        padding: 12px 8px;
        min-height: 120px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 107, 53, 0.2);
    }
    
    .slotsjuice-footer .card-header {
        margin-bottom: 8px;
    }
    
    .slotsjuice-footer .card-header h3 {
        font-size: 13px;
        margin-bottom: 0;
        line-height: 1.2;
    }
    
    .slotsjuice-footer .card-emoji {
        font-size: 1.2rem;
    }
    
    .slotsjuice-footer .nav-link {
        font-size: 10px;
        padding: 3px 4px;
        line-height: 1.1;
        margin-bottom: 1px;
    }
    
    /* EXTRA szép stats kis képernyőkön */
    .slotsjuice-footer .quick-stats {
        gap: 4px;
        margin-bottom: 20px;
    }
    
    .slotsjuice-footer .stat-card {
        padding: 12px 4px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 107, 53, 0.25);
    }
    
    .slotsjuice-footer .stat-number {
        font-size: 18px;
        font-weight: 800;
    }
    
    .slotsjuice-footer .stat-label {
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 0.2px;
    }
    
    /* SZÉP social buborokok kis képernyőn */
    .slotsjuice-footer .social-bubble {
        width: 38px;
        height: 38px;
        font-size: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .slotsjuice-footer .social-bubble:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    /* SZEBB safety badges kis mobil */
    .slotsjuice-footer .safety-badges {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
        justify-content: center;
    }
    
    .slotsjuice-footer .safety-badge {
        padding: 6px 10px;
        font-size: 11px;
        border-radius: 15px;
        background: var(--juice-gradient);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
    }
    
    .slotsjuice-footer .safety-badge.age-restriction {
        background: var(--juice-green);
        box-shadow: 0 3px 10px rgba(46, 125, 50, 0.3);
    }
    
    .slotsjuice-footer .juice-drop {
        font-size: 1.8rem;
        opacity: 0.1;
    }
    
    .slotsjuice-footer .legal-links {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        margin-bottom: 12px;
    }
    
    .slotsjuice-footer .legal-link {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    /* SZEBB brand extra kis mobil */
    .slotsjuice-footer .brand-title {
        font-size: 24px;
    }
    
    .slotsjuice-footer .logo-icon {
        font-size: 2.5rem;
    }
    
    .slotsjuice-footer .brand-tagline {
        font-size: 13px;
    }
    
    .slotsjuice-footer .brand-description {
        font-size: 13px;
        line-height: 1.4;
    }
}
