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

#splashScreen .screenOverlay {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    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;
}

#splashScreen .paytablePage {
    top: unset;
    bottom: 144px;
    width: 100%;
    height: 456px;
    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: 0.67px;
    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: 0.67px;
    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 .gameLogo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

#splashScreen .wrapper {
    justify-content: flex-start;
}

#splashScreen .wrapper > .symbolsRow.special {
    height: 95%;
}

#splashScreen .container {
    width: 49%;
    overflow: hidden;
}

#splashScreen .container.wrathOfZeus {
    margin-right: 2%;
}

#splashScreen .symbolTitle {
    position: relative;
    height: 64px;
    margin: -12px 0 -8px;
    z-index: 1;
}

#splashScreen .wrathOfZeus .symbolTitle .gradientBg {
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    width: 90%;
    height: 50%;
    border-radius: 16px;
    background: radial-gradient(ellipse farthest-side at center center, #72faff 60%, #4b82fe 100%);
    margin: 0 auto;
    filter: blur(12px);
}

#splashScreen .fsFeature .symbolTitle {
    height: 108px;
    margin: 0;
}

#splashScreen .symbolTitle div {
    position: relative;
    margin: 0 auto;
}

#splashScreen .wrathOfZeus .symbol {
    justify-content: center;
    height: calc(100% - 40px);
}

#splashScreen .wrathOfZeus .symbolImage {
    flex-shrink: 0;
    width: 436px;
    height: 110px;
    margin: 0 auto;
}

#splashScreen .wrathOfZeus .symbolImage.reels {
    width: 267px;
    height: 148px;
    margin: 4px auto 12px;
}

#splashScreen .wrathOfZeus .symbolDescription {
    height: auto;
    padding: 0 20px;
}

#splashScreen .wrathOfZeus .symbolDescription .text strong:first-of-type {
    display: inline-block;
}

#splashScreen .fsFeature .featureWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 108px;
}

#splashScreen .fsFeature .featureWrapper .figure,
#splashScreen .fsFeature .featureWrapper .text {
    line-height: 108px;
    text-shadow: 0 2px 2px #000000;
}

#splashScreen .fsFeature .featureWrapper .figure {
    font-size: 80px;
    margin-right: 8px;
}

#splashScreen .fsFeature .featureWrapper .text {
    font-size: 32px;
    margin: 0 8px;
}

#splashScreen .fsFeature .symbolsRow.special {
    height: calc(100% - 108px);
}

#splashScreen .fsFeature .symbol.bonus,
#splashScreen .fsFeature .symbol.bonus .symbolImage {
    width: 158px;
    height: 103px;
}

#splashScreen .fsFeature .symbol.fsConfig {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    background: none;
    padding-bottom: 0;
    margin: 0;
}

#splashScreen .fsFeature .symbol.fsConfig .gradientBg {
    position: absolute;
    top: 0;
    bottom: 60px;
    left: 0;
    right: 0;
    width: 80%;
    height: 45%;
    border-radius: 80px;
    background: radial-gradient(ellipse farthest-side at center center, #ff8772 50%, #fabc1c 100%);
    margin: auto;
    filter: blur(32px);
}

#splashScreen .fsFeature .symbol.fsConfig .configurator {
    flex-shrink: 0;
    position: relative;
    transform: scale(0.9);
}

#splashScreen .fsFeature .table {
    position: relative;
    margin-top: 0;
}

#splashScreen .fsFeature .table .row .text,
#splashScreen .symbolDescription .text {
    font-size: 28px;
    line-height: 28px;
    white-space: normal;
}

#splashScreen .fsFeature .table .row .text strong,
#splashScreen .symbolDescription .text strong {
    font-size: 32px;
    line-height: 32px;
}

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

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

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

.freeSpinsTitle {
    background-position: -324px -179px;
    width: 160px;
    height: 108px;
}

.gameLogo {
    background-position: -1px -179px;
    width: 321px;
    height: 96px;
}

.splScr_GFX_symbol_15 {
    background-position: -307px -289px;
    width: 158px;
    height: 103px;
}

.splScr_reels_1 {
    background-position: -1px -340px;
    width: 267px;
    height: 148px;
}

.splScr_reels_2 {
    background-position: -1px -490px;
    width: 267px;
    height: 148px;
}

.splScr_reels_3 {
    background-position: -1px -640px;
    width: 267px;
    height: 148px;
}

.splScr_wrath {
    background-position: -1px -1px;
    width: 436px;
    height: 110px;
}

.synotLogo {
    background-position: -1px -277px;
    width: 304px;
    height: 61px;
}

.wrathOfZeusTitle {
    background-position: -1px -113px;
    width: 402px;
    height: 64px;
}

/* ************************* 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';
}

/* fi-FI */
body[language='fi'] #splashScreen .fsFeature .table .row .text,
body[language='fi-FI'] #splashScreen .fsFeature .table .row .text {
    font-size: 26px;
    line-height: 26px;
}

/* ja-JP */
body[language='ja'] #splashScreen .symbolDescription .text,
body[language='ja-JP'] #splashScreen .symbolDescription .text {
    font-size: 22px;
}

body[language='ja'] #splashScreen .symbolDescription .text strong,
body[language='ja-JP'] #splashScreen .symbolDescription .text strong {
    font-size: 28px;
}

/* ka-GE */
body[language='ka'] #splashScreen .symbolDescription .text,
body[language='ka-GE'] #splashScreen .symbolDescription .text {
    font-size: 24px;
    line-height: 24px;
}

body[language='ka'] #splashScreen .symbolDescription .text strong,
body[language='ka-GE'] #splashScreen .symbolDescription .text strong {
    font-size: 28px;
    line-height: 28px;
}

/* pl-PL */
body[language='pl'] #splashScreen .symbolDescription .text strong,
body[language='pl-PL'] #splashScreen .symbolDescription .text strong {
    display: inline-block;
}

/* MOBILE PORTRAIT OVERRIDES */
.portrait #splashScreen {
    display: flex;
}

.portrait #splashScreen .paytablePage {
    position: unset;
    height: auto;
    max-height: calc(100% - 320px);
    margin: 120px 0 0;
    z-index: 1;
}

.portrait #splashScreen .wrapper {
    justify-content: center;
}

.portrait #splashScreen .wrapper > .symbolsRow.special {
    display: block;
    height: auto;
}

.portrait #splashScreen .container.wrathOfZeus,
.portrait #splashScreen .special .fsFeature {
    height: auto;
    margin-bottom: 20px;
}

.portrait #splashScreen .container {
    width: 100%;
    padding: 20px 0;
}

.portrait #splashScreen .fsFeature .symbolsRow.special {
    display: flex;
}

.portrait #splashScreen .symbolDescription {
    float: unset;
}

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

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

/* special resolutions fix */
.portrait.mobile-xs #splashScreen .paytablePage {
    transform: scale(0.7);
}

.portrait.tablet #splashScreen .paytablePage,
.portrait.tablet-xs #splashScreen .paytablePage {
    transform: scale(0.5);
}

.portrait.safari:not(.mobile-xs):not(.tablet):not(.tablet-xs) #splashScreen .paytablePage {
    transform: scale(0.9);
}

/* 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;
}
