/*
 Theme Name:   Kadence Child
 Theme URI:    https://example.com/kadence-child/
 Description:  Kadence Child Theme
 Author:       Your Name
 Author URI:   https://example.com
 Template:     kadence
 Version:      1.0.2
 Tags:         customizable, modern, responsive-layout, gutenberg, header builder, footer builder
 Text Domain:  kadencechild
*/

/* Theme customization starts here
-------------------------------------------------------------- */


.counter-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.digit {
	position: relative;
	width: 60px;
	height: 97px;
	margin: 5px;
	overflow: hidden;
	font-size: 70px;
	font-weight: bold;
	text-align: center;
	border-radius: 18px;
	box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .49);
	border: 1px solid #f8bb22;
	background-image: linear-gradient(180deg, #fffae5, #ffdb00 51%, #ffb600);
}

.digit span {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.3s ease-in-out;
}

.saperator span{
	color: #ffdb00;
}

.digit span.up {
	transform: translateY(-100%);
}

.digit span.down {
	transform: translateY(100%);
}

.digit span.current {
	transform: translateY(0);
	animation: none;
}

/* Random animations */
@keyframes shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-5px); }
	75% { transform: translateX(5px); }
}

@keyframes scale {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.2); }
}

@keyframes rotate {
	0% { transform: rotate(0deg); }
	50% { transform: rotate(20deg); }
	100% { transform: rotate(0deg); }
}

@keyframes bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-15px); }
}

/* Add animation classes */
.animate-shake { animation: shake 0.5s; }
.animate-scale { animation: scale 0.5s; }
.animate-rotate { animation: rotate 0.5s; }
.animate-bounce { animation: bounce 0.5s; }


.jackpot-wrapper{
	width: 1200px;
	height: 272px;
	background: url('/wp-content/uploads/2025/04/jackpot-bg.e383fdc.png') no-repeat 50% / contain;
	position: relative;
	padding: 130px 0 0 265px;
	font-size: 70px;
	font-weight: 700;
	color: #000;
}


/*==================================================
>>>       FOOTER     
==================================================*/
.site-footer-wrap .wp-block-gallery{
	display: flex;	
    flex-wrap: wrap;
    gap: 10px !important;
}
.site-footer-wrap .wp-block-gallery figure {
	width: auto !important;
	flex-grow: initial !important;
}

.site-footer-wrap .wp-block-gallery img {
	height: 42px !important;
	width: auto !important;
	object-fit: contain !important;
/*	filter: grayscale(100%) brightness(155%) contrast(0.4);*/
	padding: 0px 10px 10px 0px;
	flex: auto !important;
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-ms-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}
.site-footer-wrap .wp-block-gallery img:hover{
/*	filter: grayscale(0%);*/
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-ms-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}

.site-footer-wrap ul{
	margin: 0 0 0 15px;
}
.site-footer-wrap ul li a{

}

.site-top-footer-inner-wrap h3{
	font-weight: 500;
	font-size: 16px;
}
/*-----------------------*\
    SITE FOOTER TOP
\*-----------------------*/
.site-top-footer-inner-wrap{
	grid-template-columns: 25% 25% 50% !important;
}
/*==================================================
>>>       HOME     
==================================================*/
/*-----------------------*\
    NOTIFICATION
\*-----------------------*/
.nwm-notification{
	font-size: 14px;
    color: #fff;
    background: linear-gradient(0deg, #222 -5%, #101010 93%);
    border: 2px solid var(--global-palette3);
    margin-bottom: 41px;
    border-radius: 6px;
    height: 35px;
    
}
.nwm-notification > div{
	display: flex;
}
.nwm-notification ul{
	list-style: none;
	
	display: flex;
}
.nwm-notification ul li{
	line-height: 35px;
	margin-right: 70px;
	cursor: pointer;
	display: block;
}
.nwm-notification svg{
	display: flex;
	width: 19px;
	height: 15px;
	color: var(--global-palette3);
}
.notice_icon{
	display: flex;
    align-items: center;
}
/*-----------------------*\
    HOT GAMES
\*-----------------------*/
.hot-games{
	margin-top: 30px;
}
.hot-games .wp-block-column{
	position : relative ;
	border: 1px solid var(--global-palette3);
    background: #302e29;
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 5px;
}
.hot-games .wp-block-column figure{
	margin-bottom: 5px;
}
.hot-games .wp-block-column figure img{
	max-width: 100%;
	width: 100%;
}
.hot-games .wp-block-column figcaption{
	position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    border-radius: 0 0 8px 0;
    color: #fff;
    font-size: 12px;
    padding: 0 8px;
    height: 33px;
    background-color: var(--global-palette4);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 80%;
    margin: 0;
}
.hot-games .wp-block-column p{
	margin: 0;
	font-size: 14px;
    font-weight: 500;
    color: #fff;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    text-align: center;
}
.hot-games .wp-block-column .wp-block-buttons{
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .2s;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.7);
	flex-direction: column;
	gap: 10px;
	transform: scale(.8);
	opacity: 0;
	border-radius: 8px;
}
.hot-games .wp-block-column:hover .wp-block-buttons{
	opacity:1;
	transform: scale(1);
	transition: .2s;
}
.hot-games .wp-block-column .wp-block-buttons .wp-block-button__link{
	white-space: nowrap;
	cursor: pointer;
	background: var(--global-palette3);
	height: 36px;
	color: #fff;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	color: #1f1f1f;
	width: 125px;
	height: 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .2s;
}

.hot-games .wp-block-column .wp-block-buttons .wp-block-button__link:hover{
	background:#f5d483;
	opacity:1;
}
