/* SPLASHSCREEN */
#splashScreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../Game/Graphics/Images/Backgrounds/GFX_ambientBackground_splash.jpg?_t=20250902112715);
    background-size: contain;
    background-position: center;
    z-index: 9999999;
    opacity: 1;
    overflow: hidden;
    transition: opacity 1s;
    transform: translate3d(0, 0, 0);
}

#splashScreen .screenOverlay {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(6, 17, 53, 0.9) 85%, rgba(6, 17, 53, 0.95) 100%);
}

#splashScreen._disabled {
    opacity: 0;
}

#splashScreen._loaded {
    opacity: 1;
    transition: none;
}

#root:has(#splashScreen) #screen {
    display: none;
}

#splashScreen .paytablePage {
    position: unset;
    width: 100%;
    height: calc(100% - 188px);
    box-sizing: border-box;
    padding: 0 56px;
}

#splashScreen .paytablePage .customContent {
    height: 100%;
}

#splashScreen .splashLoadingInfo {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 140px;
    text-align: center;
    margin: 0 auto;
}

#splashScreen .splashProgressBarHolder {
    margin-top: 22px;
}

#splashScreen._loaded .splashProgressBarHolder {
    display: none;
}

#splashScreen._error .splashProgressBarHolder {
    margin-top: 12px;
}

#splashScreen .splashProgressBar {
    width: 504px;
    height: 8px;
    background: #112357;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    margin: 0 auto;
}

#splashScreen._error .splashProgressBar {
    display: block;
    width: 100%;
    height: auto;
    font-size: 24px;
    line-height: 28px;
    color: #e4161a;
    letter-spacing: 1px;
    background: none;
    box-shadow: none;
    box-sizing: border-box;
    padding: 0 20px;
}

#splashScreen .splashProgressBarOverlay {
    height: 100%;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#84b0e5+0,e2e9ff+48,9bccf4+50,62b9eb+58,71b4ed+60,71b4ed+60,84b0e5+100 */
    background: rgb(132, 176, 229); /* Old browsers */
    background: -moz-linear-gradient(
        top,
        rgba(132, 176, 229, 1) 0%,
        rgba(226, 233, 255, 1) 48%,
        rgba(155, 204, 244, 1) 50%,
        rgba(98, 185, 235, 1) 58%,
        rgba(113, 180, 237, 1) 60%,
        rgba(113, 180, 237, 1) 60%,
        rgba(132, 176, 229, 1) 100%
    ); /* FF3.6-15 */
    background: -webkit-linear-gradient(
        top,
        rgba(132, 176, 229, 1) 0%,
        rgba(226, 233, 255, 1) 48%,
        rgba(155, 204, 244, 1) 50%,
        rgba(98, 185, 235, 1) 58%,
        rgba(113, 180, 237, 1) 60%,
        rgba(113, 180, 237, 1) 60%,
        rgba(132, 176, 229, 1) 100%
    ); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(
        to bottom,
        rgba(132, 176, 229, 1) 0%,
        rgba(226, 233, 255, 1) 48%,
        rgba(155, 204, 244, 1) 50%,
        rgba(98, 185, 235, 1) 58%,
        rgba(113, 180, 237, 1) 60%,
        rgba(113, 180, 237, 1) 60%,
        rgba(132, 176, 229, 1) 100%
    ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#84b0e5', endColorstr='#84b0e5', GradientType=0); /* IE6-9 */
}

#splashScreen._error .splashProgressBarOverlay {
    background: none;
}

#splashScreen #splashContinueButton {
    display: none;
    height: 40px;
    line-height: 40px;
    font-size: 26px;
    font-weight: bold;
    color: #072543;
    text-shadow: 0 1px 1px #fff;
    text-align: center;
    letter-spacing: 1px;
    border-radius: 33px;
    border: 2px solid #fff;
    box-shadow: 0 0 1px #fff;
    background-image: -ms-linear-gradient(top, #f4f6fa 0%, #809fc9 50%, #809fc9 75%, #f4f6fa 100%);
    background-image: -moz-linear-gradient(top, #f4f6fa 0%, #809fc9 50%, #809fc9 75%, #f4f6fa 100%);
    background-image: -o-linear-gradient(top, #f4f6fa 0%, #809fc9 50%, #809fc9 75%, #f4f6fa 100%);
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #f4f6fa),
        color-stop(50, #809fc9),
        color-stop(75, #809fc9),
        color-stop(100, #f4f6fa)
    );
    background-image: -webkit-linear-gradient(top, #f4f6fa 0%, #809fc9 50%, #809fc9 75%, #f4f6fa 100%);
    background-image: linear-gradient(to bottom, #f4f6fa 0%, #809fc9 50%, #809fc9 75%, #f4f6fa 100%);
    padding: 0 60px;
    margin: 4px 16px;
    cursor: pointer;
    animation: teaseContinueBtn 1s infinite 0.5s;
}

#splashScreen._loaded #splashContinueButton {
    display: inline-block;
}

#splashScreen #splashContinueButton:hover {
    box-shadow: 0 0 8px #ffffff;
    -webkit-filter: brightness(1.3);
    filter: brightness(1.3);
    animation: none;
}

#splashScreen #splashContinueButton:active {
    line-height: 41px;
}

@-webkit-keyframes teaseContinueBtn {
    50% {
        box-shadow: 0 0 8px #ffffff;
        -webkit-filter: brightness(1.3);
        filter: brightness(1.3);
    }
}

@keyframes teaseContinueBtn {
    50% {
        box-shadow: 0 0 8px #ffffff;
        -webkit-filter: brightness(1.3);
        filter: brightness(1.3);
    }
}

#splashScreen #splashContinueButton,
#splashScreen #splashContinueButton div {
    transform: translate3d(0, 0, 0);
}

#splashScreen .synotLogo {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    margin: 0 auto;
    pointer-events: none;
}

/* custom */
#splashScreen .splashContent {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(100% - 140px);
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

#splashScreen .gameLogoContainer {
    position: absolute;
    top: 17px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#splashScreen .queenContainer {
    position: absolute;
    left: 67px;
    top: -40px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.featureContainer {
    position: absolute;
    top: 147px;
    left: 28%;
    width: 56%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.featureContainer .bg-flare-particles {
    position: absolute;
    top: -37px;
    left: -113px;
    mix-blend-mode: lighten;
}

.featureContainer .fullscreen-mysteries-glow {
    position: absolute;
    mix-blend-mode: lighten;
}

.featureContentContainer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.fullscreenMysteriesContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    left: 30px;
}

.mysteryContainer {
    width: 128px;
    height: 129px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.mysteryContainer div {
    position: relative;
}

.mysteryContainerInner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: scale(0.5);
}

.mysteryMultiplierContainer {
    position: relative;
    width: 210px;
    height: 210px;
}

.mysteryMultiplierContainer div {
    position: absolute;
    top: 0;
    left: 0;
}

.mystery-text {
    margin-top: -11px;
    position: relative;
}

#splashScreen .mystery-text {
    margin-top: -33px;
}

@-webkit-keyframes animation_mystery_multiplier_1 {
    0% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes animation_mystery_multiplier_1 {
    0% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes animation_mystery_multiplier_2 {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    60% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}
@keyframes animation_mystery_multiplier_2 {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    60% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes animation_mystery_multiplier_3 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}
@keyframes animation_mystery_multiplier_3 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes animation_mystery_multiplier_4 {
    0% {
        opacity: 0;
    }

    70% {
        opacity: 0;
    }

    80% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes animation_mystery_multiplier_4 {
    0% {
        opacity: 0;
    }

    70% {
        opacity: 0;
    }

    80% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.mysteryMultiplierContainer .mystery-multiplier-x10 {
    animation: animation_mystery_multiplier_1 7s infinite;
    -webkit-animation: animation_mystery_multiplier_1 7s infinite;
    opacity: 1;
}

.mysteryMultiplierContainer .mystery-multiplier-x5 {
    animation: animation_mystery_multiplier_2 7s infinite;
    -webkit-animation: animation_mystery_multiplier_2 7s infinite;
    opacity: 1;
}

.mysteryMultiplierContainer .mystery-multiplier-x3 {
    animation: animation_mystery_multiplier_3 7s infinite;
    -webkit-animation: animation_mystery_multiplier_3 7s infinite;
    opacity: 1;
}

.mysteryMultiplierContainer .mystery-multiplier-x2 {
    animation: animation_mystery_multiplier_4 7s infinite;
    -webkit-animation: animation_mystery_multiplier_4 7s infinite;
    opacity: 1;
}
.paytable._disabled .mysteryMultiplierContainer .mystery-multiplier-x2,
.paytable._disabled .mysteryMultiplierContainer .mystery-multiplier-x3,
.paytable._disabled .mysteryMultiplierContainer .mystery-multiplier-x5,
.paytable._disabled .mysteryMultiplierContainer .mystery-multiplier-x10 {
    animation: none !important;
    -webkit-animation: none !important;
}

/****************** splashScreen ********************/

.splScr {
    background-image: url(../Game/Graphics/SpriteSheets/CSS_splashScreen.png?_t=20250902112715);
    background-repeat: no-repeat;
}

/*******************************************************/

.bg-flare-particles {
    background-position: -1px -1px;
    width: 1091px;
    height: 498px;
}

.fullscreen-mysteries-glow {
    background-position: -1px -501px;
    width: 501px;
    height: 387px;
}

.fullscreen-mysteries {
    background-position: -504px -501px;
    width: 501px;
    height: 387px;
}

.gameLogo {
    background-position: -1094px -1px;
    width: 917px;
    height: 109px;
}

.mystery-diamond {
    background-position: -1094px -112px;
    width: 221px;
    height: 210px;
}

.mystery-multiplier-x2 {
    background-position: -1308px -324px;
    width: 210px;
    height: 210px;
}

.mystery-multiplier-x3 {
    background-position: -1317px -112px;
    width: 210px;
    height: 210px;
}

.mystery-multiplier-x5 {
    background-position: -1308px -536px;
    width: 210px;
    height: 210px;
}

.mystery-multiplier-x10 {
    background-position: -1308px -748px;
    width: 210px;
    height: 210px;
}

.mystery-regular {
    background-position: -1529px -112px;
    width: 210px;
    height: 210px;
}

.mystery-text-1-10x {
    background-position: -1px -957px;
    width: 177px;
    height: 65px;
}

.mystery-text-10-100x {
    background-position: -1px -890px;
    width: 257px;
    height: 65px;
}

.queen {
    background-position: -1007px -501px;
    width: 299px;
    height: 381px;
}

.synotLogo {
    background-position: -180px -957px;
    width: 304px;
    height: 61px;
}
/*******************************************************/

/* ************************* LANGUAGE OVERRIDES ************************* */

/* el-GR */
body[language='el'] #splashContinueButton,
body[language='el-GR'] #splashContinueButton,
body[language='el'] #splashScreen._error .splashProgressBar,
body[language='el-GR'] #splashScreen._error .splashProgressBar {
    font-family: 'Bebas Neue Greek';
}

/* vi-VN */
body[language='vi'] #splashContinueButton,
body[language='vi-VN'] #splashContinueButton,
body[language='vi'] #splashScreen._error .splashProgressBar,
body[language='vi-VN'] #splashScreen._error .splashProgressBar {
    font-family: 'Bison Demi Bold';
}

/* MOBILE PORTRAIT OVERRIDES */
.portrait #splashScreen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
}

.portrait #splashScreen .splashContent {
    margin: 0 0 200px;
}

.portrait #splashScreen .paytablePage {
    bottom: unset;
    height: auto;
    padding: 0;
    margin: 0;
    z-index: 1;
}

.portrait #splashScreen .splashLoadingInfo {
    width: 100%;
    height: 200px;
    z-index: 1;
}

.portrait #splashScreen .synotLogo {
    bottom: 56px;
}

.portrait .splashContent {
    display: flex;
    flex-direction: column;
}

.portrait .featureContainer {
    left: 0;
    width: 100%;
    flex-direction: column;
    top: 43px;
    position: relative;
}
.portrait .featureContainer .fullscreenMysteriesContainer {
    left: 0;
}
.portrait .featureContainer .featureContentContainer {
    flex-direction: row;
}

.portrait #splashScreen .gameLogoContainer {
    width: unset;
    transform: scale(0.7);
    left: unset;
    position: relative;
    top: 40px;
}
.portrait #splashScreen .queenContainer {
    position: unset;
    height: unset;
    transform: scale(0.8);
    margin-top: 67px;
}

.portrait #splashScreen .contentContainer {
    display: flex;
    flex-direction: column;
}
.portrait #splashScreen .featureContainer .bg-flare-particles {
    left: -213px;
}
/* MOBILE XS */

.portrait.mobile-xs #splashScreen .featureContainer {
    top: 0;
}

.portrait.mobile-xs #splashScreen .queenContainer {
    transform: scale(0.5);
    margin-top: -87px;
    margin-bottom: -93px;
}

.portrait.mobile-xs #splashScreen .gameLogoContainer {
    top: 20px;
}
/* TABLET */
.portrait.tablet #splashScreen .contentContainer {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-self: center;
    margin-left: 33px;
}
.portrait.tablet #splashScreen .featureContainer {
    width: unset;
    transform: scale(0.7);
}

.portrait.tablet #splashScreen .featureContainer .bg-flare-particles {
    transform: scaleX(0.8);
    left: -277px;
}

.portrait.tablet #splashScreen .queenContainer {
    margin-top: 0;
}

.portrait.tablet #splashScreen .gameLogoContainer {
    top: 93px;
}
/* special resolutions fix */

/* MOBILE PORTRAIT LANUGAGE OVERRIDES */
body[language='ka'].portrait #splashScreen #splashContinueButton,
body[language='ka-GE'].portrait #splashScreen #splashContinueButton,
body[language='ja'].portrait #splashScreen #splashContinueButton,
body[language='ja-JP'].portrait #splashScreen #splashContinueButton {
    font-size: 20px;
}
