

.winphone-128x2 { animation: winphone-128x2 3s steps(32) infinite; display: block; width: 128px; height: 2px; background-image:url(../img/button/loading.png); }
@keyframes winphone-128x2 { from { background-position: 0px 0px; } to { background-position: 0px -64px; } }

.blink_me {
    animation: blinker 2s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* body { font: 400 1em/1.5 "Neuton"; background: #090d00; color: rgba(255,255,255,.25); text-align: center; margin: 0 } */



.back .tabbar__label{

  	font: 700 4em/1 "Oswald", sans-serif;
  	letter-spacing: 0;
  	padding: .25em 0 .325em;
	  display: block;
	  margin: 0 auto;
  	text-shadow: 0 0 80px rgba(255,255,255,.5);

/* Clip Background Image */

        
	  background: url(/img/animation/animated_text_fill.png) repeat-y;
	  -webkit-background-clip: text;
	  background-clip: text;

/* Animate Background Image */

	  -webkit-text-fill-color: transparent;
	  -webkit-animation: aitf 80s linear infinite;

/* Activate hardware acceleration for smoother animations */

	  -webkit-transform: translate3d(0,0,0);
	  -webkit-backface-visibility: hidden;

 
}

/* Animate Background Image */

@-webkit-keyframes aitf {
	0% { background-position: 0% 50%; }
	100% { background-position: 100% 50%; }
}


.color_ripple{
    color: #fff;
    font-size: 92px;
    font-family: "ubuntu";
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Josefin Sans", sans-serif;
    background: linear-gradient(to right, #e72a3a 10%, #fff 50%, #5bdaff 60%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 1.5s linear infinite;
    display: inline-block;
}


@keyframes textclip {
	to {
		background-position: 200% center;
	}
}



.blink-border {
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    cursor: pointer;
    background: transparent;
    animation: borderBlink 1s infinite alternate;
}

@keyframes borderBlink {
    0% {
        border-color: var(--theme-color);
        box-shadow: 0 0 5px var(--theme-color);
    }
    100% {
        border-color: #fff;
        box-shadow: 0 0 20px var(--theme-color);
    }
}


.like-button, .scale-button {
    /* font-size: 2rem; */
    cursor: pointer;
    border: none;
    background: none;
    transition: transform 0.2s ease;
}

.like-button.animate, .scale-button.animate {
    animation: pop 0.3s ease;
    background-color: transparent;
}

.like-button:focus,
.scale-button:focus {
    outline: none; /* 클릭 후 포커스 테두리 제거 */
}

.like-button:active,
.scale-button:active {
    background: none !important;   /* 눌렀을 때 배경 제거 */
    box-shadow: none !important;   /* 모바일에서 눌림 효과 제거 */
    -webkit-tap-highlight-color: transparent; /* 모바일 하이라이트 제거 */
}


@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}


/* 캐러셀 애니메이션을 위한 CSS */
@keyframes nudge {
    0% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
    100% { transform: translateX(0); }
}

/* 애니메이션 키프레임 정의 */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
