/* ==========================================================================
   Storage Activity Indicator - Steam Edition 전용 스타일
   (storageActivityIndicator.css 와 함께 로드됨)
   ========================================================================== */

/* Steam Hero/CTA 버튼 (상세 페이지) */
.steam-btn-lg {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 28px 10px 10px;
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all var(--transition-fast);
    border: 1px solid rgba(102, 192, 244, 0.25);
}

.steam-btn-lg img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: contain;
    background: #ffffff;
    padding: 2px;
}

.steam-btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(27, 40, 56, 0.45);
    border-color: rgba(102, 192, 244, 0.5);
    background: linear-gradient(135deg, #22405e 0%, #366591 100%);
}

/* 출시 예정(링크 미정) 비활성 상태 */
.steam-btn-lg.disabled {
    cursor: default;
    opacity: 0.7;
    filter: grayscale(0.25);
}

.steam-btn-lg.disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(102, 192, 244, 0.25);
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
}

@media (max-width: 768px) {
    .steam-btn-lg {
        font-size: 0.88rem;
        padding: 10px 22px 10px 10px;
    }
    .steam-btn-lg img {
        width: 32px;
        height: 32px;
    }
}
