:root {

    --jackpot-primary-color: #ff6b6b;

    --jackpot-secondary-color: #5f27cd;

    --jackpot-dark-bg: #222831;

    --jackpot-light-bg: #f2f2f2;

    --jackpot-jackpot-glow: 0 0 10px rgba(255, 107, 107, 0.8);

    --jackpot-card-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

    --jackpot-primary-text: #eeeeee;

    --jackpot-secondary-text: #393e46;

}



.elementor-widget-jackpots * {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



.jackpot-container {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 2rem;

    width: 100%;

    max-width: 100%;

    margin: 0;

    padding: 0;

}



.jackpot-card {

    background: linear-gradient(145deg, #ffffff, #e6e6e6);

    border-radius: 20px;

    padding: 1.5rem;

    box-shadow: var(--jackpot-card-shadow);

    transition: transform 0.3s, box-shadow 0.3s;

    overflow: hidden;

    position: relative;

}



.jackpot-card.glass-card {

    background: rgba(255, 255, 255, 0.05);

    -webkit-backdrop-filter: blur(10px);

    backdrop-filter: blur(10px);

    border-radius: 20px;

    border: 1px solid rgba(255, 255, 255, 0.1);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    transition: all 0.3s ease;

}



.jackpot-theme-dark .jackpot-card {

    background: linear-gradient(145deg, #323a45, #252a33);

    color: var(--jackpot-primary-text);

}



.jackpot-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);

}



.jackpot-card.daily {

    border-top: 4px solid var(--jackpot-primary-color);

}



.jackpot-card.weekly {

    border-top: 4px solid var(--jackpot-secondary-color);

}



.jackpot-card.mega {

    border-top: 4px solid #feca57;

}



.jackpot-title {

    font-size: 1.6rem;

    margin-bottom: 1rem;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 0.5rem 0;

}



.jackpot-title i {

    background: linear-gradient(135deg, var(--jackpot-primary-color), var(--jackpot-secondary-color));

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    color: transparent;

    font-size: 2rem;

}



/* Fallback az ikonokhoz, ha a gradient nem működik */

@supports not (background-clip: text) {

    .jackpot-title i {

        background: none;

        -webkit-text-fill-color: var(--jackpot-primary-color);

        color: var(--jackpot-primary-color);

    }

}



.jackpot-amount {

    font-size: 2.5rem;

    font-weight: 700;

    margin: 1rem 0;

    color: var(--jackpot-secondary-color);

    position: relative;

    transition: all 0.3s;

}



.jackpot-amount::after {

    content: '';

    position: absolute;

    width: 100%;

    height: 5px;

    bottom: -10px;

    left: 0;

    background: linear-gradient(90deg, transparent, var(--jackpot-secondary-color), transparent);

    opacity: 0.5;

}



.jackpot-theme-dark .jackpot-amount {

    color: var(--jackpot-primary-color);

    text-shadow: var(--jackpot-jackpot-glow);

}



.jackpot-info {

    display: flex;

    justify-content: space-between;

    margin-top: 1.5rem;

    padding-top: 1rem;

    border-top: 1px solid rgba(0, 0, 0, 0.1);

}



.jackpot-theme-dark .jackpot-info {

    border-top: 1px solid rgba(255, 255, 255, 0.1);

}



.info-item {

    text-align: center;

}



.info-label {

    font-size: 0.8rem;

    opacity: 0.8;

    margin-bottom: 0.3rem;

}



.info-value {

    font-size: 1.1rem;

    font-weight: 600;

}



.timer-container {

    display: flex;

    justify-content: space-around;

    margin-top: 1rem;

}



.timer-item {

    text-align: center;

    background: rgba(0, 0, 0, 0.05);

    border-radius: 8px;

    padding: 0.5rem 1rem;

    min-width: 60px;

}



.jackpot-theme-dark .timer-item {

    background: rgba(0, 0, 0, 0.2);

}



.timer-value {

    font-size: 1.2rem;

    font-weight: 700;

}



.timer-label {

    font-size: 0.7rem;

    opacity: 0.8;

}



.jackpot-badge {

    position: absolute;

    top: 10px;

    right: 15px;

    background: linear-gradient(90deg, var(--jackpot-primary-color), #ff3c00);

    color: white;

    padding: 0.4rem 1rem;

    border-radius: 30px;

    font-size: 0.9rem;

    font-weight: 700;

    box-shadow: 0 3px 10px rgba(255, 60, 0, 0.3);

    letter-spacing: 1px;

}



.jackpot-card.daily .jackpot-badge {

    background: linear-gradient(90deg, #ff6b6b, #ff3c00);

}



.jackpot-card.weekly .jackpot-badge {

    background: linear-gradient(90deg, #5f27cd, #341f97);

}



.jackpot-card.mega .jackpot-badge {

    background: linear-gradient(90deg, #feca57, #ff9f43);

}



/* Animation for jackpot value - DISABLED */

/* Pulse animation removed to prevent flickering/resizing effect */



/* No flash effects - clean counter updates only */



/* Play Now button */

.jackpot-play-btn {

    display: inline-block;

    margin-top: 1.5rem;

    background: linear-gradient(90deg, var(--jackpot-primary-color), var(--jackpot-secondary-color));

    color: white;

    padding: 0.8rem 1.5rem;

    border-radius: 50px;

    font-weight: 700;

    text-decoration: none;

    text-align: center;

    box-shadow: 0 5px 15px rgba(95, 39, 205, 0.4);

    transition: all 0.3s;

    width: 100%;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-size: 1rem;

    border: none;

    cursor: pointer;

}



.jackpot-play-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(95, 39, 205, 0.6);

}



.jackpot-play-btn:active {

    transform: translateY(1px);

}



/* Responsive styles */

@media (max-width: 1024px) {

    .jackpot-container {

        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

        gap: 1.5rem;

        padding: 0 10px;

    }

}



@media (max-width: 767px) {

    .elementor-widget-jackpots {

        width: 100% !important;

        max-width: 100% !important;

        margin: 0 !important;

        padding: 0 !important;

    }

    

    .jackpot-widget-container {

        width: 100%;

        max-width: 100%;

        padding: 0;

        margin: 0;

    }

    

    .jackpot-container {

        grid-template-columns: 1fr;

        gap: 1rem;

        padding: 10px;

        width: 100%;

        max-width: 100%;

        margin: 0;

    }

    

    .jackpot-card {

        border-radius: 15px;

        padding: 1.2rem;

        margin: 0 0 1rem 0;

        width: 100%;

        max-width: 100%;

        box-sizing: border-box;

    }

    

    .jackpot-title {

        font-size: 1.4rem;

    }

    

    .jackpot-amount {

        font-size: 2rem;

    }

    

    .jackpot-info {

        flex-direction: column;

        gap: 0.8rem;

    }

    

    .info-item {

        display: flex;

        justify-content: space-between;

        text-align: left;

        padding: 0.3rem 0;

        border-bottom: 1px solid rgba(0, 0, 0, 0.05);

    }

    

    .jackpot-theme-dark .info-item {

        border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    }

    

    .info-item:last-child {

        border-bottom: none;

    }

    

    .info-value {

        text-align: right;

    }

    

    .jackpot-badge {

        top: 5px;

    }

    

    /* Mobile app-like styles - csak akkor aktív, ha a mobile_app_appearance be van kapcsolva */

    .jackpot-mobile-wrapper {

        padding: 12px;

        background: #f8f8f8;

        border-radius: 30px;

        box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.05);

        max-width: 420px;

        margin: 0 auto;

    }

    

    .jackpot-theme-dark .jackpot-mobile-wrapper {

        background: #1a1a1a;

        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.05);

    }

    

    .jackpot-mobile-header {

        display: flex;

        justify-content: space-between;

        align-items: center;

        padding: 10px 15px;

        border-bottom: 1px solid rgba(0, 0, 0, 0.05);

        margin-bottom: 15px;

    }

    

    .jackpot-theme-dark .jackpot-mobile-header {

        border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    }

    

    .jackpot-mobile-title {

        font-weight: 700;

        font-size: 1.2rem;

    }

    

    .jackpot-mobile-back {

        font-size: 1.2rem;

        opacity: 0.7;

    }

}



/* Extra small screens */

@media (max-width: 480px) {

    .jackpot-container {

        padding: 5px;

        gap: 0.8rem;

    }

    

    .jackpot-card {

        padding: 1rem;

        border-radius: 12px;

    }

    

    .jackpot-title {

        font-size: 1.2rem;

    }

    

    .jackpot-amount {

        font-size: 1.8rem;

    }

}



.jackpot-theme-toggle {

    position: absolute;

    top: 15px;

    right: 15px;

    z-index: 10;

    display: flex;

    background: rgba(255, 255, 255, 0.2);

    border-radius: 20px;

    padding: 5px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}



.toggle-icon {

    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    cursor: pointer;

    transition: all 0.3s ease;

    color: #333;

}



.toggle-icon.active {

    background: rgba(255, 255, 255, 0.9);

}



.toggle-icon.dark {

    margin-right: 5px;

}



.jackpot-theme-dark .toggle-icon {

    color: #f2f2f2;

}



.jackpot-theme-dark .toggle-icon.active {

    background: rgba(0, 0, 0, 0.7);

} 