@charset "utf-8";
/* CSS Document - ფანტაზიური დიზაინი */ 

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 5px currentColor); }
    50% { filter: drop-shadow(0 0 25px currentColor); }
}

@keyframes rainbow-border {
    0% { border-color: #ff0080; box-shadow: 0 0 30px #ff0080, 0 0 60px #ff0080, inset 0 0 20px rgba(255, 255, 255, 0.05); }
    33% { border-color: #00ffff; box-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff, inset 0 0 20px rgba(255, 255, 255, 0.05); }
    66% { border-color: #8000ff; box-shadow: 0 0 30px #8000ff, 0 0 60px #8000ff, inset 0 0 20px rgba(255, 255, 255, 0.05); }
    100% { border-color: #ff0080; box-shadow: 0 0 30px #ff0080, 0 0 60px #ff0080, inset 0 0 20px rgba(255, 255, 255, 0.05); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

body{ 
    font: 16px 'Segoe UI', 'Arial', sans-serif; 
    text-align: center;
    background: #0a0e27;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 128, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(128, 0, 255, 0.15) 0%, transparent 50%);
    min-height: 100vh;
    padding: 20px 0;
    position: relative;
    overflow-x: hidden;
    color: #ffffff;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, transparent 1px, transparent 2px, rgba(255,255,255,0.03) 3px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, transparent 1px, transparent 2px, rgba(255,255,255,0.03) 3px);
    pointer-events: none;
    z-index: 1;
}

.wrapper {
    width: 360px;
    padding: 25px;
    margin: auto 30px;
    border: 3px solid #ff0080;
    background: rgba(26, 31, 58, 0.95);
    border-radius: 25px;
    margin-top: 20px;
    text-align: left;
    display: inline-block;
    vertical-align: top;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite, rainbow-border 6s ease-in-out infinite;
    color: #ffffff;
}

.wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 0 50px #ff0080,
        0 0 100px #00ffff,
        0 20px 60px rgba(0, 0, 0, 0.4);
}

* {
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.logo { 
    padding: 25px; 
    background: linear-gradient(135deg, #ff0080 0%, #8000ff 50%, #00ffff 100%);
    margin: 0 0 20px;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(255, 0, 128, 0.5),
        0 0 60px rgba(128, 0, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.logo::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

h1 span {
    margin-left: 20px;
    color: #ffffff;
}

h1{
    text-align: center; 
    margin: 0; 
    padding: 20px; 
    background: linear-gradient(135deg, #ff0080, #ff6b00, #ffed00, #00ff88, #00d4ff, #8000ff);
    background-size: 300% 300%;
    color: #ffffff;
    margin-bottom: 15px;
    border-radius: 18px;
    box-shadow: 
        0 8px 32px rgba(255, 0, 128, 0.5),
        0 0 40px rgba(0, 255, 255, 0.3);
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 0, 128, 1),
        0 0 45px rgba(0, 255, 255, 0.8),
        3px 3px 6px rgba(0, 0, 0, 0.9);
    animation: gradientFlow 5s ease infinite;
    font-weight: bold;
    letter-spacing: 2px;
    position: relative;
    font-size: 2rem;
}

.box {
    width: 440px;
    height: 440px;
    border: 4px solid #00ffff;
    background: rgba(26, 31, 58, 0.95);
    position: relative;
    margin-left: 0;
    display: inline-block;
    vertical-align: top;
    border-radius: 20px;
    animation: rainbow-border 8s ease-in-out infinite;
}

.video{    
    display: inline-block;
    vertical-align: top;
}

.video video{
    width: 100vw;
    aspect-ratio: auto 586 / 440;
    height: 56vw;
    max-width: 785px;
    max-height: 440px;
    background: url(/player/loader.gif) center no-repeat rgba(26, 31, 58, 0.8);
    border: 4px solid #ff0080;
    border-radius: 20px;
    box-shadow: 
        0 0 40px #ff0080,
        0 0 80px #00ffff;
    position: relative;
    animation: rainbow-border 10s ease-in-out infinite;
}

.start {
    margin: 40px auto;
    position: relative;
}

.start img{
    cursor: pointer; 
    height: 70px;
    filter: drop-shadow(0 0 20px #ff0080) drop-shadow(0 0 40px #00ffff);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: pulse 2s ease-in-out infinite;
}

.start img:hover {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 30px #ff0080) drop-shadow(0 0 60px #00ffff) drop-shadow(0 0 80px #8000ff);
}

img.button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid transparent;
    background-clip: padding-box;
    display: inline-block;
    margin: 14px;
    cursor: pointer;
    background: url("/img/btn_bg.png") center no-repeat;
    background-size: cover;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

img.button::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s;
}

img.bg_green{
    background-color: #00ff88;
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.6),
        0 0 60px rgba(0, 255, 136, 0.4),
        inset 0 0 20px rgba(0, 255, 136, 0.3);
    border-color: #00ffaa;
}

img.bg_green::before {
    background: linear-gradient(135deg, #00ff88, #00ffff);
}

img.bg_red{
    background-color: #ff0080;
    box-shadow: 
        0 0 30px rgba(255, 0, 128, 0.6),
        0 0 60px rgba(255, 0, 128, 0.4),
        inset 0 0 20px rgba(255, 0, 128, 0.3);
    border-color: #ff0099;
}

img.bg_red::before {
    background: linear-gradient(135deg, #ff0080, #ff6b00);
}

.box.active img.bg_green:hover{
    background-color: #00ffff; 
    transform: scale(1.15) rotate(10deg);
    box-shadow: 
        0 0 50px rgba(0, 255, 255, 0.8),
        0 0 100px rgba(0, 255, 136, 0.6),
        0 0 150px rgba(0, 255, 255, 0.4),
        inset 0 0 30px rgba(0, 255, 255, 0.5);
    animation: glow 1s ease-in-out infinite;
}

.box.active img.bg_green.clicked{
    background-color: #00cc66; 
    transform: scale(0.9) rotate(-5deg);
    box-shadow: 
        0 0 20px rgba(0, 204, 102, 0.8),
        inset 0 0 40px rgba(0, 255, 136, 0.6);
}

.box.active img.bg_red:hover{
    background-color: #ff00ff; 
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 
        0 0 50px rgba(255, 0, 255, 0.8),
        0 0 100px rgba(255, 0, 128, 0.6),
        0 0 150px rgba(255, 0, 255, 0.4),
        inset 0 0 30px rgba(255, 0, 255, 0.5);
    animation: glow 1s ease-in-out infinite;
}

.box.active img.bg_red.clicked{
    background-color: #cc0066; 
    transform: scale(0.9) rotate(5deg);
    box-shadow: 
        0 0 20px rgba(204, 0, 102, 0.8),
        inset 0 0 40px rgba(255, 0, 128, 0.6);
}

.box, .video{
    display: none;
}

.box.disabled img.button {
    background-color: #333344;
    opacity: .4;
    cursor: default;
    box-shadow: 0 0 10px rgba(100, 100, 120, 0.2);
    filter: grayscale(100%);
}

.time {
    background: rgba(26, 31, 58, 0.95);
    color: #ffffff;
    height: 35px;
    line-height: 35px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.3);
    border: 3px solid #00ffff;
}

.time .before {
    display: inline-block;
    position: absolute;
    width: 0%;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #ff0080, #ff6b00, #ffed00, #00ff88, #00ffff, #8000ff);
    background-size: 400% 100%;
    z-index: 0;
    transition: all 2s;
    box-shadow: 
        0 0 40px rgba(255, 0, 128, 0.8),
        0 0 80px rgba(0, 255, 255, 0.6);
    animation: gradientFlow 3s ease infinite;
}

.time span {
    position: relative;
    z-index: 1;
    font-weight: bold;
    font-size: 18px;
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 25px rgba(0, 255, 255, 1),
        0 0 35px rgba(255, 0, 128, 0.8),
        2px 2px 5px rgba(0, 0, 0, 1);
    letter-spacing: 2px;
}

.disable img {
    filter: grayscale(100%) opacity(.3) blur(2px);
    cursor: default;
}

.wait{
    height:80px;
    margin: 30px auto;
    background: url("/img/loading.webp") center no-repeat;
    background-size: 80px;
    display: none;
    filter: 
        drop-shadow(0 0 20px #00ffff) 
        drop-shadow(0 0 40px #ff0080)
        drop-shadow(0 0 60px #8000ff);
    animation: pulse 2s ease-in-out infinite;
}

.queue {
    text-align: center;
    display: none; 
    padding: 30px 10px;
    font-size: 18px;
    background: url(/img/loader.gif) center no-repeat;
    background-size: 47px;
    background-position-x: calc(50% + 130px);
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 25px #00ffff,
        0 0 35px #ff0080,
        2px 2px 5px rgba(0, 0, 0, 1);
    font-weight: bold;
    letter-spacing: 1px;
}

#imHeader_pluginAppObj_02 {
    position: relative;
    -ms-grid-row-align: start;
    align-self: start;
    -ms-grid-column-align: center;
    justify-self: center;
    max-width: 100%;
    box-sizing: border-box;
    z-index: 3;
}	

#imHeader_pluginAppObj_02 {
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

#soc_imHeader_pluginAppObj_02 .wrapper {
    display: inline-block;
    vertical-align: bottom;
    margin: 5px 0 0 0;
}

#soc_imHeader_pluginAppObj_02 .social-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: block;
    text-align: center;
    overflow: hidden;
    margin: 0 5px 5px 0;
    box-shadow: 
        0 0 20px rgba(255, 0, 128, 0.4),
        0 0 40px rgba(0, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(26, 31, 58, 0.8);
    border: 2px solid #00ffff;
}		

#soc_imHeader_pluginAppObj_02 .social-icon.last-row {
    margin-bottom: 0;
}

#soc_imHeader_pluginAppObj_02 .horizontal .social-icon {
    float: left;
}

#soc_imHeader_pluginAppObj_02 .float .social-icon {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

#soc_imHeader_pluginAppObj_02 .float .social-icon:hover {
    overflow: initial;
    -webkit-transform: translateY(-10px) rotate(5deg) scale(1.1);
    transform: translateY(-10px) rotate(5deg) scale(1.1);
    box-shadow: 
        0 0 40px rgba(255, 0, 128, 0.8),
        0 0 80px rgba(0, 255, 255, 0.6),
        0 20px 40px rgba(0, 0, 0, 0.4);
}

#soc_imHeader_pluginAppObj_02 .wrapper a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    overflow: hidden !important;
    border-radius: 15px;
    background-color: transparent;
    z-index: 1;
    position: relative;
}	

#soc_imHeader_pluginAppObj_02 .social-icon svg {
    width: 100%;
    height: 100%;
    top: 0%;
    position: relative;
    transition: all 0.4s ease;
}

#soc_imHeader_pluginAppObj_02 .social-icon:hover svg {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 10px currentColor);
}

#soc_imHeader_pluginAppObj_02 .flat .social-icon svg {
    fill: #00ffff;
    filter: drop-shadow(0 0 10px #00ffff) drop-shadow(0 0 20px #ff0080);
}

#soc_imHeader_pluginAppObj_02 .social-icon .fallbacktext {
    display: none;
}

#soc_imHeader_pluginAppObj_02 .float .social-icon:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 15px;
    width: 90%;
    opacity: 0;
    background: radial-gradient(ellipse at center, rgba(255, 0, 128, 0.8) 0%, rgba(0, 255, 255, 0.4) 50%, transparent 80%);
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity;
    filter: blur(10px);
}

#soc_imHeader_pluginAppObj_02 .float .social-icon:hover:before {
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}

.logo > * {
    display: inline-block;
    vertical-align: top;
    margin: 0 30px;
}

.youtube {
    margin: 23px auto;
    display: inline-block;
}

iframe {
    width: 100vw;
    height: 56vw;
    max-width: 640px;
    max-height: 361px;
    border: 4px solid #8000ff;
    background: rgba(26, 31, 58, 0.8);
    border-radius: 20px;
    box-shadow: 
        0 0 40px #8000ff,
        0 0 80px #ff0080;
    animation: rainbow-border 12s ease-in-out infinite;
}