
      .phone-group {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .phone-group input[type=text] {
      width: 80px;
      text-align: center;
    }
    .phone-group span {
      padding: 0 4px;
    }
	.holo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(to right, #f2f2f2, #ffffff);
  border: 1px solid #ddd;
  padding: 10px 20px;
  font-size: 14px;
  color: #444;
  font-family: 'Noto Sans KR', sans-serif;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 10px;
}

.holo-icon {
  height: 36px;
}

.holo-text {
  line-height: 1.4;
}
position: sticky;
top: 0;
z-index: 999;
}
.holo-wrapper {
  display: inline-block;
  width: 160px;
  height: 160px;
  position: relative;
  overflow: hidden;
}

.holo-fixed-banner {
  position: fixed;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 6px 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  backdrop-filter: blur(3px);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.holo-fixed-banner:hover {
  transform: scale(1.05);
}

.holo-fixed-image {
  width: 70px;
  height: auto;
  margin-right: 8px;
  animation: holo-shine 4s linear infinite;
  filter: brightness(1.1) contrast(1.2) saturate(1.3);
}

.holo-text {
  font-size: 15px;
  font-weight: bold;
  background: linear-gradient(90deg, 
    #ff00cc, #3333ff, #00ffff, #33ff33, #ffff00, #ff6600, #ff00cc);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: holo-glow 6s ease-in-out infinite;
  display: inline-block;
}

@keyframes holo-glow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.holo-silver-text {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #dcdcdc, #a6a6a6, #e6e6e6, #b0b0b0);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: subtle-holo 10s ease-in-out infinite;
  display: inline-block;
  
}

@keyframes subtle-holo {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* ¾Ö´Ï¸ÞÀÌ¼Ç È¿°ú */
@keyframes holo-shine {
  0% { filter: hue-rotate(0deg) brightness(1.1); }
  25% { filter: hue-rotate(60deg) brightness(1.2); }
  50% { filter: hue-rotate(120deg) brightness(1.3); }
  75% { filter: hue-rotate(180deg) brightness(1.2); }
  100% { filter: hue-rotate(360deg) brightness(1.1); }
}
.holo-pretty-text {
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(
    120deg,
    #ff66cc,
    #66ccff,
    #ccffcc,
    #ffff99,
    #ffccff,
    #66ccff
  );
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: holoFlow 10s ease infinite;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
}

@keyframes holoFlow {
  0% { filter: hue-rotate(0deg) brightness(1.1); }
  25% { filter: hue-rotate(60deg) brightness(1.2); }
  50% { filter: hue-rotate(120deg) brightness(1.3); }
  75% { filter: hue-rotate(180deg) brightness(1.2); }
  100% { filter: hue-rotate(360deg) brightness(1.1); }
  }

  .holo-dark-wrapper {
  background-color: #111;
  padding: 30px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.holo-dark-text {
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  background: linear-gradient(
    90deg,
    #ff66cc,
    #66ccff,
    #ccffcc,
    #ffff99,
    #ffccff,
    #66ccff
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: holo-move 4s ease-in-out infinite alternate,
             holo-color 5s linear infinite;
  white-space: nowrap;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
}

@keyframes holo-color {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes holo-move {
  0%   { transform: translateX(-20px); }
  100% { transform: translateX(20px); }
}

.holo-light-text {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.holo-light-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: skewX(-20deg);
  animation: shine 2.5s infinite;
}

@keyframes shine {
  0%   { left: -75%; }
  50%  { left: 100%; }
  100% { left: 100%; }
}
.holo-glow-text {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  display: inline-block;
  padding: 0.3em 0.6em;
  background-color: #111; /* ¹è°æ ¾îµÎ¿î °æ¿ì ´ëºñ ÁÁÀ½ */
  border-radius: 6px;
  overflow: hidden;
}

.holo-glow-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: holo-glow-slide 2.5s ease-in-out infinite;
}

@keyframes holo-glow-slide {
  0% { left: -50%; }
  100% { left: 120%; }
}
.holo-fixed-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  backdrop-filter: blur(5px);
  max-width: 100%;
}

.holo-fixed-image {
  width: 48px;
  height: auto;
  flex-shrink: 0;
}

.holo-glow-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.holo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.main-text {
  font-size: 16px;
  font-weight: 1200px;
  background: linear-gradient(90deg, #ff66cc, #66ccff, #ccffcc, #ffff99, #ffccff, #66ccff);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: holoColorMove 6s linear infinite;
}

.sub-text {
  font-size: 13px;
  color: #ddd;
}

/* È¦·Î±×·¥ ÄÃ·¯ Èå¸§ */
@keyframes holoColorMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

