/* Store Buttons */
.store-buttons {
    display: flex;
    gap: 1rem;
    margin-top: -1.5rem; /* 위/아래 동일 간격 */
    margin-bottom: 1.05rem;
}

.store-buttons.center-buttons {
    justify-content: center;
    margin-top: 3rem;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: #0f0f12;
    /* Very dark, almost black */
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.store-btn:hover {
    background-color: #1a1a20;
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.store-icon {
    fill: white;
}

/* Responsive adjustments for buttons */
@media (max-width: 768px) {
    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        justify-content: center;
        max-width: 250px;
    }
}