/* ===================================
   Beauty 앱 전용 스타일 - Beauty App Styles
   ================================== */

/* Beauty 색상 & 텍스처 컨트롤 */
.color-controls {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
}

/* 슬라이드 컬러 선택기 */
.color-slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.color-slider {
    position: relative;
    width: 300px;
    height: 80px;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.color-track {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
    align-items: center;
}

.color-item {
    min-width: 60px;
    height: 60px;
    margin: 0 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    position: relative;
}

/* .color-item:hover {
  transform: scale(1.1);
} */

.color-item.active {
    min-width: 80px;
    height: 70px;
    border: 3px solid #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    /* transform: scale(1.1); */
}

/* 색상 네비게이션 */
.color-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.color-nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* .color-nav-btn:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.color-nav-btn:active {
    transform: scale(0.95);
} */

/* 색상 정보 */
.color-info {
    text-align: center;
    color: white;
    font-size: 14px;
    margin-top: 10px;
}

.color-name {
    font-weight: bold;
    font-size: 16px;
}

.color-hex {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 2px;
}

/* 색상 버튼 */
.color-button {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 10px;
    text-align: center;
    position: relative;
}

/* .color-button:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.color-button:active {
    transform: scale(0.95);
} */

.color-button.active {
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

/* 노드 버튼 */
.node-button {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: linear-gradient(45deg, #2a2a2a, #4a4a4a);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 10px;
    text-align: center;
    position: relative;
}

/* .node-button:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.node-button:active {
    transform: scale(0.95);
} */

.node-button.active {
    border-color: #ff6b35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

/* 노드별 스타일 */
.node-button[data-node="0"] { 
    background: linear-gradient(45deg, #4CAF50, #81C784); 
    color: white;
}

.node-button[data-node="1"] { 
    background: linear-gradient(45deg, #FF9800, #FFB74D); 
    color: white;
} 