/* 오디오 플레이어 및 볼륨 컨트롤 스타일 */
.audio-player-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 8px 20px;
    border-top: 1px solid #333;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 40px;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.audio-player-container.visible {
    transform: translateY(0);
}

.current-song-info {
    min-width: 200px;
    max-width: 300px;
    order: 0;
    margin-right: 15px;
}

.song-title-display {
    color: #e8f4fd;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* 커스텀 플레이어 컨트롤 */
.custom-player-controls {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    order: 1;
    background: #000;
    padding: 5px 10px;
    border-radius: 5px;
}

/* 스킵 버튼 스타일 */
.skip-btn {
    background: #555;
    color: #e8f4fd;
    border: 2px solid #e8f4fd;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.skip-btn:hover {
    background: #777;
    color: #e8f4fd;
    transform: scale(1.1);
}

.play-pause-btn {
    background: #000;
    color: #f1c40f;
    border: 2px solid #f1c40f;
    border-radius: 50%;
    width: 30px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.play-pause-btn:hover {
    background: #f1c40f;
    color: #000;
}

.time-display {
    display: flex;
    gap: 5px;
    color: #e8f4fd;
    font-size: 12px;
    min-width: 80px;
}

.progress-bar {
    flex: 1;
    position: relative;
    height: 4px;
    background: #555;
    border-radius: 2px;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: #f1c40f;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

.progress-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
}

.progress-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #f1c40f;
    border-radius: 50%;
    cursor: pointer;
}

.volume-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    order: 2;
}

/* 볼륨 컨트롤 및 슬라이더 스타일은 global-audio-player.css에서 정의됨 */

/* 폼 스타일 */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input[type="text"],
form textarea {
    padding: 12px;
    background-color: #555;
    border: 1px solid #777;
    border-radius: 5px;
    color: white;
    font-size: 1em;
}

form button {
    padding: 12px 20px;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.2s;
}

form button:hover {
    background-color: #27ae60;
}

.privacy-setting {
    margin: 15px 0;
}

.privacy-setting label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #eee;
}

.privacy-setting select {
    width: 100%;
    padding: 12px;
    background-color: #555;
    border: 1px solid #777;
    border-radius: 5px;
    color: white;
    font-size: 1em;
}

.privacy-setting select:focus {
    outline: none;
    border-color: #2ecc71;
    box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.25);
}

.privacy-setting option {
    background-color: #555;
    color: white;
}

/* 하단 링크 스타일 */
.home-link-container {
    text-align: center;
    margin-top: 20px;
}

.home-link-container a {
    color: #888;
    font-size: 0.9em;
    text-decoration: none;
}

.home-link-container a:hover {
    color: #2ecc71;
}