/* SPLASHSCREEN */
#splashScreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../Game/Graphics/Images/Backgrounds/GFX_ambientBackground_splash.jpg?_t=20250807154530);
    background-size: cover;
    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% + 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 {
    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: 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 .backgroundEffect {
    position: absolute;
    top: 0;
}

#splashScreen .rainbow {
    left: 0;
    transform: scale(2);
    transform-origin: top left;
}

#splashScreen .rain {
    right: 0;
    transform: scale(1.25);
    transform-origin: top right;
}

#splashScreen .buyFeatureRibbon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: -22px;
    left: 0;
    z-index: 2;
}

#splashScreen .buyFeatureRibbon * {
    width: calc(100% - 128px);
    height: 100%;
    font-size: 28px;
    line-height: 26px;
    font-weight: bold;
    text-align: center;
    box-sizing: border-box;
    padding: 55px 6px;
    margin-left: 108px;
}

#splashScreen .buyFeatureRibbon .stroke {
    position: absolute;
    text-shadow: 0 2px 2px #370900;
    -webkit-text-stroke: 1px #370900;
}

#splashScreen .buyFeatureRibbon .text {
    position: relative;
    background: linear-gradient(#ffeba5 40%, #fcd81f 45%, #ffeba5 55%, #fcd81f 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#splashScreen .splashContent {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: calc(100% - 140px);
    overflow: hidden;
}

#splashScreen .container {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#splashScreen .bonusContainer,
#splashScreen .hammersContainer {
    width: 50%;
}

#splashScreen .bonusContainer .splBonus {
    margin: 28px 0 0 -20px;
}

#splashScreen .hammersContainer .hammers {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 0 -80px 140px;
    z-index: 1;
}

#splashScreen .hammersContainer .hammers * {
    margin: 0 -52px;
}

#splashScreen .hammersContainer .features {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    margin-left: 160px;
}

#splashScreen .hammersContainer .featuresBg {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

#splashScreen .hammersContainer .lightning {
    margin: -12px 0;
    transform: scale(0.8);
}

#splashScreen .hammersContainer .lightning:last-child {
    transform: scale(-0.7);
}

#splashScreen .hammersContainer .featureDescription {
    width: 100%;
    padding: 0;
}

#splashScreen .hammersContainer .featureDescription .ftWrapper {
    margin: 0;
}

#splashScreen .hammersContainer .featureDescription .ftWrapper .flare {
    left: -52px;
    opacity: 1;
}

#splashScreen .gameLogoContainer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

#splashScreen .thor {
    margin: 0 0 -184px -20px;
}

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

.splScr {
    background-image: url(../Game/Graphics/SpriteSheets/CSS_splashScreen.png?_t=20250807154530);
    background-repeat: no-repeat;
    --buyFeatureRibbon: -603px -1206px;
    --gameLogo: -1px -563px;
    --hammerBlue: -723px -563px;
    --hammerGold: -1px -1762px;
    --lightning: -1px -1164px;
    --rain: -1px -757px;
    --rainbow: -614px -805px;
    --splBonus: -1px -1320px;
    --synotLogo: -614px -1143px;
    --thor: -1px -1px;
}

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

.buyFeatureRibbon {
    background-position: var(--buyFeatureRibbon);
    width: 303px;
    height: 163px;
}

.splBonus {
    background-position: var(--splBonus);
    width: 440px;
    height: 440px;
}

.hammerBlue {
    background-position: var(--hammerBlue);
    width: 280px;
    height: 240px;
}

.hammerGold {
    background-position: var(--hammerGold);
    width: 280px;
    height: 240px;
}

.gameLogo {
    background-position: var(--gameLogo);
    width: 720px;
    height: 192px;
}

.lightning {
    background-position: var(--lightning);
    width: 600px;
    height: 154px;
}

.synotLogo {
    background-position: var(--synotLogo);
    width: 304px;
    height: 61px;
}

.thor {
    background-position: var(--thor);
    width: 800px;
    height: 560px;
}

.rain {
    background-position: var(--rain);
    width: 611px;
    height: 405px;
}

.rainbow {
    background-position: var(--rainbow);
    width: 320px;
    height: 336px;
}

/* ************************* 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,
body[language='el'] #splashScreen .buyFeatureRibbon *,
body[language='el-GR'] #splashScreen .buyFeatureRibbon * {
    font-family: 'Bebas Neue Greek';
}

body[language='el'] #splashScreen .buyFeatureRibbon div,
body[language='el-GR'] #splashScreen .buyFeatureRibbon div {
    font-size: 24px;
    line-height: 26px;
}

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

body[language|='vi'] #splashScreen .buyFeatureRibbon div {
    font-size: 26px;
    line-height: 25px;
}

/* other languages */
body[language|='bg'] #splashScreen .buyFeatureRibbon div,
body[language|='cs'] #splashScreen .buyFeatureRibbon div,
body[language|='es'] #splashScreen .buyFeatureRibbon div,
body[language|='ja'] #splashScreen .buyFeatureRibbon div,
body[language|='hu'] #splashScreen .buyFeatureRibbon div,
body[language|='ro'] #splashScreen .buyFeatureRibbon div,
body[language|='ru'] #splashScreen .buyFeatureRibbon div,
body[language|='uk'] #splashScreen .buyFeatureRibbon div {
    font-size: 24px;
    line-height: 26px;
}

body[language|='ka'] #splashScreen .buyFeatureRibbon div {
    font-size: 20px;
    line-height: 22px;
    padding-right: 0;
}

body[language|='sk'] #splashScreen .buyFeatureRibbon div {
    font-size: 22px;
    line-height: 26px;
}

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

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

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

.portrait #splashScreen .gameLogoContainer {
    order: 2;
    position: unset;
    margin: -80px 0 0;
    transform: scale(0.8);
}

.portrait #splashScreen .container {
    order: 1;
    position: unset;
}

.portrait #splashScreen .bonusContainer,
.portrait #splashScreen .hammersContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portrait #splashScreen .bonusContainer {
    width: 40%;
}

.portrait #splashScreen .hammersContainer {
    width: 60%;
}

.portrait #splashScreen .bonusContainer > div,
.portrait #splashScreen .hammersContainer > div {
    margin: 0;
}

.portrait #splashScreen .hammersContainer .features {
    margin-top: -68px;
}

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

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

/* special resolutions fix */
.portrait.mobile-xs #splashScreen .gameLogoContainer {
    margin: -180px 0 -60px;
    transform: scale(0.7);
}

.portrait.mobile-xs #splashScreen .container {
    transform: scale(0.8);
}

.portrait.tablet #splashScreen .gameLogoContainer {
    margin: -260px 0 -60px;
    transform: scale(0.6);
}

.portrait.tablet #splashScreen .container {
    transform: scale(0.6);
}

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