﻿/* 커스텀 앱 배너 스타일 */
#custom-app-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #FF6B35 0%, #FFB86A 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.app-banner-content {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    max-width: 600px;
    margin: 0 auto;
    gap: 12px;
}

.app-banner-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.app-banner-close:hover {
    color: #fff;
}

.app-banner-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #fff;
    object-fit: contain;
}

.app-banner-info {
    flex: 1;
    min-width: 0;
}

.app-banner-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.app-banner-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.app-banner-button {
    background: #fff;
    color: #4f46e5;
    border: none;
    border-radius: 16px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
}

.app-banner-button:hover {
    background: #f0f0ff;
    transform: scale(1.02);
}

/* 커스텀 배너가 있을 때 body 패딩 조정 */
body:has(#custom-app-banner) {
    padding-top: 60px;
}
