@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/**
* Copyright 2025
**/

html, body {
    height: 100%;
}

body {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-variation-settings: "slnt" 0;
    min-height: 100%;
    overflow-x: hidden;
	overscroll-behavior: contain;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #000;
    font-size: 14px;
}

a {
    color: inherit;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

a:focus, a:active {
    color: inherit;
    text-decoration: none;
}

a:focus:active, button:focus:active {
    /* color: #FFF !important; */
    /* background-color: #0047BA; */
    transform: scale(.95,.95);
    -webkit-transform: scale(.95,.95);
    -moz-transform: scale(.95,.95);
    -ms-transform: scale(.95,.95);
    -o-transform: scale(.95,.95);
}

select:active,
select:focus {
	outline: none;
}

::selection {
	color: #FFF;
	background-color: #0047BA;
}

::-moz-selection {
	color: #FFF;
	background-color: #0047BA;
}

::-webkit-selection {
	color: #FFF;
	background-color: #0047BA;
}

::-webkit-scrollbar {
    display: block;
	/* width: .3rem; */
    width: 0;
	background: transparent !important;
}

::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(248, 248, 248, 1);
	border-radius: .6rem;
    -webkit-border-radius: .6rem;
	-moz-border-radius: .6rem;
	-ms-border-radius: .6rem;
	-o-border-radius: .6rem;
	display: none;
	/* box-shadow: inset 0 0 1px rgba(0,0,0,.5) !important; */
	/* background-color: rgba(0,0,0,.5); */
}

::-webkit-scrollbar-thumb {
	border-radius: .6rem;
	background: #ccc;
	display: none;
    /* border-radius: 20px; */
    /* box-shadow: inset 0 0 6px unset; */
    /* background: rgba(0,0,0,.3); */
}

/*
* Desktop
*/

#app {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    /* background: #FFF; */
}

@media (min-width: 1201px) {
    #app {
        height: 100vh;
        max-width: 479px;
        margin: auto;
        border-radius: 40px;
        border: 12px solid #000;
        outline: 4px solid #555;
        overflow-y: scroll;
        -ms-overflow-style: none;
        scrollbar-width: 0;
        -webkit-border-radius: 40px;
        -moz-border-radius: 40px;
        -ms-border-radius: 40px;
        -o-border-radius: 40px;
    }

   /* #app {
        height: 100vh;
        max-width: 479px;
        margin: auto;
        overflow-y: scroll;
        -ms-overflow-style: none;
        scrollbar-width: 0;
        /* border: 12px solid #000;
        outline: 4px solid #555;
        border-radius: 40px;
        -webkit-border-radius: 40px;
        -moz-border-radius: 40px;
        -ms-border-radius: 40px;
        -o-border-radius: 40px; */
    } */
}

#app::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    /* background: url('../../assets/img/bg_app.png') no-repeat bottom center; */
    /* background-size: cover; */
    background: #000;
}

/*
* End Desktop
*/

/*
* Chat-Screen
*/

.chatscreen {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background-color: #FFF;
}

.chatscreen::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 1366;
	background: url('../../assets/img/callapp.png') no-repeat right bottom;
	background-size: cover;
}

/*
* End Chat-Screen
*/

/*
* Animation
*/

.shake-icon {
    animation: shake 0.5s;
    animation-iteration-count: infinite;
}

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); -webkit-transform: translate(1px, 1px) rotate(0deg); -moz-transform: translate(1px, 1px) rotate(0deg); -ms-transform: translate(1px, 1px) rotate(0deg); -o-transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); -webkit-transform: translate(-1px, -2px) rotate(-1deg); -moz-transform: translate(-1px, -2px) rotate(-1deg); -ms-transform: translate(-1px, -2px) rotate(-1deg); -o-transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); -webkit-transform: translate(-3px, 0px) rotate(1deg); -moz-transform: translate(-3px, 0px) rotate(1deg); -ms-transform: translate(-3px, 0px) rotate(1deg); -o-transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); -webkit-transform: translate(3px, 2px) rotate(0deg); -moz-transform: translate(3px, 2px) rotate(0deg); -ms-transform: translate(3px, 2px) rotate(0deg); -o-transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); -webkit-transform: translate(1px, -1px) rotate(1deg); -moz-transform: translate(1px, -1px) rotate(1deg); -ms-transform: translate(1px, -1px) rotate(1deg); -o-transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); -webkit-transform: translate(-1px, 2px) rotate(-1deg); -moz-transform: translate(-1px, 2px) rotate(-1deg); -ms-transform: translate(-1px, 2px) rotate(-1deg); -o-transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); -webkit-transform: translate(-3px, 1px) rotate(0deg); -moz-transform: translate(-3px, 1px) rotate(0deg); -ms-transform: translate(-3px, 1px) rotate(0deg); -o-transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); -webkit-transform: translate(3px, 1px) rotate(-1deg); -moz-transform: translate(3px, 1px) rotate(-1deg); -ms-transform: translate(3px, 1px) rotate(-1deg); -o-transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); -webkit-transform: translate(-1px, -1px) rotate(1deg); -moz-transform: translate(-1px, -1px) rotate(1deg); -ms-transform: translate(-1px, -1px) rotate(1deg); -o-transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); -webkit-transform: translate(1px, 2px) rotate(0deg); -moz-transform: translate(1px, 2px) rotate(0deg); -ms-transform: translate(1px, 2px) rotate(0deg); -o-transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); -webkit-transform: translate(1px, -2px) rotate(-1deg); -moz-transform: translate(1px, -2px) rotate(-1deg); -ms-transform: translate(1px, -2px) rotate(-1deg); -o-transform: translate(1px, -2px) rotate(-1deg); }
}

.glow {
    color: #fff;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 1px #fff, 0 0 5px #fff, 0 0 10px #e60073, 0 0 20px #e60073, 0 0 30px #e60073;
  }
  to {
    text-shadow: 0 0 1px #fff, 0 0 10px #ff4da6, 0 0 20px #ff4da6, 0 0 30px #ff4da6, 0 0 50px #ff4da6;
  }
}

.blinking {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

/*
* End Animation
*/

/*
* Fortune Wheel
*/

.wrap-text-frame {
    font-size: .8rem;
    padding: 1rem;
    margin: 0 2rem;
    background: url('../../assets/img/fortune_wheel/text_frame.png') no-repeat center center;
    background-size: 100% 100%;
}

.wrap-fortuneWheel {
    background: url('../../assets/img/fortune_wheel/bg_spin.png') no-repeat center center;
    background-size: 100%;
}

.wrap-fortuneWheel .innerWheel::before {
    content: '';
    width: 50px;
    height: 50px;
    display: block;
    position: relative;
    margin: 0 auto -40px auto;
    background: url('../../assets/img/fortune_wheel/arrow.png') no-repeat top center;
    background-size: contain;
    z-index: 20;
}

#fortuneWheel {
    padding: 1rem;
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: url('../../assets/img/fortune_wheel/bg_wheel_frame.png') no-repeat top center;
    background-size: 100%;
    position: relative;
    z-index: 0;
}

/*
* End Fortune Wheel
*/