
@import url('https://fonts.googleapis.com/css2?family=Handjet:wght@100..900&display=swap');

:root{
   --accent-color: rgb(204, 60, 255);
   --yellow: #FFDF00;
}


body{
   max-width: 100%;
   padding: 20px;
   background: #000000;
   color: #f5f5f5!important;
   margin: 0;
   font-family: "Handjet", sans-serif;
   position: relative;
   padding: 0;
   height: 100vh;
   width: 100vw;
   max-width: 100vw!important;
   max-width: 100vh!important;
   box-sizing: border-box;
   overflow: hidden;
}

p.subtitle{
   color: #FFB800;
}

.btn{
   background-color: #990AE3;
   border: none;
}

.btn.pas{
   font-size: 24px;
   margin: auto;
}

.btn:hover, .btn:active, .btn:focus{
   background-color: var(--accent-color);
}

h1{
   color: var(--accent-color);
   font-weight: 600;
   font-size: 32px;
}

.mini-profile-info {
   margin-top: 10px;
   display: flex;
   align-items: center;
   font-size: 20px;
   padding: 8px;
   gap: 6px;
   background: url(https://mcell-football.getcookie.xyz/private/img/mini-profile.svg) center;
   background-position: center!important;
   background-repeat: no-repeat;
   background-size: contain;
   width: 365px;
   max-width: 90%;
   max-height: auto;
   height: 80px;
   margin: auto;
   padding-left: 20px;
   padding-right: 15px;
   backdrop-filter: blur(4px);
   margin: auto;
   /* Fundal alternativ 
   background: linear-gradient(45deg, rgba(39, 56, 58, 0.4), rgba(30, 30, 30, 0.4));
   border: 4px solid transparent;
   border-image: linear-gradient(to right, rgba(143, 179, 204, 0.4) 0%, rgba(225, 243, 255, 0.4) 100%) 1;
   clip-path: polygon(
       3px 0%, calc(100% - 3px) 0%, 100% 3px, 100% calc(100% - 3px),
       calc(100% - 3px) 100%, 3px 100%, 0% calc(100% - 3px), 0% 3px
   );*/
}


.mini-profile-info .row-profile{
   width: 50%!important;
   height: 100%!important;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   box-sizing: border-box;
}

.mini-profile-info .row-profile .right{
   justify-content: center;
}
.mini-profile-info span.username{
   color: var(--accent-color);
}

.mini-profile-info img.user-avatar{
   height: 32px;
   width: 32px;
   border: 1px solid var(--accent-color);
   border-radius: 50%;
   margin-right: 4px;
}

.mini-profile-info span.score {
   color: var(--yellow);
}

img.coin {
   height: 32px;
   width: 32px;
   margin-left: 4px;
}

.description{
   display: flex;
   flex-direction: column;
   gap: 2px;
   color: #e3e3e3;
   font-size: 14px;
   margin-bottom: 10px;
   margin-top: 10px;
}

.description span{
   line-height: 16px;
}

b.coins{
   color: var(--yellow)!important;
}


.slot-machine {
   display: flex;
   justify-content: center;
   align-items: center;
   margin-bottom: 20px;
   overflow: hidden;
   height: 200px;
   border: 4px solid;
   background: linear-gradient(45deg, rgba(39, 56, 58, 0.4), rgba(30, 30, 30, 0.4));
   border-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   backdrop-filter: blur(4px);
   width: 100%;
   padding: 12px;
   clip-path: polygon(
      3px 0%, calc(100% - 3px) 0%, 100% 3px, 100% calc(100% - 3px),
      calc(100% - 3px) 100%, 3px 100%, 0% calc(100% - 3px), 0% 3px
   );
}

.clip-corners{
   clip-path: polygon(
      3px 0%, calc(100% - 3px) 0%, 100% 3px, 100% calc(100% - 3px),
      calc(100% - 3px) 100%, 3px 100%, 0% calc(100% - 3px), 0% 3px
   );
}

.reel {
   width: 100px;
   height: 100px;
   margin: 0 10px;
   position: relative;
   /*background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(98,114,128,1) 0%, rgba(52,63,51,1) 90.1% );*/
   overflow: hidden;
   box-shadow: inset 0 0 35px 5px rgba(0,0,0,0.25), inset 0 2px 1px 1px rgba(0,0,0,0.1 ), inset 0 -2px 1px rgba(0,0,0,0.25);
   clip-path: polygon(
      3px 0%, calc(100% - 3px) 0%, 100% 3px, 100% calc(100% - 3px),
      calc(100% - 3px) 100%, 3px 100%, 0% calc(100% - 3px), 0% 3px
   );
}

.reel::before{
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   opacity: 0.5;
   background-image: url(../../private/img/reel.svg);
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
}

.reel .symbols {
   display: flex;
   flex-direction: column;
}

.symbol {
   width: 100%;
   height: 100px;
   font-size: 50px;
   display: flex;
   justify-content: center;
   align-items: center;
   color: white;
}

.spinning {
   animation: spin 0.5s linear infinite;
}

@keyframes spin {
   0% { transform: translateY(0); }
   100% { transform: translateY(-600px); } /* Ajustat pentru numărul de simboluri */
}

.btn-slot {
   background-image: linear-gradient(to right, #D31027 0%, #EA384D  51%, #D31027  100%);
   color: white;
   padding: 15px 30px;
   font-size: 24px;
   border: none;
   width: 100%;
   border-radius: 5px;
   box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
   background-size: 200% auto;
   color: white;            
   box-shadow: 0 0 4px rgba(255, 255, 255, 0.1);
   text-transform: uppercase;
}

.btn-slot:focus,
.btn-slot:hover {   
   background-position: right center;
}

.message {
   font-size: 24px;
   margin-top: 20px;
   color: #FFB800;
   height: 60px;
   width: 100%;
   background-image: url(https://mcell-football.getcookie.xyz/private/img/screen_long_banner.gif);
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   background-color: rgb(47, 79, 79, 0.4);
   backdrop-filter: blur(4px);
   display: flex;
   justify-content: center;
   align-items: center;
}


.bubble-container {
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   overflow: hidden;
   pointer-events: none;
   z-index: -1;
}

.bubble {
   position: absolute;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(255,255,255,0.8), rgba(255,255,255,0.1));
   animation: moveBubbles 20s linear infinite, flicker 3s infinite;
}

@keyframes moveBubbles {
   0% {
      transform: translate(0, 0);
   }
   100% {
      transform: translate(calc(100vw * var(--random-x)), calc(100vh * var(--random-y)));
   }
}

@keyframes flicker {
   0%, 100% {
      opacity: 1;
   }
   50% {
      opacity: 0.6;
   }
}


i.coin-gif,
i.coin-svg,
span.coin-gif,
span.coin-svg {
    height: 24px;
    width: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    background-position: center bottom;
}
i.coin-gif,
span.coin-gif {
    background-image: url(https://mcell-football.getcookie.xyz/private/img/coin.gif);
}

i.coin-svg,
span.coin-svg {
    background-image: url(https://mcell-football.getcookie.xyz/private/img/coin.svg);
}


h1 {
   color: var(--accent-color);
   margin-top: 50px;
   margin-bottom: 20px;
   text-align: center!important;
}

