.cookie-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-radius: 0;
}

/* 텍스트 로고 */
.text-logo {
    display: flex !important;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    padding: 4px 0;
}

.text-logo-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.text-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #4C3FF2 0%, #6B8AFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-logo.dark .text-logo-text {
    background: linear-gradient(135deg, #a78bfa 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 반응형 */
@media (max-width: 576px) {
    .text-logo-icon {
        font-size: 1.3rem;
    }
    .text-logo-text {
        font-size: 1.1rem;
    }
}



/* 푸터 텍스트 로고 */
.footer-text-logo {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
    margin-bottom: 12px;
}

.footer-text-logo .text-logo-icon {
    font-size: 1.5rem;
}

.footer-text-logo .text-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a78bfa 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}




